/* ===== ROOT VARIABLES ===== */
:root {
  --primary-gold: #ffd700;
  --dark-gold: #daa520;
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}

/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

/* ===== NAVBAR & HEADER ===== */
/* =========================================
   1. NAVBAR & HEADER (DESKTOP DEFAULT)
   ========================================= */
:root {
  --nav-height: 80px;
  --nav-height-scrolled: 70px;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999; /* Max Z-Index */
  background: transparent;
}

.navbar {
  height: var(--nav-height);
  background: #000000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  height: var(--nav-height-scrolled);
  background: #000000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

/* --- LOGO --- */
.logo {
  flex-shrink: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  transition: height .3s;
}

.navbar.scrolled .logo img {
  height: 35px;
}

/* --- DESKTOP MENU (Centered via Flex) --- */
.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-link i {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.nav-link:hover,
.nav-item:hover .nav-link {
  color: var(--primary-gold);
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* --- DESKTOP DROPDOWN --- */
.dropdown-menu {
  position: absolute;
  top: 100%; /* Pushes it right below nav-item */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  background: #111111;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  z-index: 1000;
  border-radius: 4px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 0.85rem;
  color: #cccccc;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(255, 215, 0, 0.15);
  color: var(--primary-gold);
  padding-left: 30px;
}

/* Hidden View All on desktop */
.dropdown-overview {
  display: none !important;
}

/* --- ACTIONS (CHAT & HAMBURGER) --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1001;
}

.chat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--primary-gold);
  border-radius: 100px;
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.chat-btn:hover {
  background: var(--primary-gold);
  color: #000;
}

.menu-btn {
  display: none; /* Hide hamburger on desktop */
}

.nav-overlay {
  display: none;
}

/* =========================================
   HERO 
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-height);
  padding-top: 0;
}

.hero-slider {
  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;
  visibility: hidden;
  transform: scale(1.1); /* Start slightly zoomed in */
  z-index: 1;
  transition: opacity 0.8s ease; /* Only animate opacity with transition */
}

.hero-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Significantly reduced opacity for brighter look */
  background: linear-gradient(to right, rgba(0,0,0,0.2), rgba(0,0,0,0.0), rgba(0,0,0,0.2));
  z-index: 1;
}

@keyframes zoomOutEffect {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  animation: zoomOutEffect 6s ease forwards; /* Animation ensures it runs on load */
}

/* --- SLIDER DOTS --- */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 6px;
  height: 6px;
  background: var(--primary-gold);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--white);
}

.dot.active {
  background: transparent;
  border-color: var(--primary-gold);
  transform: scale(1.2);
}

.dot.active::after {
  transform: translate(-50%, -50%) scale(1);
}

/* --- SLIDE CONTENT LAYOUTS --- */
.slide-content-wrapper {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.slide-content {
  max-width: 750px;
  color: var(--white);
  background: transparent;
  padding: 3rem;
}

/* Default / Slide 1: Left Aligned, Elegant */
.hero-slide:first-child .slide-content-wrapper {
  align-items: flex-start;
  text-align: left;
}

.hero-slide:first-child .hero-label {
    margin-left: 0;
}

/* Slide 2: Right Aligned, Sleek (PL Style) */
.pl-style {
  align-items: flex-end;
  text-align: right;
}

.pl-style .slide-content {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

.pl-style .hero-label {
  margin-right: 0;
}

.pl-style .hero-features {
  justify-content: flex-end;
}

/* Slide 3: Center Aligned, Classic (Center Style) */
.center-style {
  align-items: center;
  text-align: center;
}

.center-style .slide-content {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.center-style .hero-label {
    margin: 0 auto 1.5rem auto;
}

.center-style .hero-features {
    justify-content: center;
}


/* --- TYPOGRAPHY & ELEMENTS --- */
.hero-label {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  margin-bottom: 1.5rem;
  background: var(--primary-gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
}

.hero h1 .gold-text {
  color: var(--primary-gold);
  font-weight: 500;
  display: inline-block;
}

.hero p {
  font-size: 1.25rem;
  color: #f8f8f8;
  font-weight: 400;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  max-width: 600px;
  line-height: 1.8;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* --- FEATURES BADGES (Text Style) --- */
.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: transparent;
  transform: none;
}

.feature-badge i {
  color: var(--primary-gold);
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.8));
}

/* --- BUTTONS --- */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border-radius: 4px; /* More square for sleek look */
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--black);
  border: 1px solid var(--primary-gold);
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
}

