﻿/* Base Styles */
:root {
  --dark-gray: #2d3748;
  --charcoal: #000000;
  --aluminum: #e2e8f0;
  --light-aluminum: #f7fafc;
  --accent-orange: #DB471E;
  --accent-dark: #a83617;
  --white: #ffffff;
  --text-light: #718096;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 114px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent-orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid var(--accent-orange);
}

  .btn:hover {
    background: transparent;
    color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 71, 30, 0.2);
  }

.btn-outline {
  background: transparent;
  color: var(--accent-orange);
  margin-left: 15px;
  border-color: var(--accent-orange);
}

  .btn-outline:hover {
    background: var(--accent-orange);
    color: var(--white);
  }

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

  .section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
  }

/* Custom Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-navbar {
  height: 114px;
  display: flex;
  align-items: center;
}

.navbar-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  height: 55px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: space-between;
  margin: 0 20px;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

  .navbar-links li a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
  }

    .navbar-links li a:hover {
      color: var(--accent-orange);
    }

    .navbar-links li a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent-orange);
      transition: var(--transition);
    }

    .navbar-links li a:hover:after,
    .navbar-links li.active a:after {
      width: 100%;
    }

  .navbar-links li.active a {
    color: var(--accent-orange);
  }

/* Hamburger Menu - Hidden by default */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

  .hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--charcoal);
    transition: var(--transition);
  }

  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

/* Language Switcher - Dropdown (hidden by default) */
.language-switcher {
  display: none;
  position: relative;
}

.language-dropdown-toggle {
  background: var(--white);
  border: 1px solid var(--aluminum);
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  transition: var(--transition);
}

  .language-dropdown-toggle:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
  }

  .language-dropdown-toggle svg {
    width: 14px;
    height: 10px;
  }

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--aluminum);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
}

  .language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .language-dropdown a {
    display: block;
    padding: 14px 20px;
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1rem;
  }

    .language-dropdown a:hover {
      background: var(--light-aluminum);
      color: var(--accent-orange);
    }

    .language-dropdown a.active {
      background: var(--light-aluminum);
      color: var(--accent-orange);
      font-weight: 600;
    }

/* Language Links - Regular display */
.language-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

  .language-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 4px;
  }

    .language-links a:hover {
      color: var(--accent-orange);
    }

    .language-links a.active {
      color: var(--accent-orange);
      font-weight: 700;
    }

  .language-links .separator {
    color: var(--text-light);
    font-size: 1.1rem;
  }

/* Responsive - Language dropdown at 820px */
@media (max-width: 820px) {
  .language-links {
    display: none;
  }

  .language-switcher {
    display: block;
  }
}

/* Responsive - Hamburger menu at 779px */
@media (max-width: 779px) {
  .hamburger-menu {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 114px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: var(--white);
    padding: 0;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

    .navbar-menu.active {
      max-height: 500px;
      opacity: 1;
      visibility: visible;
      padding: 20px;
    }

  .navbar-links {
    flex-direction: column;
    width: auto;
    align-items: center;
    gap: 5px;
    margin: 0;
  }

    .navbar-links li {
      width: auto;
      text-align: center;
    }

      .navbar-links li a {
        display: inline-block;
        padding: 12px 20px;
        position: relative;
      }

        .navbar-links li a:after {
          content: '';
          position: absolute;
          bottom: 8px;
          left: 50%;
          transform: translateX(-50%);
          width: 0;
          height: 2px;
          background: var(--accent-orange);
          transition: var(--transition);
        }

        .navbar-links li a:hover:after,
        .navbar-links li.active a:after {
          width: 80%;
        }

  /* ========================================
     LANGUAGE SWITCHER - MOBILE STYLES
     ======================================== */

  .language-switcher {
    width: auto;
    align-self: center;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Toggle Button - Prettier styling */
  .language-dropdown-toggle {
    width: auto;
    min-width: 140px;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    background: var(--white);
    border: 2px solid var(--aluminum);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
  }

    .language-dropdown-toggle:hover {
      border-color: var(--accent-orange);
      color: var(--accent-orange);
      box-shadow: 0 4px 12px rgba(219, 71, 30, 0.15);
    }

  /* Dropdown Menu - Same width as toggle, prettier design */
  .language-dropdown {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    min-width: 140px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: none;
    transition: all 0.3s ease;
  }

    .language-dropdown.active {
      max-height: 200px;
      opacity: 1;
      visibility: visible;
      margin-top: 8px;
      /* Pretty border and shadow when active */
      border: 2px solid var(--aluminum);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    /* Dropdown Links - Cleaner design */
    .language-dropdown a {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 14px 20px;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--charcoal);
      background: var(--white);
      border-bottom: 1px solid var(--aluminum);
      transition: var(--transition);
    }

      .language-dropdown a:first-child {
        border-radius: 6px 6px 0 0;
      }

      .language-dropdown a:last-child {
        border-bottom: none;
        border-radius: 0 0 6px 6px;
      }

      /* Hover state - subtle orange accent */
      .language-dropdown a:hover {
        background: linear-gradient(135deg, rgba(219, 71, 30, 0.05) 0%, rgba(219, 71, 30, 0.1) 100%);
        color: var(--accent-orange);
      }

      /* Active language - highlighted */
      .language-dropdown a.active {
        background: linear-gradient(135deg, rgba(219, 71, 30, 0.08) 0%, rgba(219, 71, 30, 0.15) 100%);
        color: var(--accent-orange);
        font-weight: 600;
      }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(219, 71, 30, 0.1) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(219, 71, 30, 0.15) 0%, transparent 40%);
    opacity: 0.7;
  }

  .hero .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* About Section */
.about {
  background-color: var(--light-aluminum);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.about-home, .products-home, .contact-home {
  padding: 60px 0;
  text-align: center;
}

  .products-home .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .about-home p, .contact-home p {
    max-width: 700px;
    margin: 0 auto 20px;
  }

  .products-home .btn-outline {
    margin-top: 20px;
  }

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

  .about-text h2 {
    color: var(--charcoal);
    margin-bottom: 20px;
  }

  .about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
  }

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  min-width: 40px;
  height: 40px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  flex-shrink: 0;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: var(--aluminum);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

  .about-image svg {
    width: 80%;
    height: 80%;
    max-width: 300px;
    color: var(--charcoal);
  }

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background: var(--light-aluminum);
  padding: 15px 0;
  margin-top: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

  .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 10px;
    color: var(--text-light);
  }

  .breadcrumb-item a {
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
  }

    .breadcrumb-item a:hover {
      color: var(--accent-orange);
    }

  .breadcrumb-item.active {
    color: var(--accent-orange);
    font-weight: 600;
  }

