/* ============================================
   BAWEJA OPTICALS & WATCHES — Premium CSS v3
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Hero palette */
  --hero-bg: #0C0C0C;
  --gold: #C9A45C;
  --gold-light: #E6C97A;
  --gold-glow: rgba(201, 164, 92, 0.4);

  /* Light palette */
  --white: #FFFFFF;
  --off-white: #FDFBF7; /* Soft beige tone for premium feel */
  --brand-white: #FAFAFA;
  --border: #E8E5DF; /* Warmer border */
  --text-dark: #161616;
  --text-muted: #6B6B6B;
  --text-light: #999999;

  /* Gradients */
  --bg-gradient: linear-gradient(135deg, #FFFFFF 0%, #FDFBF7 100%);
  --gold-gradient: linear-gradient(135deg, rgba(201, 164, 92, 0.06) 0%, rgba(201, 164, 92, 0.15) 100%);

  /* Shadows - More depth and richness */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.07);
  --shadow-gold: 0 8px 32px rgba(201, 164, 92, 0.25);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Inter', sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);

  /* Layout */
  --container: 1200px;
  --section-padding: 110px 0;
  --border-radius: 16px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  opacity: 0;
  animation: pageFadeIn 1.2s var(--ease) forwards;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

.gold-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  background: transparent; /* Explicitly set to transparent */
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(12, 12, 12, 0.15); /* Very subtle dark tint */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: none; /* Removed heavy shadow for a cleaner transparent look */
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Ensure container takes full width */
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand span {
  font-family: var(--font-display);
  font-size: 1.5rem; /* Increased from 1.3rem */
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  font-family: var(--font-body);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--hero-bg) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201, 164, 92, 0.2);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px var(--gold-glow);
  color: var(--hero-bg) !important;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

.nav-phone:hover {
  color: var(--white) !important;
}

.nav-locate {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-locate:hover {
  background: var(--white);
  color: var(--hero-bg) !important;
  border-color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.3) 0%,
    rgba(12, 12, 12, 0.6) 50%,
    rgba(12, 12, 12, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px; /* Reduced padding */
  background: rgba(201, 164, 92, 0.15);
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.7rem; 
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.3s forwards;
  font-family: var(--font-body);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  max-width: fit-content;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.navbar-brand .logo-icon {
  width: 48px; /* Slightly smaller base size */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem); /* Elegantly scaled down */
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.5s forwards;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero h1 .gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem); /* Sleeker, lighter look */
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300; /* Made slightly lighter for elegance */
  max-width: 600px;
  margin: 0 auto 42px;
  line-height: 1.7; /* Slightly looser line-height */
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.7s forwards;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
  padding: 0 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.9s forwards;
}

.btn-primary {
  padding: 8px 22px; /* Even smaller */
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--hero-bg);
  border-radius: 50px;
  font-size: 0.78rem; /* Smaller font */
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(201, 164, 92, 0.35); /* stronger shadow */
  font-family: var(--font-body);
  display: inline-block;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 12px 36px rgba(201, 164, 92, 0.5); /* Stronger hover */
}

.btn-secondary {
  padding: 8px 22px; /* Even smaller */
  background: rgba(255, 255, 255, 0.05); /* very slight fill */
  color: var(--gold);
  border: 1.5px solid rgba(201, 164, 92, 0.6); /* Thinner border */
  border-radius: 50px;
  font-size: 0.78rem; /* Smaller font */
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  font-family: var(--font-body);
  display: inline-block;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--hero-bg);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201, 164, 92, 0.3);
}

/* Hero Highlights */
.hero-highlights {
  display: flex;
  flex-wrap: wrap; /* Safely wrap on very small screens */
  justify-content: center;
  align-items: center;
  gap: 16px 32px; /* Vertical and horizontal gap */
  margin: 48px auto 0;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 1.1s forwards;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.hero-highlight-item svg {
  width: 16px; /* Reduced from 18px */
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.hero-highlight-item span {
  font-size: 0.8rem; /* Reduced from 0.88rem */
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 1.3s forwards;
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  font-family: var(--font-body);
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.3; top: 20px; }
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
  overflow: hidden; /* Prevent overflow from blurred gold element */
}

/* Add a very subtle blur glow behind brands */
.brands-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: var(--gold-glow);
  filter: blur(150px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 36px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  box-shadow: var(--shadow-sm); /* Added soft shadow to cards */
}

.brand-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 164, 92, 0.4);
  box-shadow: var(--shadow-gold);
}

.brand-card img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
  transition: all 0.4s var(--ease);
}

.brand-card:hover img {
  transform: scale(1.12); /* Slightly more pop */
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: var(--section-padding);
  background: var(--off-white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 56px 40px 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}

/* Soft gold gradient background on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: var(--off-white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--text-muted);
  transition: all 0.4s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--white);
  box-shadow: 0 10px 24px rgba(201, 164, 92, 0.15);
  transform: scale(1.05);
}

.service-card:hover .service-icon svg {
  stroke: var(--gold);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
  font-family: var(--font-body);
  text-transform: uppercase;
}

.service-card:hover .service-cta {
  letter-spacing: 0.08em;
  color: #B5904D; /* slightly darker gold on hover */
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: var(--section-padding);
  background: var(--bg-gradient); /* Soft background gradient */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  transition: transform 0.8s var(--ease);
}

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: var(--border-radius);
  pointer-events: none;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.about-content .gold-divider {
  margin: 16px 0 28px;
}

.about-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

