:root {
  --primary-color: #d4af37;
  --primary-hover: #b8860b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #1a1a1a;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  pointer-events: none; /* Let clicks pass through to content except for nav items */
}
.sub-nav .dropdown {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.sub-nav .has-dropdown.active .dropdown {
  opacity: 1;
  visibility: visible;
}

header .nav-container,
header .top-nav,
header .logo,
header .main-nav,
header .sub-nav-container,
header .sub-nav,
header a,
header .dropdown,
header .dropdown-overlay,
header .menu-toggle {
  pointer-events: auto !important; /* Re-enable clicks for actual interactive elements */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-col .logo img {
  max-height: 70px;
}

.logo-desktop {
  display: block;
}

.logo-mobile {
  display: none !important;
}

/* Ensure only desktop logo on large screens */
@media (min-width: 577px) {
  .logo-desktop {
    display: block !important;
  }

  .logo-mobile {
    display: none !important;
  }
}

.w-icon,
.logo-text {
  display: none;
}

/* Main Navigation */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--primary-color);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.btn-gold {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-gold:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
}

.phone i {
  background: var(--primary-color);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 0.9rem;
}

/* Sub Navigation */
.sub-nav-container {
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-nav ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 12px 0;
  width: 100%;
}

@media (max-width: 992px) {
  .sub-nav ul {
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    overflow-y: visible; /* Allow dropdowns to show if absolute */
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
}

.sub-nav a {
  text-decoration: none;
  color: white;
  font-size: 0.8rem;
  font-weight: 400;
  transition: opacity 0.3s;
}

/* Sub-nav hover effect (desktop) */
.sub-nav a {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.sub-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--primary-color);
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sub-nav a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.sub-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.sub-nav a.active {
  background: rgba(255, 255, 255, 0.1);
}

.sub-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Sub-nav Dropdowns */
.sub-nav li {
  position: relative;
}

.sub-nav .has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  touch-action: manipulation; /* Improve touch responsiveness on iOS */
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1); /* Subtle tap highlight */
}

.sub-nav .has-dropdown i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

/* --- Sub-nav Dropdowns - DESKTOP FIRST --- */
.sub-nav .dropdown li.dropdown-mobile-header {
  display: none !important;
}

.dropdown-overlay {
  display: none !important;
}

.sub-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(15, 15, 15, 0.98);
  min-width: 220px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  z-index: 1000;
  border-radius: 8px;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: auto;
}

/* --- Sub-nav Dropdowns - DESKTOP ONLY HOVER --- */
@media (hover: hover) and (min-width: 993px) {
  .sub-nav .has-dropdown:hover .dropdown {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .sub-nav .has-dropdown:hover > a i {
    transform: rotate(180deg);
  }
}

/* Desktop click support (for devices with hover capability) */
@media (min-width: 993px) {
  .sub-nav .has-dropdown.active .dropdown {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .sub-nav .has-dropdown.active > a i {
    transform: rotate(180deg);
  }
}

.sub-nav .dropdown li {
  width: 100%;
}

.sub-nav .dropdown a {
  padding: 12px 20px;
  width: 100%;
  display: block;
  border-radius: 0;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-nav .dropdown a::after {
  display: none;
}

.sub-nav .dropdown li:last-child a {
  border-bottom: none;
}

.sub-nav .dropdown a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-color);
  padding-left: 25px;
}

/* --- Sub-nav Dropdowns - MOBILE OVERRIDES --- */
@media (max-width: 992px) {
  .sub-nav .has-dropdown i {
    display: inline-block;
    font-size: 0.6rem;
    margin-left: 4px;
  }

  .sub-nav .dropdown {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-width: 100%;
    transform: translateY(100%);
    display: flex;
    opacity: 0;
    visibility: hidden;
    background: #0a0a0a;
    border-radius: 20px 20px 0 0;
    padding: 20px 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
    z-index: 10001; /* Above everything */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: auto !important;
  }

  .sub-nav .has-dropdown.active .dropdown {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .sub-nav .dropdown li.dropdown-mobile-header {
    display: flex !important;
    padding: 10px 20px 20px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    color: var(--primary-color);
  }

  .close-dropdown-wrapper {
    width: 50px; /* Slightly larger for easier tapping */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -15px;
    cursor: pointer;
    pointer-events: auto !important;
    position: relative;
    z-index: 10002; /* Above the header li */
    touch-action: manipulation; /* Improve touch responsiveness on iOS */
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2); /* Subtle tap highlight */
  }

  .close-dropdown-wrapper i {
    font-size: 1.5rem !important;
    pointer-events: none; /* Let the wrapper handle the click */
  }

  .sub-nav .dropdown a {
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    color: white !important;
    display: block !important;
    width: 100%;
  }

  .dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none !important;
    touch-action: manipulation; /* Improve touch responsiveness on iOS */
  }

  .dropdown-overlay.active {
    display: block !important;
    opacity: 1;
  }

  /* Hide desktop dropdowns on mobile - use drawer instead */
  .sub-nav .dropdown {
    display: none !important;
  }
}