/* About Page CTA Buttons */
.about-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

  .about-cta .btn {
    margin-left: 0;
  }

/* Why Choose Us Section */
.why-luxalu {
  background: var(--white);
  padding: 80px 0;
}

.why-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-item {
  text-align: center;
  padding: 30px;
  background: var(--light-aluminum);
  border-radius: 8px;
  transition: var(--transition);
}

  .why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

.why-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.why-item h3 {
  color: var(--charcoal);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.why-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* About Section Improvements */
.about h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.about-features h2 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .about h1 {
    font-size: 2rem;
  }

  .about-cta {
    flex-direction: column;
  }

    .about-cta .btn {
      text-align: center;
    }

  .why-content {
    grid-template-columns: 1fr;
  }
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-attribution {
  text-align: center;
  margin-bottom: 40px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

  .product-attribution a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
  }

    .product-attribution a:hover {
      color: var(--accent-dark);
      text-decoration: underline;
    }

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid transparent;
}

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
  }

.product-img {
  height: 200px;
  background: var(--aluminum);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: bold;
  padding: 20px;
  text-align: center;
}

.product-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

  .product-info h3 {
    margin-bottom: 15px;
    color: var(--charcoal);
  }

  .product-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .product-info .btn {
    margin-top: auto;
    text-align: center;
  }

  .product-info .download-link {
    margin-top: 10px;
    text-align: center;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
  }

    .product-info .download-link:hover {
      color: var(--accent-dark);
      text-decoration: underline;
    }

/* Product Detail */
.product-detail-template {
  display: none;
}

.modal-body .product-header {
  padding: 40px 0;
}

.modal-body .product-content {
  margin-top: 20px;
}

.product-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

  .product-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
  }

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.product-description {
  grid-column: 1 / -1;
}

.specs-list {
  list-style: none;
}

  .specs-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--aluminum);
    display: flex;
    justify-content: space-between;
  }

    .specs-list li:last-child {
      border-bottom: none;
    }

/* Products Page Improvements */
.products {
  padding-top: 40px;
}

  .products h1.section-title {
    font-size: 2.5rem;
  }

  .products h2 {
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
  }