.hero-slide.active .fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Ensure text hides efficiently when not active */
.hero-slide:not(.active) .fade-in-up {
  opacity: 0;
  transition: opacity 0.2s; /* Quick fade out if needed */
}

@media (max-width: 768px) {
  .hero-slide:first-child .slide-content-wrapper,
  .pl-style,
  .center-style {
    align-items: center !important; /* Force center on mobile */
    text-align: center !important;
    padding: 0 1.5rem;
  }
  
  .slide-content-wrapper .hero-label, 
  .pl-style .hero-label {
      border: none;
      padding: 0.5rem 1.5rem;
  }
  
  .slide-content {
      background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 75%);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border: none;
      box-shadow: none;
      padding: 3rem 1rem;
      width: 100%;
  }

  .hero-slide:first-child .slide-content,
  .pl-style .slide-content {
      align-items: center;
      margin: 0;
  }

  .hero-features {
      justify-content: center !important;
      gap: 0.8rem; /* Tighter gap for mobile */
  }
  
  .hero h1 {
      font-size: 2.5rem;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero p {
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
      color: #ffffff;
      font-weight: 400;
  }
  
  .hero-buttons {
      justify-content: center;
      width: 100%; /* Ensure it spans to allow centering */
  }
}

/* ===== FEATURED COLLECTIONS ===== */
.featured {
  padding: 4rem 2rem;
  background: var(--white);
}

@media (max-width: 768px) {
  .featured {
    padding: 6rem 1.5rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 3rem;
  }
}

.section-label {
  display: inline-block;
  border-left: 2px solid var(--black);
  border-right: 2px solid var(--black);
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
}

.section-label span {
  color: var(--black);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.5rem, 8vw, 3.75rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--black);
}

/* ===== FEATURED COLLECTIONS: SPLIT ZIG-ZAG LAYOUT ===== */
.featured {
  padding: 8rem 0;
  background: var(--white);
  color: var(--black);
}

.featured-split-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 8rem; /* Generous spacing between rows */
}

/* --- FEATURE ROW (The Zig-Zag) --- */
.feature-split-row {
  display: flex;
  align-items: center;
  gap: 5rem;
}

/* Alternate Direction */
.feature-split-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* --- IMAGE HALF --- */
.feature-img-wrapper {
  flex: 1;
  height: 500px; /* Consistent elegant height */
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05); /* Soft shadow */
}

.feature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.feature-split-row:hover .feature-img-wrapper img {
  transform: scale(1.05); /* Subtle zoom */
}

/* --- CONTENT HALF --- */
.feature-content {
  flex: 0.9;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Default left align */
}

/* Content Alignment for Zig-Zag */
.feature-split-row:nth-child(even) .feature-content {
  align-items: flex-end; /* Right align for reversed rows */
  text-align: right;
}

/* Typography */
.feature-category-name {
  font-size: 3rem;
  font-weight: 300; /* Thin, elegant luxury */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.feature-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 2.5rem;
  max-width: 450px;
  font-weight: 300; /* Light weight for readability */
}

/* --- CTA BUTTON (Home Page Shape, Original Colors) --- */
.feature-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 4px; /* Sleek square like Home */
  
  /* Original Minimalist Colors */
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: none; /* Removed Gold Shadow */
}

.feature-cta-btn:hover {
  background: var(--black);
  color: var(--primary-gold);
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Subtle black shadow */
}

/* Fix icon color on hover */
.feature-cta-btn i {
  transition: transform 0.3s;
}