/* ===========================
   Mobile Drawer (for dropdowns on mobile)
   =========================== */
.mobile-drawer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.9);
  z-index: 10001;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 70vh;
  overflow-y: auto;
  border-top: 2px solid rgba(212, 175, 55, 0.4);
}

.mobile-drawer.active {
  display: block;
  transform: translateY(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  background: #1a1a1a;
  z-index: 1;
}

.mobile-drawer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.mobile-drawer-close {
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-drawer-close:hover,
.mobile-drawer-close:active {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(0.95);
}

.mobile-drawer-menu {
  list-style: none;
  padding: 16px 20px 30px;
  margin: 0;
}

.mobile-drawer-menu li {
  margin-bottom: 8px;
}

.mobile-drawer-menu a {
  display: block;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-drawer-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--primary-color);
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
}

.mobile-drawer-menu a:hover,
.mobile-drawer-menu a:active {
  background: rgba(212, 175, 55, 0.12);
  color: var(--primary-color);
  padding-left: 24px;
}

.mobile-drawer-menu a:hover::before,
.mobile-drawer-menu a:active::before {
  height: 60%;
}

/* Hide mobile drawer on desktop */
@media (min-width: 993px) {
  .mobile-drawer {
    display: none !important;
  }
}

/* ===========================
   Product pages (second menu)
   =========================== */

.page-hero {
  position: relative;
  min-height: 55vh;
  display: grid;
  align-items: center;
  padding: 140px 0 70px;
  overflow: hidden;
  background: #0f0f0f;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02) blur(10px);
  transform: scale(1.02);
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}

.badge i {
  color: var(--primary-color);
}

.page-section {
  padding: 90px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.card-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 26px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.feature-list i {
  margin-top: 3px;
  color: var(--primary-color);
}

.image-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.image-card img,
.image-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.gallery-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.95;
}

.gallery-strip img:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq details {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--primary-color);
  font-size: 1.2rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.22),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band h3 {
  font-size: 1.6rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
}