/* Product Categories Section */
.product-categories {
  background: var(--light-aluminum);
  padding: 80px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-item {
  background: var(--white);
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

  .category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }

.category-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.category-item h3 {
  color: var(--charcoal);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.category-item p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.category-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

  .category-item ul li {
    background: var(--light-aluminum);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-orange);
    font-weight: 600;
  }

/* Products CTA Section */
.products-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
  padding: 80px 0;
  color: var(--white);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

  .cta-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .cta-content p {
    color: var(--aluminum);
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

  .cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
  }

    .cta-buttons .btn-outline:hover {
      background: var(--white);
      color: var(--charcoal);
    }

/* Download link icon */
.download-link span {
  margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .products h1.section-title {
    font-size: 2rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

    .cta-buttons .btn {
      width: 100%;
      max-width: 300px;
      text-align: center;
    }
}

/* Product Section Divider */
.product-section-divider {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0 20px;
  margin-top: 20px;
  border-top: 2px solid var(--aluminum);
}

.subsection-title {
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.subsection-description {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Catalogue Badge */
.product-img-catalogue {
  position: relative;
}

.catalogue-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-orange);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Catalogue Download Section in Modal */
.catalogue-download-section {
  margin-top: 40px;
  padding: 30px;
  background: var(--light-aluminum);
  border-radius: 8px;
  text-align: center;
}

  .catalogue-download-section h2 {
    margin-bottom: 15px;
    font-size: 1.3rem;
  }

  .catalogue-download-section p {
    margin-bottom: 20px;
    color: var(--text-light);
  }

  .catalogue-download-section .btn i {
    margin-right: 8px;
  }

/* Animation delay for new products */
.fade-in-up.delay-5 {
  animation-delay: 0.5s;
}

.fade-in-up.delay-6 {
  animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
  .subsection-title {
    font-size: 1.5rem;
  }

  .catalogue-badge {
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 0.7rem;
  }
}

/* Contact Section */
.contact {
  background: var(--light-aluminum);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  padding: 20px 0;
}

.contact-info h3 {
  color: var(--charcoal);
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 15px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

  .contact-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

.contact-icon {
  min-width: 50px;
  height: 50px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 1.2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
  margin: 0 0 8px 0;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

  .contact-item p a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
  }

    .contact-item p a:hover {
      color: var(--accent-orange);
      text-decoration: underline;
    }

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--charcoal);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--aluminum);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background: white;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact .contact-map {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

  .contact .contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
  }

/* Contact Page Enhancements */
.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.contact h1.section-title {
  font-size: 2.5rem;
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--charcoal);
}

.contact-info h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Opening Hours */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

  .hours-list li {
    padding: 3px 0;
    color: var(--text-light);
    font-size: 0.9rem;
  }

/* Response Notice */
.response-notice {
  margin-top: 25px;
  padding: 15px;
  background: rgba(219, 71, 30, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--accent-orange);
}

  .response-notice p {
    margin: 0;
    color: var(--charcoal);
    font-size: 0.95rem;
  }

  .response-notice i {
    color: var(--accent-orange);
    margin-right: 8px;
  }

/* Form Required Fields */
.required {
  color: var(--accent-orange);
}

/* Privacy Notice */
.privacy-notice {
  margin-top: 10px;
}

  .privacy-notice small {
    color: var(--text-light);
    font-size: 0.8rem;
  }

/* Form Button Icon */
.contact-form .btn i {
  margin-right: 8px;
}

/* Map Section */
.map-section {
  margin-top: 60px;
}

.map-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.directions-link {
  text-align: center;
  margin-top: 20px;
}

  .directions-link .btn i {
    margin-right: 8px;
  }

/* Quick Contact Bar */
.quick-contact {
  background: var(--charcoal);
  padding: 20px 0;
  margin-top: 0;
}

.quick-contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.quick-contact p {
  margin: 0;
  color: var(--aluminum);
  font-size: 1rem;
}

.quick-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-orange);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

  .quick-call-btn:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
  }

  .quick-call-btn i {
    font-size: 1.1rem;
  }

/* Contact Form Focus States */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(219, 71, 30, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact h1.section-title {
    font-size: 2rem;
  }

  .contact-intro {
    font-size: 1rem;
  }

  .quick-contact-content {
    flex-direction: column;
    text-align: center;
  }

  .map-section {
    margin-top: 40px;
  }
}

/* Footer */
footer {
  background: var(--charcoal);
  color: var(--aluminum);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 2px;
}

  .footer-col h4 a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
  }

    .footer-col h4 a:hover {
      color: var(--accent-orange);
    }

  .footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
  }

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}

  .footer-links li {
    margin-bottom: 12px;
  }

footer .footer-links a {
  color: var(--aluminum);
  text-decoration: none;
  transition: var(--transition);
}

  footer .footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
  }

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .product-content {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }

  .btn-outline {
    margin-left: 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 668px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  section {
    padding: 60px 0;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Initial states - elements are hidden before animation */
.fade-in-up,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up {
  transform: translateY(30px);
}

.fade-in-left {
  transform: translateX(-30px);
}

.fade-in-right {
  transform: translateX(30px);
}

  /* Animated state - when .animate class is added by JS */
  .fade-in-up.animate,
  .fade-in-left.animate,
  .fade-in-right.animate {
    opacity: 1;
    transform: translate(0, 0);
  }

/* Animation delays for staggered effects */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* Optional: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

    .fade-in-up.animate,
    .fade-in-left.animate,
    .fade-in-right.animate {
      opacity: 1;
      transform: none;
    }
}