.feature-cta-btn:hover i {
  transform: translateX(3px);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
  .featured {
    padding: 4rem 0; /* Reduced padding */
  }

  .featured-split-container {
    gap: 4rem;
  }

  /* Force stack everywhere on mobile */
  .feature-split-row, 
  .feature-split-row:nth-child(even) {
    flex-direction: column; /* Stack image on top */
    gap: 1.5rem;
    text-align: center; /* Centralize text */
  }
  
  .feature-img-wrapper {
    width: 100%;
    height: 300px; /* Slightly shorter for mobile */
    border-radius: 4px;
  }
  
  .feature-content {
    flex: auto;
    padding: 0 1.5rem; /* Horizontal padding for readability */
    width: 100%;
    align-items: center !important; /* Force Center Align */
    justify-content: center;
    text-align: center !important; /* Force Center Text */
  }
  
  .feature-category-name {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .feature-desc {
    max-width: 100%;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

  .feature-cta-btn {
    padding: 0.9rem 2rem; /* Touch friendly */
    width: auto;
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 6rem 1.5rem;
  background: var(--black);
  color: var(--white);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-container {
    grid-template-columns: 1fr 1fr;
  }
}

.about-label {
  display: inline-block;
  border-left: 2px solid var(--primary-gold);
  border-right: 2px solid var(--primary-gold);
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
}

.about-label span {
  color: var(--primary-gold);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.about h2 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.about p {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #b0b0b0;
  margin-bottom: 1.5rem;
}

.more-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.more-content.active {
  max-height: 1000px; /* Large enough to fit content */
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 1.5rem;
}

.see-more-btn {
  background: transparent;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.8rem 2.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: 2rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.see-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.see-more-btn:hover {
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.see-more-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.secondary-about-image {
  margin-top: 0; /* Reset for animation */
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.secondary-about-image.active {
    margin-top: 2.5rem;
}

.about img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: 0.25rem;
}

.about-image-wrapper {
  position: relative;
}

/* ===== STATS SECTION ===== */
.stats {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-gold), #f0c300);
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 300;
}

/* ===== CLIENTS SECTION ===== */
/* ===== MARQUEE (AUTO-SCROLL) CLIENTS ===== */
.clients {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}

.clients-label {
  display: inline-block;
  border-left: 2px solid var(--black);
  border-right: 2px solid var(--black);
  padding: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}

.clients-label span {
  color: var(--black);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.clients-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--black);
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  padding: 3rem 0;
  display: flex;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 30.3s linear infinite;
}


@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-item {
  flex: 0 0 250px;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.client-item p {
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  color: #888;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.client-item:hover p {
  color: var(--black);
  transform: scale(1.1);
}

/* ===== MARQUEE (AUTO-SCROLL) BRANDS ===== */
.brands {
  padding: 6rem 0;
  background: var(--black);
  overflow: hidden;
}

.brands-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}

.brands-label {
  display: inline-block;
  border-left: 2px solid var(--primary-gold);
  border-right: 2px solid var(--primary-gold);
  padding: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}

.brands-label span {
  color: var(--primary-gold);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.brands-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--white);
}

.brands .marquee-container {
  background: transparent;
  padding: 3rem 0;
}

.brands .marquee-track {
  animation: scroll 40.3s linear infinite reverse; /* Reverse direction */
}

/* ===== MAIN PARTNERS ===== */
.main-partners-section {
  background: var(--black);
  padding: 4rem 0 2rem 0;
  border-bottom: none;
}

.brand-item-img {
  flex: 0 0 250px;
  height: 120px;
  margin: 0 2rem;
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-decoration: none;
}

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

.brand-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: all 0.4s ease;
}

.brand-item-img:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .brand-item-img {
    margin: 0 1rem;
    flex: 0 0 200px;
    height: 100px;
    padding: 1rem;
  }
}

.brand-item {
  flex: 0 0 250px;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-item p {
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #555;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.brand-item:hover p {
  color: var(--primary-gold);
}

/* ===== CATEGORY PAGE ===== */
.category-header {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--black);
  background-size: cover;
  background-position: center;
  margin-top: 80px;
  color: var(--white);
  overflow: hidden;
}

.category-slider-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.category-slider {
  position: absolute;
  inset: 0;
}

.category-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  z-index: 1;
  will-change: transform, opacity;
}

.category-slide.active,
.category-slide.exiting {
  opacity: 1;
  visibility: visible;
  transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s ease;
}

.category-slide.active {
  transform: translateX(0);
  z-index: 3;
}

.category-slide.exiting {
  transform: translateX(-100%);
  z-index: 2;
}



.category-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.category-header-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin-left: 8%;
  padding: 0 1.5rem;
  text-align: left;
}

.category-label {
  display: inline-block;
  border-left: 2px solid var(--primary-gold);
  border-right: 2px solid var(--primary-gold);
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
}

