* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0066b2;
  --secondary-blue: #004b87;
  --accent-orange: #ff6b35;
  --light-gray: #f5f7fa;
  --medium-gray: #e1e8ed;
  --dark-gray: #2c3e50;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Header Styles */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  color: var(--white);
  padding: 10px 0;
}

.header-top-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item i {
  color: var(--accent-orange);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-orange);
}

.header-main {
  padding: 10px 0;
}

.header-main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

.company-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-blue);
  line-height: 1;
}

.tagline {
  font-size: 0.9rem;
  color: var(--accent-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 178, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-blue);
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* Navigation Styles */
.nav-inline {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.nav-links li {
  position: relative;
}

.nav-link {
  color: var(--secondary-blue);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  display: block;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.nav-link:hover {
  background-color: var(--light-gray);
  color: var(--primary-blue);
}

.nav-link.active {
  background-color: var(--primary-blue);
  color: var(--white);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary-blue);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 1rem;
}

/* Slider Section */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 4rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.slide-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: var(--white);
  transform: scale(1.2);
}

/* Hero Section */
.hero {
  background: var(--white);
  padding: 4rem 0;
}

.hero-with-bg {
  background: linear-gradient(rgb(0 75 135 / 0%), rgba(0, 75, 135, 0.8)),
    url(../img/breadcrumb.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 2rem;
  text-align: center;
  color: var(--white);
}

.hero-with-bg .hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-with-bg h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-with-bg p {
  color: var(--white);
  font-size: 1.3rem;
}

.hero-content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: var(--secondary-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.section {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  color: var(--secondary-blue);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent-orange);
  display: inline-block;
  line-height: normal;
}

.intro-box {
  /* background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%); */
  /* color: var(--white); */
  /* padding: 2rem; */
  /* border-radius: 8px; */
  /* margin: 2rem 0; */
  /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); */
}

.intro-box p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.intro-box p:last-child {
  margin-bottom: 0;
}

.content-box-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-orange);
  line-height: normal;
}

/* Split Section */
.split-section {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.split-content {
  flex: 1;
  text-align: left;
}

.split-image {
  flex: 1;
}

.split-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Page Styles */
.contact-main-wrapper {
  margin: 0rem 0;
}

.contact-intro {
  text-align: left;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-blue);
}

.contact-detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: var(--accent-orange);
}

.contact-icon-large {
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
}

.contact-detail-content {
  flex: 1;
}

.contact-detail-content h3 {
  color: var(--secondary-blue);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.contact-detail-content p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--dark-gray);
}

.contact-detail-content a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-detail-content a:hover {
  color: var(--accent-orange);
}

.small-text {
  font-size: 0.9rem;
  color: var(--dark-gray);
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Export Locations */
.export-locations {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
}

.export-locations h3 {
  color: var(--secondary-blue);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.location {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 102, 178, 0.2);
  transition: all 0.3s ease;
}

.location:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 102, 178, 0.3);
}

/* Products Grid */
.products-grid {
  column-count: 3;
  column-gap: 2rem;
  margin-top: 2rem;
}

.products-grid.equal-height {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  column-count: unset;
}

.product-category {
  background-color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-blue);
  height: auto;
  break-inside: avoid;
  margin-bottom: 2rem;
  display: inline-block;
  width: 100%;
}

.products-grid.equal-height .product-category {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  height: 100%;
}

.product-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-top-color: var(--accent-orange);
}

.product-category h3 {
  color: var(--secondary-blue);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: normal;
}

.product-category h3::before {
  content: "▸";
  color: var(--accent-orange);
  font-size: 1.5rem;
}

.product-list {
  list-style: none;
  padding: 0;
}

.product-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
  color: var(--dark-gray);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.product-list li:last-child {
  border-bottom: none;
}

.product-list li:hover {
  padding-left: 0.5rem;
  color: var(--primary-blue);
  font-weight: 500;
}

/* Alert Messages */
.alert {
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.5;
}

.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Contact Form Styles */
.contact-form-wrapper {
  max-width: 800px;
  margin: 2rem auto;
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--secondary-blue);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--medium-gray);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 102, 178, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  margin-top: 0.5rem;
}

.form-group button:hover {
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: linear-gradient(
    135deg,
    var(--secondary-blue) 0%,
    var(--primary-blue) 100%
  );
  color: var(--white);
  padding: 3rem 2rem 1rem;
  margin-top: 0;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section ul {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  opacity: 0.8;
}

.contacts.split-section {
    align-items: baseline;
    gap: 3rem;
}

.contacts.split-section .split-content {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .header-main {
    padding: 10px 0;
  }

  .header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    position: relative;
  }

  .logo-section {
    flex-shrink: 0;
  }

  .logo-img {
    max-height: 50px;
  }

  .company-name {
    font-size: 2rem;
  }

  .nav-inline {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    padding: 0.5rem;
    font-size: 1.8rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    flex-direction: column;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
    gap: 0;
    padding: 0;
    margin: 0 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    padding: 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--medium-gray);
    text-align: left;
  }

  .nav-link:first-child {
    border-radius: 8px 8px 0 0;
  }

  .nav-links .mobile-quote-btn {
    display: block;
    background: linear-gradient(
      135deg,
      var(--primary-blue) 0%,
      var(--secondary-blue) 100%
    );
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    border-bottom: none;
    border-radius: 0 0 8px 8px;
  }

  .nav-links .mobile-quote-btn:hover {
    background: var(--secondary-blue);
  }

  .hero {
    padding: 2rem;
  }

  .slider-container {
    height: 300px;
  }

  .slide-content {
    padding: 1rem;
    width: 85%;
  }

  .slide-content h2 {
    font-size: 1.5rem;
    line-height: normal;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slider-btn {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    display: none;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }

  .hero-content-wrapper {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .contact-intro {
    font-size: 1rem;
  }

  .hero-with-bg h1 {
    font-size: 1.5rem;
  }

  .hero-with-bg p {
    font-size: 1rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-image {
    width: 100%;
  }

  .products-grid {
    column-count: 1;
  }

  .products-grid.equal-height {
    grid-template-columns: 1fr;
  }

  .contact-details-grid {
    grid-template-columns: 100%;
  }

  .contact-detail-item {
    gap: 1rem;
    padding: 1rem;
    overflow: hidden;
  }

  .contact-detail-content {
    overflow: hidden;
  }

  .contact-detail-content p,
  .contact-detail-content a {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .split-section {
    flex-direction: column;
    margin: 0;
    gap: 0;
  }

  .reverse-mobile {
    flex-direction: column-reverse;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
  }

  .form-group button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .products-grid {
    column-count: 2;
  }

  .products-grid.equal-height {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    flex-direction: column;
  }

  .split-content {
    text-align: center;
  }

  .contact-details-grid {
    grid-template-columns: 100%;
  }
}