@media (max-width: 992px) {
  .page-hero {
    padding: 200px 0 60px;
    min-height: 60vh;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .gallery-strip {
    grid-template-columns: 1fr;
  }
  .gallery-strip img {
    height: 250px;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   Contact Page Specific
   =========================== */

.contact-page-form .form-group {
  margin-bottom: 20px;
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus,
.contact-page-form select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
}

.contact-page-form select {
  cursor: pointer;
}

.contact-page-form select[multiple] {
  min-height: 120px;
  padding: 10px;
}

.contact-page-form select option {
  background: rgba(15, 15, 15, 0.98);
  color: white;
  padding: 8px;
}

.contact-page-form select option:checked {
  background: var(--primary-color);
  color: #000;
}

.contact-page-form .btn-gold {
  width: 100%;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  cursor: pointer;
}

.contact-info-list {
  margin-top: 25px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.6rem;
  width: 25px;
  text-align: center;
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.info-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.social-follow {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons-row {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons-row a {
  color: white;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons-row a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.map-container {
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-padding-top {
  padding-top: 0 !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
}

.hero-bg-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 0;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-side {
  flex: 1;
  padding-right: 50px;
  color: #fff;
  text-align: left;
}

.hero-text-side h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-text-side h1 span {
  color: var(--primary-color);
}

.contact-form-container {
  background: rgba(50, 50, 50, 0.75);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.contact-form-container h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form-container h4 {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
  padding: 14px 18px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: #333;
  width: 100%;
  cursor: pointer;
}

#contact-form select {
  cursor: pointer;
}

#contact-form select[multiple] {
  min-height: 120px;
  padding: 10px;
}

#contact-form select option {
  background: #fff;
  color: #333;
  padding: 8px;
}

#contact-form select option:checked {
  background: var(--primary-color);
  color: #000;
}

#contact-form button {
  padding: 12px 45px;
  font-size: 1.1rem;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  background-color: var(--primary-color);
  color: white;
  border: none;
  align-self: flex-start;
}

/* Sections General */
section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #555;
}

/* Popular Products */
.popular-products {
  background-color: #111;
}

.products-wrapper {
  overflow-x: auto;
  position: relative;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 10px;
}

.products-wrapper::-webkit-scrollbar {
  display: none;
}

.products-grid {
  display: flex;
  gap: 30px;
  padding-bottom: 10px;
}

.product-card {
  flex: 0 0 calc((100% - 60px) / 3);
  text-align: center;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.product-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.product-card p {
  font-size: 1rem;
  color: #888;
  padding: 0 10px;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.product-slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.product-slider-controls button {
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  font-size: 1.2rem;
  width: 50px;
  height: 50px;
  background-color: #222;
}

@media (max-width: 1200px) {
  .product-slider-controls {
    padding: 0 10px;
  }
}

.slider-controls button {
  background-color: #222;
  color: #fff;
  border: 1px solid #444;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-controls button:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #333;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background-color: var(--primary-color);
}

/* About Us */
.about-us {
  background-color: #0a0a0a;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1.2;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 25px;
  font-size: 1.15rem;
  color: #aaa;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Testimonials */
.testimonials {
  padding: 0;
  /* background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url("https://images.unsplash.com/photo-1618219908412-a29a1bb7b86e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80"); */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  padding: 120px 0;
}

.bg-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10rem;
  opacity: 0.03;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  text-align: center;
}

.testimonials-wrapper {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonials-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonial-grid {
  display: flex;
  gap: 40px;
  padding-bottom: 10px;
}

.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 2);
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  flex-shrink: 0;
  scroll-snap-align: start;
}

.gold-line {
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin-bottom: 25px;
}

.testimonial-card h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.testimonial-stars {
  color: #ffb400; /* Google Star Color */
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.google-review-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.8rem;
  opacity: 0.8;
}

.google-review-badge i {
  color: #4285f4; /* Google Blue */
}

.testimonials-footer {
  text-align: center;
  margin-top: 40px;
}

/* Testing Grid */
.testing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testing-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.testing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.testing-icon {
  margin-bottom: 25px;
}

.testing-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}

.testing-icon img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.testing-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.testing-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

/* Video Section */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .testing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testing-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card p {
  font-size: 1.1rem;
  color: #ccc;
  font-style: italic;
}

/* Footer */
footer {
  background-color: #050505;
  padding: 80px 0 40px;
  border-top: 2px solid var(--primary-color);
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 80px;
}

.brand-col .logo {
  margin-bottom: 25px;
}

.brand-desc {
  color: #999;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #777;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-col p {
  color: #777;
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-col i {
  color: var(--primary-color);
  width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icons a {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #555;
  font-size: 0.9rem;
}

.footer-credits {
  color: #444;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fuvitech-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s;
}

.fuvitech-link:hover {
  opacity: 0.8;
}

.fuvitech-link img {
  height: 22px;
  width: auto;
}

@media (max-width: 768px) {
  .fuvitech-link {
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVENESS
   ============================================================ */

/* Large Laptops */
@media (max-width: 1200px) {
  .nav-container,
  .hero-content {
    padding: 0 20px;
  }

  .product-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Tablets & Smaller Laptops */
@media (max-width: 992px) {
  .nav-container {
    padding: 0 20px;
  }

  /* Move hamburger to the RIGHT on mobile */
  .main-nav {
    justify-content: flex-end;
  }

  .menu-toggle {
    display: block;
    z-index: 201;
    margin-left: auto;
  }

  .main-nav .nav-list {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 200;
  }

  .main-nav .nav-list.active {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 200px;
  }

  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-text-side {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .hero-text-side h1 {
    font-size: 2.8rem;
  }

  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.5rem;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  /* Second menu (sub-nav): make it a clean horizontal scroller on mobile */
  .sub-nav ul {
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    overflow-y: visible; /* CRITICAL for iOS: allow fixed dropdowns to show */
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sub-nav ul::-webkit-scrollbar {
    display: none;
  }

  .sub-nav li {
    flex: 0 0 auto;
  }

  .sub-nav a {
    display: block;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 0.78rem;
    opacity: 0.95;
    position: relative;
    z-index: 5;
    pointer-events: auto !important;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .product-card {
    flex: 0 0 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* Second menu tighter on small phones */
  .sub-nav a {
    padding: 8px 12px;
    font-size: 0.74rem;
  }
}

/* Extra Small Phones */
@media (max-width: 576px) {
  .logo-desktop {
    display: none !important;
  }

  .logo-mobile {
    display: block !important;
  }

  .logo-text {
    display: none;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-form-container h3 {
    font-size: 1.5rem;
  }

  .contact-form-container h4 {
    font-size: 1.1rem;
  }

  #contact-form button {
    width: 100%;
    align-self: center;
  }

  .bg-title {
    font-size: 5rem;
  }

  .hero-text-side h1 {
    font-size: 2.2rem;
  }
}

/* ============================================================
   ANIMATIONS & REVEAL ON SCROLL
   ============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: none !important;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.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; }

/* Hero Specific - Immediate Load */
.hero-text-side h1 {
  animation: fadeInUp 1s ease forwards;
}

.contact-form-container {
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}