.category-label span {
  color: var(--primary-gold);
  font-weight: 300;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.category-header h1 {
  font-size: 4.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.category-header h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--primary-gold);
  text-transform: uppercase;
}

.category-header p {
  font-weight: 300;
  font-size: 1.125rem;
  color: #d0d0d0;
  max-width: 800px;
  margin: 0;
}

/* ===== COLLECTIONS SHOWCASE ===== */
.collections-showcase {
  padding: 8rem 1.5rem;
  background: var(--white);
}

.showcase-container {
  max-width: 1280px;
  margin: 0 auto;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 10rem;
  align-items: center;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .showcase-row {
    grid-template-columns: 1fr 1.2fr;
  }

  .showcase-row.reverse {
    direction: rtl;
  }

  .showcase-row.reverse .showcase-content {
    direction: ltr;
  }

  .showcase-row.reverse .showcase-gallery {
    direction: ltr;
  }
}

.showcase-content {
  padding-right: 2rem;
}

.showcase-row.reverse .showcase-content {
  padding-right: 0;
  padding-left: 2rem;
}

.showcase-content h2 {
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--black);
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

.showcase-content h2::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 2px;
  background: var(--primary-gold);
}

.showcase-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
  font-weight: 300;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.showcase-img {
  height: 480px;
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
}

.showcase-img:last-child {
  margin-top: 3rem;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.showcase-img:hover img {
  transform: scale(1.05);
}

.showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.showcase-btn:hover {
  background: var(--black);
  color: var(--white);
}

@media (max-width: 768px) {
  .showcase-row {
    margin-bottom: 6rem;
    gap: 2.5rem;
  }

  .showcase-content h2 {
    font-size: 2rem;
  }

  .showcase-img {
    height: 350px;
  }
  
  .showcase-img:last-child {
    margin-top: 1.5rem;
  }
}

/* ===== DOWNLOADS SECTION ===== */
.downloads {
  padding: 4rem 1.5rem;
  background: var(--white);
}

.downloads-container {
  max-width: 1280px;
  margin: 0 auto;
}

.downloads h3 {
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.downloads-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.catalog-search {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.catalog-search input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.catalog-search i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 0.9rem;
}

.catalog-search input:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #888;
  font-weight: 300;
  display: none;
}


.download-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: var(--white);
  overflow: hidden;
}

.download-item:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.download-actions {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}

.download-item:hover .download-actions,
.download-item.active .download-actions {
  opacity: 1;
  visibility: visible;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 80px;
}

.action-btn i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  transition: transform 0.3s ease;
}

.action-btn span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.action-btn:hover {
  color: var(--primary-gold);
}

.action-btn:hover i {
  transform: translateY(-3px);
}



@media (max-width: 480px) {
  .download-actions {
    gap: 2rem;
  }
}

.download-icon {
  color: var(--primary-gold);
  flex-shrink: 0;
  font-size: 1.75rem;
}

.download-info p:first-child {
  font-weight: 300;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.download-info p:last-child {
  font-size: 0.75rem;
  color: #888;
  font-weight: 300;
}

/* ===== CATEGORY DESCRIPTION ===== */
.category-description-section {
  padding: 8rem 1.5rem 4rem;
  background: var(--white);
  text-align: center;
}

.category-description-content {
  max-width: 800px;
  margin: 0 auto;
}

.category-description-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 2rem;
  font-weight: 300;
}

.category-description-footer {
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 1.5rem;
  display: inline-block;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.gallery-container {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery h3 {
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  width: 100%; /* Responsive width */
  aspect-ratio: 281 / 325; /* Maintain the premium proportions */
  border-radius: 0.25rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* ── CONTACT SECTION V3 (Classy Dark) ── */
.contact-v3 {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 8rem 1.5rem;
}

.contact-v3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), var(--black));
  z-index: 1;
}

.contact-v3-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
}

.contact-v3-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label.is-light {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.section-label.is-light span {
  color: #ffffff;
}

.contact-v3 .section-title {
  color: #ffffff;
}

.contact-v3-desc {
  max-width: 600px;
  margin: 0 auto 4rem;
  color: #ccc;
  font-weight: 300;
  line-height: 1.8;
  font-size: 1.1rem;
}

.contact-v3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-bottom: 4rem;
}