/* New Highlight Stat styling */
.about-highlight-stat {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--gold-gradient);
  border: 1px solid rgba(201, 164, 92, 0.2);
  padding: 16px 32px;
  border-radius: 12px;
  margin: 20px 0 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  cursor: default;
}

.about-highlight-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 164, 92, 0.4);
}

.highlight-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.highlight-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: left; /* Aligned left for more premium look */
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  background: transparent;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.btn-learn-more:hover {
  background: var(--gold);
  color: var(--hero-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 164, 92, 0.3);
}

.btn-learn-more svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn-learn-more:hover svg {
  transform: translateX(6px);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-section {
  padding: var(--section-padding);
  background: var(--off-white);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--white); /* White cards on off-white bg */
  border-radius: var(--border-radius);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--off-white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--border);
}

.why-card:hover .why-icon {
  background: rgba(201, 164, 92, 0.1);
  border-color: rgba(201, 164, 92, 0.3);
  transform: scale(1.1) rotate(5deg);
}

.why-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--text-muted);
  transition: stroke 0.4s var(--ease);
}

.why-card:hover .why-icon svg {
  stroke: var(--gold);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.why-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-gradient);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 164, 92, 0.2);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 28px 32px;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.3s var(--ease);
  font-family: var(--font-body);
  gap: 16px;
}

.faq-item.active .faq-question {
  color: var(--gold);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}

.faq-item:hover .faq-icon {
  background: rgba(201, 164, 92, 0.05);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  transition: stroke 0.4s var(--ease);
}

.faq-item.active .faq-icon svg {
  stroke: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 32px 28px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-family: var(--font-body);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--hero-bg);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 20px;
  line-height: 1.8;
  max-width: 300px;
  font-family: var(--font-body);
}

.footer-brand .logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .logo-row .logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand .logo-row span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.footer ul li {
  margin-bottom: 14px;
}

.footer ul li a,
.footer ul li span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  font-family: var(--font-body);
  display: inline-block;
}

.footer ul li span {
  user-select: none;
  cursor: default;
}

.footer ul li a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact li svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact li span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-family: var(--font-body);
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

/* Updated footer social icon hover effects */
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.1); /* Scale added for premium feel */
  box-shadow: 0 8px 24px rgba(201, 164, 92, 0.4);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.8);
  transition: fill 0.3s var(--ease);
}

.social-icon:hover svg {
  fill: var(--hero-bg);
}

.footer-bottom {
  padding: 28px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  font-family: var(--font-body);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.5s; }
.reveal-stagger.visible > *:nth-child(11) { transition-delay: 0.55s; }
.reveal-stagger.visible > *:nth-child(12) { transition-delay: 0.6s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  /* Navbar mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #0C0C0C; 
    flex-direction: column;
    justify-content: center;
    gap: 15px; /* Tighter gap for better fit */
    padding: 80px 30px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    text-align: center;
    z-index: 1050;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1100;
  }

  .navbar-brand {
    position: relative;
    z-index: 1100;
  }

  .navbar {
    padding: 16px 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar.scrolled {
    background: rgba(12, 12, 12, 0.2) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 0;
    box-shadow: none;
  }

  .nav-links a {
    font-size: 1.05rem;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-phone, .nav-locate, .nav-cta {
    width: 100% !important;
    max-width: 260px;
    margin: 5px auto;
  }

  .nav-cta {
    margin-top: 15px;
    background: var(--gold);
    color: var(--hero-bg) !important;
  }
}

@media (max-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  /* Navbar Mobile Tweak */
  .navbar {
    padding: 16px 0;
  }
  
  .navbar.scrolled {
    padding: 12px 0;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    padding: 120px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
  }

  .scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 40px;
    z-index: 5;
  }

  .hero h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    padding: 0 10px;
  }

  .hero-badge {
    padding: 6px 14px;
    font-size: 0.6rem;
    margin-bottom: 24px;
  }

  .hero-badge svg {
    width: 12px;
    height: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 240px;
    text-align: center;
    padding: 12px 24px;
  }

  .hero-highlights {
    flex-direction: row; /* Horizontal row */
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    align-items: center;
    margin-top: 28px;
  }

  /* Shrink brand logo on mobile */
  .navbar-brand .logo-icon {
    width: 42px;
    height: 42px;
  }

  .hero-highlight-item span {
    font-size: 0.85rem;
  }

  /* Brands */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .brand-card {
    padding: 24px 16px;
    min-height: 95px;
  }

  .brand-card img {
    max-height: 38px;
    max-width: 110px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 40px 32px 36px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    min-height: 320px;
  }

  .about-content .gold-divider {
    margin-left: 0;
  }

  .about-stats {
    gap: 28px;
  }

  /* Why Choose */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 36px 28px;
  }

  /* FAQ */
  .faq-question {
    padding: 22px 24px;
    font-size: 1rem;
  }

  .faq-answer-inner {
    padding: 0 24px 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-header {
    margin-bottom: 56px;
  }
}

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

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brand-card {
    padding: 20px 12px;
    min-height: 80px;
  }

  .brand-card img {
    max-height: 32px;
    max-width: 90px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-item .stat-number {
    font-size: 1.8rem;
  }

  .why-card h3 {
    font-size: 1.1rem;
  }

  .about-highlight-stat {
    padding: 14px 24px;
    gap: 12px;
  }
  .highlight-number {
    font-size: 1.8rem;
  }
}

/* ---------- Logo Image Styling ---------- */
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