.v3-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08); /* More subtle initial border */
  padding: 3.5rem 2rem;
  border-radius: 8px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); /* Classier easing */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.v3-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.v3-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-10px); /* Slightly more elevation */
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.v3-card:hover::before {
  opacity: 1;
}

.v3-icon {
  font-size: 1.75rem; /* Slightly larger */
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 2;
}

.v3-card:hover .v3-icon {
  transform: scale(1.2);
}

.v3-card h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em; /* More space */
  margin-bottom: 1rem;
  color: var(--white);
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
}

.v3-line {
  width: 30px;
  height: 2px;
  background: var(--primary-gold);
  margin-bottom: 1.5rem;
  opacity: 0.4;
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
  position: relative;
  z-index: 2;
}

.v3-card:hover .v3-line {
  width: 60px;
  opacity: 1;
}

.v3-card p, .v3-card {
  color: #bbb;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.v3-card:hover p {
  color: var(--white);
}

.v3-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 3rem;
  background: transparent;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.v3-btn:hover {
  background: var(--primary-gold);
  color: var(--black);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Map Wrapper */
.map-wrapper {
  width: 100%;
  margin: 0 auto 4rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  display: block;
  /* Optional: grayscale filter for darker theme integration */
  /* filter: grayscale(100%) invert(92%) contrast(83%); */
}

@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 300px;
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .contact-v3 {
    padding: 6rem 1.5rem;
  }
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact .section-title {
    font-size: 2.8rem;
  }
}
/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* important */
  font-size: 2rem; /* adjust size – was 1.75rem */
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 40;
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #1fb957;
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp i {
  line-height: 1; /* helps center perfectly */
}
/* ===== FOOTER ===== */
footer {
  background: #000;
  color: #fff;
  padding: 4rem 2rem;
  border-top: 1px solid #333;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-grid h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-grid p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid ul li {
  margin-bottom: 0.75rem;
}

.footer-grid ul li a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-grid ul li a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons li {
  margin-bottom: 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-gold);
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Responsive Footer Center - simple Mobile tweak */
@media (max-width: 768px) {
  .footer-grid {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  /* Mobile Menu Container - Target the UL inside the wrapper */
  .nav-menu ul {
    display: none; /* Hidden */
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--black); /* Dark Theme */
    padding: 1rem 0;
    box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,215,0,0.1); /* Subtle gold hint */
    z-index: 1000;
  }

  /* When wrapper #navMenu has .active, show the UL */
  .nav-menu.active ul {
    display: flex; 
    animation: slideDown 0.3s ease-out forwards;
  }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* List Items */
  .nav-menu ul li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0;
  }

  .nav-menu ul li a {
    font-size: 1rem;
    padding: 1rem 2rem;
    width: 100%;
    display: flex;
    justify-content: center; /* Centralised Text */
    align-items: center;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    position: relative; /* For absolute icon */
  }
  
  /* Position the dropdown arrow to the right so text stays centered */
  .nav-menu ul li a i {
      position: absolute;
      right: 2rem;
  }
  
  .nav-menu ul li a:hover {
     background: rgba(255,255,255,0.05);
     color: var(--primary-gold);
     /* Removed padding-left shift to keep centering stable */
  }

  /* Dropdown Menu (Mobile) */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.03); /* Very subtle dark overlay */
    padding: 0;
    border: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  /* JS toggles .active on the LI for dropdowns */
  .nav-item.active .dropdown-menu {
    max-height: 600px;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .dropdown-menu a {
    padding: 0.8rem 2.5rem;
    font-size: 0.9rem;
    color: #ccc; /* Light Gray text for submenus */
    text-transform: capitalize;
    letter-spacing: normal;
    border: none;
  }
  
  .dropdown-menu a:hover {
    color: var(--primary-gold);
    background: transparent;
    padding-left: 3rem;
  }

  /* Show View All link */
  .dropdown-overview {
      display: block !important;
      font-weight: 600 !important;
      color: var(--primary-gold) !important;
      border-bottom: 1px dashed rgba(255,215,0,0.2) !important;
  }

  .category-header-content {
    margin-left: 2%; /* Reduced from 8% for better mobile balance */
    padding: 0 1rem;
  }

  .hero {
    margin-top: 0;
    height: 100vh; /* Better full-screen on mobile */
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h1 .gold-text {
    font-size: 2rem;
    margin-top: 0.5rem;
  }

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

  .featured {
    padding: 4rem 1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .category-card {
    height: 20rem;
  }

  .about-container {
    gap: 2rem;
  }

  .about h2 {
    font-size: 2.5rem;
  }

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

  .about-image-wrapper img {
    height: 18rem;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .clients-title, .brands-title {
    font-size: 2.2rem;
  }

  .contact-v3 {
    padding: 5rem 1rem;
    background-attachment: scroll;
  }

  .contact-v3-desc {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .v3-card {
    padding: 2.5rem 1.5rem;
  }

  .v3-btn {
    width: 100%;
    margin: 0;
  }

  /* Force 2 columns for images */
  .featured-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }

  /* Center footer contents on mobile */
  .footer-grid {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  /* Center Category Page Contents on Mobile */
  .category-header {
    justify-content: center; /* Center horizontally */
    text-align: center;
  }

  .category-header-content {
    margin-left: 0;
    margin-right: 0;
    padding: 0 1.5rem;
    text-align: center;
    width: 100%;
  }

  .category-header p {
    margin: 0 auto;
  }

  .showcase-content {
    text-align: center;
    padding-right: 0; 
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .showcase-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

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

  .hero h1 .gold-text {
    font-size: 1.8rem;
  }

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

  .section-title, .clients-title, .brands-title {
    font-size: 2rem;
  }

  .floating-whatsapp {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Scroll Reveal Base Styles */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger via data-delay */
.scroll-reveal[data-delay] {
  transition-delay: calc(var(--delay) * 1ms);
}

/* ===== IMAGE MODAL ===== */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
  overflow: hidden;
}

.image-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
  from {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
  }
  to {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
  }
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: scale(0.7) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s ease;
}

.image-modal.active .modal-content {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: imageZoomIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes imageZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: var(--primary-gold);
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  opacity: 0;
  transform: rotate(0deg) scale(0.8);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  line-height: 0;
  padding-bottom: 8px; /* Offset for character baseline */
}

.image-modal.active .modal-close {
  opacity: 1;
  transform: rotate(90deg) scale(1);
  animation: closeButtonAppear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s
    backwards;
}

@keyframes closeButtonAppear {
  0% {
    opacity: 0;
    transform: rotate(0deg) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: rotate(90deg) scale(1);
  }
}

.modal-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--primary-gold);
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}

.image-modal.active .modal-caption {
  opacity: 1;
}

/* Add pointer cursor to gallery images */
.gallery-item {
  cursor: pointer;
}

/* Mobile responsive modal */
@media (max-width: 768px) {
  .modal-close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
  }

  .modal-content {
    max-width: 95%;
    max-height: 85vh;
  }

  .modal-caption {
    bottom: 1rem;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

/* Modal Navigation Buttons */
.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; 
}

.image-modal.active .modal-prev,
.image-modal.active .modal-next {
    opacity: 1;
}

.modal-prev:hover,
.modal-next:hover {
  background: var(--primary-gold);
  color: var(--black);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}

@media (max-width: 768px) {
  .modal-prev {
    left: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .modal-next {
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  /* Reduced marquee spacing for mobile */
  .client-item {
    margin: 0 1rem;
    flex: 0 0 180px;
  }
  .brand-item {
    margin: 0 1rem;
    flex: 0 0 220px;
  }
  /* Faster scrolling on mobile */
  .marquee-track,
  .brands .marquee-track {
    animation-duration: 25s !important;
  }
}
/* ===== SCROLL PROGRESS FLOATER ===== */
.scroll-progress-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--black);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.scroll-progress-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.scroll-progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scroll-progress-circle circle {
  fill: none;
  stroke: var(--primary-gold);
  stroke-width: 3;
  stroke-dasharray: 188.49; /* 2 * PI * 30 */
  stroke-dashoffset: 188.49;
  transition: stroke-dashoffset 0.1s linear;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.scroll-icon {
  color: var(--white);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.scroll-progress-container:hover .scroll-icon {
  transform: translateY(-3px);
}

/* Ensure no floating whatsapp is visible */
.floating-whatsapp {
  display: none !important;
}

/* =========================================
   MOBILE NAVIGATION (MAX 992px)
   ========================================= */
@media (max-width: 992px) {
  
  /* --- HEADER & LAYOUT --- */
  .navbar {
    height: 70px;
    background: #000000 !important; /* Force solid black */
    backdrop-filter: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .logo img {
    height: 38px;
  }

  /* Fix for Sub-page white gap: Override desktop margin (80px) with mobile height (70px) */
  .category-header, .main-section {
    margin-top: 70px !important;
    padding-top: 0 !important;
  }

  /* --- ACTIONS & HAMBURGER --- */
  .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    position: relative;
    z-index: 100005 !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
  }

  /* Chat Button */
  .chat-btn {
    display: flex !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50% !important;
    background: #FFD700 !important; /* Force Gold */
    color: #000 !important;
    border: none !important;
    visibility: visible !important;
  }
  
  .chat-btn span { display: none !important; }
  .chat-btn i { font-size: 1.2rem; margin: 0; }

  /* Hamburger Button */
  .menu-btn {
    display: block !important;
    background: transparent !important;
    border: none !important;
    width: 44px !important; 
    height: 44px !important;
    position: relative !important;
    cursor: pointer !important;
    z-index: 100006 !important;
    padding: 0 !important;
    visibility: visible !important;
  }

  .hamburger-icon,
  .hamburger-icon::before,
  .hamburger-icon::after {
    content: "" !important;
    display: block !important;
    width: 28px !important;
    height: 3px !important; /* Thicker lines */
    background-color: #FFD700 !important; /* Force Gold Hex */
    position: absolute !important;
    left: 8px !important;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .hamburger-icon { top: 20px !important; }
  .hamburger-icon::before { top: -8px !important; left: 0 !important; }
  .hamburger-icon::after { top: 8px !important; left: 0 !important; }

  /* Active State (X shape) */
  .menu-btn.active .hamburger-icon { background-color: transparent !important; }
  .menu-btn.active .hamburger-icon::before { top: 0 !important; transform: rotate(45deg); }
  .menu-btn.active .hamburger-icon::after { top: 0 !important; transform: rotate(-45deg); }

  /* --- MOBILE MENU CONTAINER --- */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #0d0d0d; /* Dark solid bg */
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    padding: 0;
    z-index: 9999;
    
    /* Ensure flex rules from desktop don't break this */
    display: block !important; 
    margin: 0 !important;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  /* --- MENU LIST --- */
  .nav-list {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    height: auto !important; /* Override desktop fixed height */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block !important;
  }

  /* --- LINKS --- */
  .nav-link {
    display: flex;
    justify-content: center; /* Center align */
    align-items: center;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    width: 100%;
    height: auto;
    text-align: center;
    gap: 10px; /* Space between text and icon */
  }

  .nav-link:hover {
    background: rgba(255, 215, 0, 0.05);
    color: var(--primary-gold);
  }

  .nav-item.active .nav-link {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.05);
  }

  .nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
    position: relative; /* Ensure it stays with text */
  }

  .nav-item.active .nav-link i {
    transform: rotate(180deg);
  }

  /* --- DROPDOWNS (ACCORDION) --- */
  /* Disable Desktop Hover Logic */
  .nav-item:hover .dropdown-menu {
    display: none; 
    /* Only explicit .show class will display it */
  }

  /* DROPDOWNS - SIMPLE DISPLAY TOGGLE */
  .dropdown-menu {
    position: static !important; /* Force static flow */
    transform: none !important; /* Remove centering transform */
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    background: #151515;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    text-align: center; /* Center Dropdown Text */
  }

  /* Provide a 'show' class for JS to toggle */
  .dropdown-menu.show {
    display: block !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 10px 0 !important;
    overflow: visible !important;
  }

  .dropdown-menu a {
    display: block !important;
    padding: 1rem !important; /* Symmetrical Padding */
    font-size: 1rem !important;
    color: #ffffff !important; /* Force WHITE */
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: transparent;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center !important; /* Center text */
  }

  .dropdown-menu a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
    padding-left: 1rem !important; /* Remove indent shift */
  }

  /* Show 'View All' link on mobile */
  .dropdown-overview {
    display: block !important;
    font-weight: 600;
    color: var(--primary-gold) !important;
  }

  /* --- OVERLAY --- */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0,0,0,0.6);
    z-index: 9998;
  }
  
  .nav-overlay.active {
    display: block;
  }
}
