/* ═══════════════════════════════════════════════════════════
   NEXUS PLY & DECOR — Complete Design System
   Brand Kit v1.0 | "The Beauty of Home"
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Montserrat:wght@300;400;600&family=Lato:wght@400;500&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --color-gold:       #F5B800;
  --color-gold-light: #FFD03D;
  --color-gold-dark:  #D9A300;
  --color-crimson:    #8B0000;
  --color-dark:       #1A1A1A;
  --color-charcoal:   #2B2B2B;
  --color-warm-white: #F5F5F0;
  --color-silver:     #D9D9D9;
  --color-text-primary:   #1A1A1A;
  --color-text-secondary: #555555;
  --color-text-on-dark:   #F5F5F0;

  --font-display: 'Playfair Display', serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Lato', sans-serif;

  --text-h1:      3.5rem;
  --text-h2:      2.5rem;
  --text-h3:      1.75rem;
  --text-h4:      1.25rem;
  --text-body:    1rem;
  --text-caption: 0.8125rem;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  32px;
  --space-xl:  64px;
  --space-2xl: 96px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --border-light:  1px solid rgba(0, 0, 0, 0.06);
  --border-accent: 2px solid var(--color-gold);

  --shadow-card:  0 10px 30px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.02);
  --shadow-hover: 0 20px 40px rgba(245,184,0,0.08), 0 1px 8px rgba(0,0,0,0.04);
  --shadow-nav:   0 4px 20px rgba(0,0,0,0.15);

  --nav-height: 76px;
  --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Custom Scrollbar */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  --scrollbar-thumb: var(--color-gold);
  --scrollbar-track: var(--color-dark);
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
}
@supports not (scrollbar-color: auto) {
  html::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  html::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 4px;
  }
  html::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
  }
}

/* Selection */
::selection {
  background: var(--color-gold);
  color: var(--color-dark);
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background: var(--color-warm-white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1 { font-family: var(--font-display); font-size: var(--text-h1); font-weight: 800; line-height: 1.1; }
h2 { font-family: var(--font-display); font-size: var(--text-h2); font-weight: 700; line-height: 1.2; }
h3 { font-family: var(--font-heading); font-size: var(--text-h3); font-weight: 600; }
h4 { font-family: var(--font-heading); font-size: var(--text-h4); font-weight: 600; }
p  { font-size: var(--text-body); color: var(--color-text-secondary); }

/* ── Layout ─────────────────────────────────────────────── */
.container      { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-lg); }
.container-sm   { max-width: 900px;  margin: 0 auto; padding: 0 var(--space-lg); }
.section        { padding: var(--space-xl) 0; }
.section--dark  { background: var(--color-charcoal); color: var(--color-text-on-dark); }
.section--dark p { color: var(--color-silver); }

/* ── Section Headers ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header .label {
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-sm);
}
.section-header h2 { margin-bottom: var(--space-md); }
.section-header p  { max-width: 600px; margin: 0 auto; }
.section-header--light h2 { color: var(--color-text-on-dark); }
.gold-line {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 50%, transparent);
  margin: var(--space-md) auto;
  box-shadow: 0 1px 8px rgba(245, 184, 0, 0.4);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark);
  border: none;
  box-shadow: 0 4px 15px rgba(245,184,0,0.25);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  box-shadow: 0 8px 25px rgba(245,184,0,0.4);
  transform: translateY(-2px);
}
.btn-primary:hover::before {
  left: 150%;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(245,184,0,0.15);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}
.btn-dark:hover {
  background: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 12px rgba(37,211,102,0.2);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  display: flex; align-items: center;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.92);
  height: 64px;
  box-shadow: var(--shadow-nav);
  border-bottom: 1px solid rgba(245, 184, 0, 0.15);
}
.nav-inner {
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 var(--space-lg);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900; font-size: 19px;
  color: var(--color-dark);
  box-shadow: 0 4px 10px rgba(245, 184, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-logo-text { line-height: 1.25; }
.nav-logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 2px;
  background: linear-gradient(to right, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-logo-tagline {
  display: block;
  font-family: var(--font-heading);
  font-size: 9px; font-weight: 400;
  color: #ccc;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: var(--space-lg);
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; width: 0; height: 2px;
  background: var(--color-gold);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: var(--space-sm); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center;
  justify-content: center; gap: var(--space-lg);
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 600;
  color: #fff; text-transform: uppercase;
  letter-spacing: 2px;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--color-gold); }

/* ── Hero Section ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-charcoal) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.28) contrast(1.05);
  transform: scale(1.02);
  animation: subtleZoom 24s ease-out infinite alternate;
}
@keyframes subtleZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  background: rgba(245,184,0,0.12);
  border: 1px solid rgba(245,184,0,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: var(--space-md);
}
.hero h1 { color: #fff; margin-bottom: var(--space-md); font-size: var(--text-h1); }
.hero h1 span { color: var(--color-gold); }
.hero-desc {
  font-size: 1.125rem;
  color: rgba(245,245,240,0.75);
  margin-bottom: var(--space-lg);
  max-width: 580px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 800;
  color: var(--color-gold);
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.hero-stat-label {
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  color: rgba(245,245,240,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-heading);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ── Category Cards ─────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}
.category-card {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--color-text-primary);
  display: block;
}
.category-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}
.category-icon {
  width: 64px; height: 64px;
  background: rgba(245,184,0,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 28px;
  transition: background var(--transition), transform var(--transition);
}
.category-card:hover .category-icon {
  background: rgba(245,184,0,0.18);
  transform: scale(1.1);
}
.category-card h4 { font-size: 1.05rem; margin-bottom: var(--space-xs); font-family: var(--font-heading); font-weight: 600; }
.category-card p  { font-size: 0.8125rem; line-height: 1.6; color: var(--color-text-secondary); }

/* ── Product Cards ──────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--space-lg);
}
.product-card {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}
.product-card-img {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--color-silver);
  position: relative;
  border-bottom: var(--border-light);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-badge {
  position: absolute; top: var(--space-sm); left: var(--space-sm);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}
.product-card-body {
  padding: var(--space-md);
  flex: 1; display: flex; flex-direction: column;
}
.product-card-cat {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: var(--space-xs);
}
.product-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}
.product-card-desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1; margin-bottom: var(--space-md);
}
.product-card-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding-top: var(--space-md);
  border-top: var(--border-light);
}
.product-card-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
}
.product-card-buttons .btn.btn-sm {
  flex: 1;
  justify-content: center;
  padding: 10px 4px;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  color: var(--color-gold-dark);
}
.product-price.enquiry {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* ── Why Choose Us ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--space-lg);
}
.feature-item {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(245,184,0,0.25);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-icon {
  width: 72px; height: 72px;
  background: rgba(245,184,0,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 30px;
  transition: transform var(--transition);
}
.feature-item:hover .feature-icon {
  transform: rotateY(180deg);
}
.feature-item h3 { color: var(--color-gold); margin-bottom: var(--space-sm); font-family: var(--font-heading); font-weight: 600; }
.feature-item p  { color: var(--color-silver); font-size: 0.9375rem; line-height: 1.6; }

/* ── Gallery Strip ──────────────────────────────────────── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: var(--space-sm);
}
.gallery-strip-item {
  aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer; position: relative;
  box-shadow: var(--shadow-card);
}
.gallery-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-strip-item:hover img { transform: scale(1.08); }
.gallery-strip-item-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.gallery-strip-item:hover .gallery-strip-item-overlay {
  background: rgba(26,26,26,0.6);
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.3;
  transition: opacity var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 184, 0, 0.3);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.testimonial-card:hover::before {
  opacity: 1;
}
.testimonial-stars { color: var(--color-gold); font-size: 1.1rem; margin-bottom: var(--space-sm); }
.testimonial-text {
  color: rgba(245,245,240,0.85);
  font-size: 0.9375rem; line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-sm); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 16px;
  color: var(--color-dark);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600; color: #fff;
  font-size: 0.9375rem;
}
.testimonial-location {
  font-family: var(--font-heading);
  font-size: 0.8125rem; color: var(--color-gold);
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-dark), var(--color-charcoal));
  border-top: 3px solid var(--color-gold);
  padding: var(--space-xl) 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: var(--space-md); }
.cta-banner p  { color: var(--color-silver); margin-bottom: var(--space-lg); }
.cta-buttons   { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #181818 0%, #0d0d0d 100%);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--space-xl) 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 184, 0, 0.15);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.5;
}
.footer-radial-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.03) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}
.footer-brand-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.25);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}
.footer-brand-name span {
  color: var(--color-gold);
}
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-md);
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-md);
}
.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.footer-badge-pill:hover {
  background: rgba(245, 184, 0, 0.08);
  border-color: rgba(245, 184, 0, 0.3);
  color: var(--color-gold);
  transform: translateY(-2px);
}
.footer-badge-pill svg {
  width: 12px;
  height: 12px;
  fill: var(--color-gold);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-md);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  margin-top: 4px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
  line-height: 1.45;
}
.footer-contact-item a:hover {
  color: var(--color-gold);
}
.footer-contact-item a:hover svg {
  transform: scale(1.15);
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.9375rem; font-weight: 600;
  color: #fff; text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--color-gold);
  font-size: 1.1rem;
  opacity: 0.5;
  transition: transform var(--transition), opacity var(--transition);
}
.footer-links a:hover {
  color: var(--color-gold);
  transform: translateX(6px);
}
.footer-links a:hover::before {
  opacity: 1;
  transform: scale(1.3);
}
.footer-social { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition);
}
.social-btn:hover {
  background: rgba(245, 184, 0, 0.1);
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 4px 12px rgba(245, 184, 0, 0.15);
}
.social-btn:hover svg {
  transform: scale(1.12) rotate(4deg);
}
.social-btn.facebook:hover { border-color: #1877F2; color: #1877F2; background: rgba(24, 119, 242, 0.08); }
.social-btn.instagram:hover { border-color: #E4405F; color: #E4405F; background: rgba(228, 64, 95, 0.08); }
.social-btn.whatsapp:hover { border-color: #25D366; color: #25D366; background: rgba(37, 211, 102, 0.08); }

/* ── Footer Callback Form ── */
.footer-callback-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.footer-callback-box p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}
.footer-callback-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-callback-form .form-control-footer {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #fff;
  outline: none;
  transition: all var(--transition);
}
.footer-callback-form .form-control-footer:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.15);
}
.footer-callback-form .btn-footer-submit {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.2);
}
.footer-callback-form .btn-footer-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}
.footer-callback-form .btn-footer-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.35);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}
.footer-callback-form .btn-footer-submit:hover::before {
  left: 150%;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.footer-callback-form .btn-footer-submit:active {
  transform: translateY(0);
}
.footer-callback-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md) 0;
  animation: fadeIn 0.4s ease;
}
.footer-callback-success.active {
  display: flex;
}
.footer-callback-success-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer-callback-success h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.footer-callback-success p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
@keyframes scaleUp {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ── Scroll to Top Button ── */
.scroll-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--color-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition);
  z-index: 998;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.3);
}
.scroll-to-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform var(--transition);
}
.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-md) 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom p { font-size: 0.875rem; }

/* ── WhatsApp Float ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute; right: 70px;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  background: var(--color-charcoal);
  padding: 60px 0 var(--space-lg);
  margin-top: var(--nav-height);
}
.breadcrumb h1 { color: #fff; margin-bottom: var(--space-sm); }
.breadcrumb-nav {
  display: flex; align-items: center; gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
}
.breadcrumb-nav a { color: var(--color-gold); }
.breadcrumb-nav span { color: var(--color-silver); }

/* ── Contact Form ───────────────────────────────────────── */
.form-group { margin-bottom: var(--space-md); }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  text-transform: uppercase; letter-spacing: 1px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(245,184,0,0.15);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── Alerts ─────────────────────────────────────────────── */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
}
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error   { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.alert-info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }

/* ── Pagination ─────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: var(--space-sm); margin-top: var(--space-xl); flex-wrap: wrap; }
.pagination .page-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 600;
  color: var(--color-text-secondary);
  transition: all var(--transition);
  text-decoration: none;
}
.pagination .page-link.active,
.pagination .page-link:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}

/* ── Blog Cards ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--space-lg);
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: var(--border-light);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-gold);
}
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; border-bottom: var(--border-light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  color: var(--color-gold); text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: var(--space-xs);
}
.blog-card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: var(--space-sm); line-height: 1.45; }
.blog-card-title a { color: var(--color-dark) !important; transition: color var(--transition); }
.blog-card-title a:hover { color: var(--color-gold-dark) !important; }
.blog-card-meta {
  display: flex; align-items: center; gap: var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--text-caption);
  color: #666666 !important;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.blog-card-meta span {
  color: #666666 !important;
}
.blog-card-body p {
  color: #444444 !important;
}

/* ── Page Animations ────────────────────────────────────── */
.js-active .fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-active .fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Lightbox ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 2rem; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Keyframes ──────────────────────────────────────────── */
@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(0.5); }
  50%      { opacity: 1;   transform: scaleY(1); }
}
@keyframes whatsappPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --text-h1: 3rem; --text-h2: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats  { gap: var(--space-lg); }
}
@media (max-width: 768px) {
  :root { --text-h1: 2.25rem; --text-h2: 1.75rem; --text-h3: 1.25rem; --space-xl: 48px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: var(--space-lg); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons     { flex-direction: column; align-items: center; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .container { padding: 0 var(--space-md); }
}
@media (max-width: 480px) {
  :root { --text-h1: 1.875rem; --text-h2: 1.5rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: var(--space-md); }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
}

/* ═══════════════════════════════════════════════════════════
   LUXURY REFINEMENTS & ASYMMETRIC GRID UPDATES
   ═══════════════════════════════════════════════════════════ */

/* Navigation Bottom Border Glow */
.navbar.scrolled {
  border-bottom: 2px solid var(--color-gold) !important;
  box-shadow: 0 4px 30px rgba(245, 184, 0, 0.15) !important;
}

/* Floating WhatsApp Glow Pulse */
.whatsapp-float {
  animation: wa-glow-pulse 2s infinite !important;
}
@keyframes wa-glow-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Hero Section Highlights */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background-color: var(--color-gold);
  z-index: 10;
}
.hero-texture-overlay {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(245, 184, 0, 0.02) 0px,
    rgba(245, 184, 0, 0.02) 2px,
    transparent 2px,
    transparent 14px
  );
  pointer-events: none;
  z-index: 1;
}
.hero-image-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 200px 220px;
  gap: 16px;
}
.hero-grid-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(245, 184, 0, 0.2);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: transform var(--transition), border-color var(--transition);
}
.hero-grid-item:hover { border-color: var(--color-gold); }
.hero-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.hero-grid-item:hover img { transform: scale(1.08); }
.hero-grid-badge {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--font-heading); font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold);
  background-color: rgba(26,26,26,0.85); padding: 6px 12px;
  border-radius: var(--radius-sm); border: 1px solid rgba(245, 184, 0, 0.25);
  backdrop-filter: blur(4px); z-index: 2;
}
.hero-item-1 { grid-column: 1; grid-row: 1 / 3; }
.hero-item-2 { grid-column: 2; grid-row: 1; }
.hero-item-3 { grid-column: 2; grid-row: 2; }

@media (max-width: 992px) {
  .hero-image-grid {
    display: grid;
    margin: var(--space-md) auto 0;
    max-width: 460px;
    width: 100%;
    grid-template-rows: 150px 170px;
  }
}
@media (max-width: 576px) {
  .hero-image-grid {
    display: none;
  }
}

/* Category Card Bottom Border Slide */
.category-card {
  position: relative;
  overflow: hidden;
}
.category-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.category-card:hover::after {
  transform: scaleX(1);
}

/* Featured Product Selection Badges */
.product-card-img {
  position: relative;
}
.product-status-badge {
  position: absolute; top: 16px; left: 16px;
  background-color: var(--color-gold); color: var(--color-dark);
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); z-index: 2;
}
.product-enquiry-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-gold);
  transition: gap var(--transition);
}
.product-enquiry-link:hover { gap: 10px; color: var(--color-gold-light); }

/* Showroom Card & Gray Google Map */
.showroom-card {
  background-color: var(--color-charcoal);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  text-align: left;
  border-left: 4px solid var(--color-gold);
}
.showroom-card-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.showroom-card-subtitle { font-family: var(--font-body); font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-bottom: 28px; line-height: 1.6; }
.showroom-details-list { display: flex; flex-direction: column; gap: 20px; }
.showroom-detail-row { display: flex; gap: 14px; align-items: flex-start; }
.showroom-row-icon { font-size: 18px; min-width: 24px; text-align: center; color: var(--color-gold); }
.showroom-row-content { display: flex; flex-direction: column; }
.showroom-row-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 4px; }
.showroom-row-value { font-family: var(--font-body); font-size: 14px; color: #fff; line-height: 1.6; }
.showroom-row-value a { color: var(--color-gold); transition: color 0.2s; }
.showroom-row-value a:hover { color: var(--color-gold-light); }
.showroom-map-container { margin-top: 28px; height: 200px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(245, 184, 0, 0.15); }

/* Dynamic Asymmetric Gallery Grid */
.gallery-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery-asymmetric-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.gallery-asymmetric-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-asymmetric-tile:hover img { transform: scale(1.08); }
.gallery-asymmetric-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 26, 26, 0.7) 100%);
  pointer-events: none;
}
.gallery-asymmetric-tile-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-gold);
  background-color: rgba(26, 26, 26, 0.85); padding: 6px 14px;
  border-radius: var(--radius-sm); border: 1px solid rgba(245, 184, 0, 0.25);
  backdrop-filter: blur(4px); z-index: 2;
  transition: transform var(--transition);
}
.gallery-asymmetric-tile:hover .gallery-asymmetric-tile-label { transform: translateY(-2px); }

/* Apply span rules only on desktop width for correct layout */
@media (min-width: 900px) {
  .gallery-asymmetric-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 900px) {
  .gallery-asymmetric-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-asymmetric-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 576px) {
  .gallery-asymmetric-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery-asymmetric-tile:nth-child(1) { grid-column: span 1; grid-row: span 1; }
}

/* CTA Banner Radial overlay */
.cta-banner-radial {
  position: relative; overflow: hidden;
}
.cta-banner-radial::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.06) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.cta-banner-content-inner { position: relative; z-index: 2; }

/* Interactive Enquiry Modal styles */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-window {
  background: rgba(43, 43, 43, 0.95); border: 1px solid rgba(245, 184, 0, 0.25);
  border-radius: var(--radius-md); width: 100%; max-width: 520px;
  padding: 40px 36px; position: relative; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(40px) scale(0.95); transition: transform 0.3s ease; color: #fff;
}
.modal-overlay.open .modal-window { transform: translateY(0) scale(1); }
.modal-close-btn { position: absolute; top: 20px; right: 20px; color: rgba(255, 255, 255, 0.6); font-size: 24px; line-height: 1; background: none; border: none; cursor: pointer; }
.modal-close-btn:hover { color: var(--color-gold); }
.modal-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 8px; text-align: center; }
.modal-title span { color: var(--color-gold); }
.modal-subtitle { font-family: var(--font-body); font-size: 14px; color: rgba(255, 255, 255, 0.6); margin-bottom: 28px; text-align: center; }
.modal-submit-btn { width: 100%; margin-top: 10px; }
.modal-success-screen {
  position: absolute; inset: 0; background-color: var(--color-charcoal);
  border-radius: var(--radius-md); display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 40px; text-align: center;
  z-index: 5; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-success-screen.active { opacity: 1; pointer-events: auto; }
.success-icon { width: 72px; height: 72px; background-color: rgba(245, 184, 0, 0.1); color: var(--color-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; margin-bottom: 24px; border: 2px solid var(--color-gold); }

/* Animation reduction rules */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .whatsapp-float { animation: none !important; }
  * { transition-duration: 0s !important; animation-duration: 0s !important; }
}

/* Why Choose Us Points Grid Layout */
.why-us-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 80px;
  align-items: center;
}
.why-points-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-point-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all var(--transition);
}
.why-point-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 184, 0, 0.25);
  box-shadow: 0 12px 30px rgba(245, 184, 0, 0.06);
}
.why-icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background-color: var(--color-gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(245, 184, 0, 0.25);
  box-shadow: 0 4px 10px rgba(245, 184, 0, 0.1);
  transition: all var(--transition);
}
.why-point-item:hover .why-icon-box {
  background-color: rgba(245, 184, 0, 0.2);
  transform: scale(1.08);
}
.why-point-text-block {
  display: flex;
  flex-direction: column;
}
.why-point-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}
.why-point-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 600px) {
  .why-points-list {
    grid-template-columns: 1fr;
  }
}

/* Homepage Hero Grid Layout & Text Styles */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content-left {
  text-align: left;
}
.hero-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  background: linear-gradient(135deg, #ffffff 40%, #c8c8c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.hero-h1 span {
  color: var(--color-gold);
}
.hero-subtext {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  max-width: 540px;
}
.hero-stat-box {
  display: flex;
  flex-direction: column;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content-left {
    text-align: center;
  }
  .hero-eyebrow-line {
    justify-content: center;
  }
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-btns {
    justify-content: center;
  }
  .hero-stats-row {
    margin: 0 auto;
  }
}

/* Category Circle Wrapper Style */
.category-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(245,184,0,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 28px;
  transition: background var(--transition), transform var(--transition);
  border: 1px solid rgba(245, 184, 0, 0.15);
}
.category-card:hover .category-icon-wrapper {
  background: rgba(245, 184, 0, 0.2);
}

/* Product Cards Container & Details styling mapping */
.product-image-container {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-silver);
  position: relative;
  border-bottom: var(--border-light);
}
.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card:hover .product-image-container img {
  transform: scale(1.08);
}
.product-body-content {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.product-category-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xs);
  display: block;
}
.product-name-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  line-height: 1.4;
}
.product-short-desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-md);
}

/* Testimonials Grid styling mapping */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
  }
}
.testimonial-quote-symbol {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.4;
  color: var(--color-gold);
  opacity: 0.25;
  margin-bottom: 8px;
  display: block;
}
.testimonial-card-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
  flex-grow: 1;
}
.testimonial-author-block {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}
.testimonial-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--gold-dim);
  border: 1px solid rgba(245, 184, 0, 0.25);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.testimonial-author-location {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-gold);
  margin-top: 2px;
}

/* ── Custom Pagination & Product Detail Enhancements ────── */
.pagination .page-link.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  background: transparent;
  border-color: rgba(0, 0, 0, 0.06);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.product-image-gallery-wrapper {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
}

.product-main-image-viewport {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  background: var(--color-silver);
  aspect-ratio: 4/3;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-main-image-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-main-image-viewport:hover img {
  transform: scale(1.04);
}

.product-thumbnail-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.product-thumbnail-img {
  width: 76px;
  height: 58px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid var(--color-silver);
  transition: border-color 0.25s, transform 0.25s;
}

.product-thumbnail-img:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.product-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(245, 184, 0, 0.08);
  border: 1px solid rgba(245, 184, 0, 0.25);
  color: var(--color-gold-dark);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.product-detail-price-box {
  background: linear-gradient(135deg, var(--color-warm-white) 0%, #fff 100%);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.product-detail-price-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--color-gold);
}

.product-detail-price-val {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}

.product-detail-price-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.product-detail-price-label {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 4px;
  display: block;
}

.product-enquiry-form-card {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.product-enquiry-form-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 8px;
  display: inline-block;
}

/* ── Services Page Layout ──────────────────────────────── */
.services-page-section {
  background: radial-gradient(circle at 50% 0%, rgba(245, 184, 0, 0.04) 0%, #FAF9F6 100%);
  position: relative;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--space-lg);
}

.service-detail-card {
  background: linear-gradient(135deg, #ffffff 0%, #fcfbf7 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(212, 175, 55, 0.05);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.75s ease;
  z-index: 2;
  pointer-events: none;
}

.service-detail-card:hover {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08), 0 1px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-10px);
}

.service-detail-card:hover::before {
  left: 150%;
}

.service-detail-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-silver);
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.service-detail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-detail-card:hover .service-detail-card-img img {
  transform: scale(1.06);
}

.service-detail-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-detail-card-icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-md);
}

.service-detail-card-icon {
  font-size: 28px;
  line-height: 1;
}

.service-detail-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
}

.service-detail-card-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  flex: 1;
}

.service-detail-card-footer {
  display: flex;
  gap: var(--space-sm);
  margin-top: auto;
}

.service-detail-card-footer .btn {
  flex: 1;
  justify-content: center;
}

/* Premium Icon Circular Wrapper & Transitions */
.service-detail-card-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08); /* Translucent Gold */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02), inset 0 2px 4px rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-detail-card:hover .service-detail-card-icon-wrapper {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff;
  transform: rotate(15deg);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.service-detail-card-icon {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.4s ease;
}

.service-detail-card:hover .service-detail-card-icon {
  transform: scale(1.1);
}

/* Service Details Smooth Expanding Drawer */
.service-details-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
  opacity: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(250, 249, 246, 0.6);
  border-radius: var(--radius-md);
}

.service-details-expandable.open {
  max-height: 800px; /* high limit to ensure long descriptions fit */
  opacity: 1;
  padding: var(--space-md);
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.service-details-expandable h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
  margin-top: var(--space-md);
}

.service-details-expandable ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.service-details-expandable li {
  position: relative;
  padding-left: 18px;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.service-details-expandable li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.7rem;
  top: 1px;
}

.service-details-toggle-link {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 40px;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  margin-bottom: var(--space-md);
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.service-details-toggle-link:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.service-details-toggle-link.open {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
}

/* ── Design Gallery Enhancements ───────────────────────── */
/* ── Design Gallery Enhancements ───────────────────────── */
.gallery-tabs-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.gallery-tab-btn {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text-secondary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  transition: all var(--transition);
}

.gallery-tab-btn:hover,
.gallery-tab-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.25);
}

.gallery-design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--space-lg);
}

.gallery-design-card {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.gallery-design-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-gold);
}

/* Image Slider Carousel */
.gallery-card-carousel {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-silver);
  border-bottom: var(--border-light);
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-design-card:hover .carousel-slide img {
  transform: scale(1.03);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 26, 26, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 5;
}

.gallery-card-carousel:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(245, 184, 0, 0.35);
}

.prev-arrow { left: 12px; }
.next-arrow { right: 12px; }

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 10px;
  backdrop-filter: blur(2px);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-dot.active {
  width: 22px;
  background: var(--color-gold);
}

/* Category Badge Tag Overlayed on Carousel */
.gallery-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 6;
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--color-gold-light);
  border: 1px solid rgba(245, 184, 0, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.gallery-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gallery-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.gallery-design-card:hover .gallery-card-title {
  color: var(--color-gold-dark);
}

.gallery-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

.gallery-card-actions {
  display: flex;
  gap: var(--space-sm);
}

.gallery-card-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 10px 16px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}

/* Design Details Sidebar Drawer */
.design-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.design-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.design-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-left: 4px solid var(--color-gold);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
  overflow-y: auto;
}

.design-drawer-overlay.open .design-drawer-content {
  transform: translateX(0);
}

.design-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 20px;
  color: var(--color-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.design-drawer-close:hover {
  background: var(--color-dark);
  color: #fff;
  transform: rotate(90deg);
}

.design-drawer-body {
  margin-top: var(--space-sm);
}

.design-drawer-tag {
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-gold-dark);
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.design-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
  line-height: 1.35;
}

.design-drawer-divider {
  height: 2px;
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: var(--space-md);
}

.design-drawer-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.design-drawer-features-section h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.design-drawer-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-xl);
}

.design-drawer-features li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 10px;
  line-height: 1.6;
}

.design-drawer-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-gold-dark);
  font-weight: 900;
  font-size: 14px;
}

/* FAQ Collapsible Accordion Styles */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item.open {
  border-color: rgba(245, 184, 0, 0.3);
  box-shadow: 0 10px 25px rgba(245, 184, 0, 0.05);
}

.faq-item.open::before {
  transform: scaleY(1);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-dark);
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-trigger:hover {
  background: rgba(0, 0, 0, 0.01);
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-gold-dark);
  transition: transform 0.3s ease;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 var(--space-lg);
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.faq-item.open .faq-panel {
  padding-bottom: var(--space-md);
  max-height: 250px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Tab Filter Card Animation */
.animate-fade-in {
  animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

/* ── Premium Contact Page ───────────────────────────────── */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.contact-card-premium {
  background: #fff;
  border: 1px solid rgba(245, 184, 0, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.contact-card-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}
.contact-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(245, 184, 0, 0.08);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-info-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  background: rgba(245, 184, 0, 0.1);
  border: 1px solid rgba(245, 184, 0, 0.3);
  border-radius: 50%;
  color: var(--color-gold-dark);
  font-size: 1.25rem;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.contact-info-item:hover .contact-info-icon-wrapper {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: scale(1.1);
}

.contact-info-text h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--color-text-primary);
}
.contact-info-text p, .contact-info-text a {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}
.contact-info-text a:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

/* WhatsApp Live Chat Card */
.contact-whatsapp-card {
  background: var(--color-dark);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-nav);
  margin-top: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-whatsapp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}
.contact-whatsapp-card::before {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
  top: -50px; right: -50px;
  pointer-events: none;
}
.contact-whatsapp-card .status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #25D366;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-md);
}
.contact-whatsapp-card .status-dot {
  width: 8px; height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25D366;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.contact-whatsapp-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.contact-whatsapp-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

/* Premium Form Card */
.contact-form-premium {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-form-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}
.contact-form-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--color-dark);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.form-title-wrapper {
  margin-bottom: var(--space-lg);
}
.form-title-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
}
.form-title-wrapper p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

.form-group-premium {
  margin-bottom: var(--space-md);
  position: relative;
}
.form-group-premium .form-label-premium {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.form-control-premium {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  background: var(--color-warm-white);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control-premium:focus {
  border-color: var(--color-gold);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(245, 184, 0, 0.12);
}
.form-group-premium:focus-within .form-label-premium {
  color: var(--color-gold-dark);
}
textarea.form-control-premium {
  resize: vertical;
  min-height: 140px;
}

.btn-submit-premium {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-md);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border: none;
  color: var(--color-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-submit-premium:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.3);
  transform: translateY(-2px);
  color: var(--color-dark);
}
.btn-submit-premium:active {
  transform: translateY(0);
}

/* Premium Map Container */
.premium-map-section {
  position: relative;
  height: 480px;
  width: 100%;
  overflow: hidden;
  border-top: 4px solid var(--color-gold);
  background: var(--color-dark);
}
.premium-map-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, transparent 15%, transparent 85%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}
.premium-map-iframe {
  filter: grayscale(1) invert(0.9) contrast(1.15) brightness(0.95);
  border: 0;
  width: 100%;
  height: 100%;
  transition: filter 0.5s ease;
}
.premium-map-section:hover .premium-map-iframe {
  filter: grayscale(0.2) invert(0) contrast(1) brightness(1);
}

/* ═══════════════════════════════════════════════════════════
   LEAD-GEN POPUP (DesignCafe-style) — Admin Controlled
   ═══════════════════════════════════════════════════════════ */
.leadgen-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.leadgen-overlay.is-open {
  opacity: 1; pointer-events: auto;
}
.leadgen-popup {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 860px;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  position: relative;
  transform: scale(0.92) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.leadgen-overlay.is-open .leadgen-popup {
  transform: scale(1) translateY(0);
}

/* Close button */
.leadgen-close {
  position: absolute; top: 14px; right: 16px; z-index: 10;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.92);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px; line-height: 1;
  color: var(--color-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}
.leadgen-close:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: rotate(90deg);
}

/* LEFT panel — Image + offer badge */
.leadgen-left {
  position: relative;
  background: var(--color-charcoal);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 480px;
}
.leadgen-left-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.leadgen-popup:hover .leadgen-left-bg {
  transform: scale(1.04);
}
.leadgen-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.15) 0%, rgba(26,26,26,0.82) 100%);
}
.leadgen-left-content {
  position: relative; z-index: 2;
  padding: 28px;
}
.leadgen-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-gold);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.leadgen-offer-badge::before {
  content: '★';
  font-size: 12px;
}
.leadgen-offer-heading {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: #fff; line-height: 1.15;
  margin-bottom: 6px;
}
.leadgen-offer-heading span {
  color: var(--color-gold);
}
.leadgen-offer-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  line-height: 1.5;
}
.leadgen-trust-badges {
  display: flex; flex-direction: column; gap: 8px;
}
.leadgen-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.leadgen-trust-icon {
  width: 30px; height: 30px;
  background: rgba(245,184,0,0.18);
  border: 1px solid rgba(245,184,0,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* RIGHT panel — Form */
.leadgen-right {
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  background: #fff;
  overflow-y: auto;
}
.leadgen-brand-logo {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.leadgen-brand-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900; font-size: 14px;
  color: var(--color-dark);
}
.leadgen-brand-name {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 800;
  color: var(--color-dark);
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.leadgen-form-heading {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 4px;
}
.leadgen-form-heading span { color: var(--color-gold-dark); }
.leadgen-form-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 18px;
}

/* Property type pill buttons */
.leadgen-property-label {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  display: block;
}
.leadgen-prop-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.leadgen-prop-pill {
  padding: 7px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 600;
  color: var(--color-text-primary);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.leadgen-prop-pill:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}
.leadgen-prop-pill.selected {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
  font-weight: 700;
}

/* Form groups */
.leadgen-field {
  position: relative;
  margin-bottom: 12px;
}
.leadgen-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.10);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-primary);
  background: #fafafa;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.leadgen-input:focus {
  border-color: var(--color-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245,184,0,0.14);
}
.leadgen-input::placeholder { color: rgba(0,0,0,0.35); }

/* Phone row with country code */
.leadgen-phone-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
}
.leadgen-country-code {
  padding: 12px 10px;
  border: 1.5px solid rgba(0,0,0,0.10);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600;
  color: var(--color-text-primary);
  background: #fafafa;
  outline: none;
  transition: border-color 0.25s ease;
}
.leadgen-country-code:focus { border-color: var(--color-gold); }

/* WhatsApp checkbox row */
.leadgen-whatsapp-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  cursor: pointer;
}
.leadgen-whatsapp-row input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--color-gold);
  cursor: pointer;
  flex-shrink: 0;
}
.leadgen-whatsapp-row span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}
.leadgen-whatsapp-row .wa-icon {
  color: #25D366; font-size: 14px;
}

/* Submit button */
.leadgen-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.leadgen-submit-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,184,0,0.25), transparent);
  transition: left 0.5s ease;
}
.leadgen-submit-btn:hover {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,184,0,0.3);
}
.leadgen-submit-btn:hover::after { left: 100%; }

.leadgen-privacy-text {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.leadgen-privacy-text a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

/* Success state in popup */
.leadgen-success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 28px;
  flex: 1;
}
.leadgen-success-screen.active { display: flex; }
.leadgen-success-icon {
  width: 72px; height: 72px;
  background: rgba(245,184,0,0.12);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--color-gold);
  margin-bottom: 20px;
}
.leadgen-success-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.leadgen-success-msg {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive: stack on mobile */
@media (max-width: 700px) {
  .leadgen-popup {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .leadgen-left { min-height: 200px; }
  .leadgen-left-bg { min-height: 200px; }
  .leadgen-offer-heading { font-size: 1.35rem; }
}
@media (max-width: 480px) {
  .leadgen-right { padding: 22px 18px 18px; }
  .leadgen-prop-pills { gap: 6px; }
}

/* ── About Page Responsive Layouts ── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}
.about-stats-grid {
  background: var(--color-charcoal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: var(--space-md);
}
.about-location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: start;
}
.about-map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-hover);
}
.about-location-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 184, 0, 0.15);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  height: 100%;
}

@media (max-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .about-location-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .about-location-details {
    height: auto;
  }
}
@media (max-width: 768px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-lg) var(--space-sm);
  }
}
@media (max-width: 480px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ── Design Details Drawer Mobile Fix ── */
@media (max-width: 576px) {
  .design-drawer-content {
    padding: 60px var(--space-md) var(--space-md) !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   ✦ NEXUS PLY & DECOR — ULTRA LUXURY DESIGN SYSTEM v2.0 ✦
   Supreme Premium Refinements — The Gold Standard
   ══════════════════════════════════════════════════════════════ */

/* ── Enhanced CSS Variables (Luxury Palette Extension) ─────── */
:root {
  --color-gold-shimmer: #FFE566;
  --color-platinum:     #E8E8E8;
  --color-obsidian:     #0A0A0A;
  --gradient-gold:      linear-gradient(135deg, #FFD03D 0%, #F5B800 40%, #D9A300 100%);
  --gradient-dark:      linear-gradient(180deg, #181818 0%, #0d0d0d 100%);
  --gradient-royal:     linear-gradient(135deg, #1A1A1A 0%, #2B2B2B 50%, #1A1A1A 100%);
  --glow-gold:          0 0 30px rgba(245, 184, 0, 0.25), 0 0 60px rgba(245, 184, 0, 0.1);
  --glow-gold-intense:  0 0 20px rgba(245, 184, 0, 0.5), 0 0 40px rgba(245, 184, 0, 0.25);
  --border-gold:        1px solid rgba(245, 184, 0, 0.3);
  --border-gold-glow:   1px solid rgba(245, 184, 0, 0.6);
}

/* ── Gold Particle Canvas ───────────────────────────────────── */
#gold-particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ── Luxury Hero Radial Mesh (enhanced) ─────────────────────── */
.hero-radial-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 15% 25%, rgba(245, 184, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(245, 184, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 214, 61, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* ── Animated Gold Divider (luxury line) ────────────────────── */
.gold-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold-shimmer) 30%, var(--color-gold) 50%, var(--color-gold-shimmer) 70%, transparent 100%);
  margin: var(--space-md) auto;
  position: relative;
  box-shadow: 0 0 12px rgba(245, 184, 0, 0.6), 0 0 24px rgba(245, 184, 0, 0.3);
  animation: gold-line-glow 3s ease-in-out infinite alternate;
}
.gold-line::before {
  content: '✦';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  color: var(--color-gold);
  background: inherit;
  background: var(--color-dark, #1A1A1A);
  padding: 0 6px;
  line-height: 1;
  text-shadow: 0 0 8px var(--color-gold);
}
@keyframes gold-line-glow {
  0%   { box-shadow: 0 0 8px rgba(245, 184, 0, 0.4), 0 0 16px rgba(245, 184, 0, 0.2); }
  100% { box-shadow: 0 0 18px rgba(245, 184, 0, 0.7), 0 0 36px rgba(245, 184, 0, 0.35); }
}

/* ── Luxury H1 Text Gradient ────────────────────────────────── */
.hero-h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(38px, 5.5vw, 68px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg, 
    #ffffff 0%, 
    #f5f5f0 25%,
    #E8E8E8 50%,
    #ffffff 75%,
    #D0D0D0 100%
  ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  margin-bottom: 24px !important;
}
.hero-h1 span {
  background: linear-gradient(135deg, var(--color-gold-shimmer) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 2px 12px rgba(245, 184, 0, 0.5)) !important;
}

/* ── Section Heading Luxury Upgrade ─────────────────────────── */
.h2-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}
.section--dark .h2-heading,
.section--dark h2 {
  background: linear-gradient(135deg, #ffffff 0%, #E0E0E0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Ultra Premium Button Upgrades ──────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-shimmer) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%) !important;
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 220, 60, 0.3) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  letter-spacing: 1.5px !important;
}
.btn-primary:hover {
  box-shadow: 0 12px 35px rgba(245, 184, 0, 0.55), 0 4px 12px rgba(245, 184, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) scale(1.02) !important;
}
.btn-primary:active {
  transform: translateY(0) scale(0.99) !important;
  box-shadow: 0 4px 12px rgba(245, 184, 0, 0.3) !important;
}
.btn-secondary {
  background: transparent !important;
  border: 1.5px solid var(--color-gold) !important;
  color: var(--color-gold) !important;
  letter-spacing: 1.5px !important;
  position: relative;
  overflow: hidden;
}
.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(245, 184, 0, 0.06) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-secondary:hover::before { opacity: 1; }
.btn-secondary:hover {
  border-color: var(--color-gold-shimmer) !important;
  box-shadow: 0 0 20px rgba(245, 184, 0, 0.25), inset 0 0 15px rgba(245, 184, 0, 0.06) !important;
  color: var(--color-gold-shimmer) !important;
}

/* ── Luxury Navbar Upgrade ──────────────────────────────────── */
.navbar {
  background: rgba(10, 10, 10, 0.75) !important;
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
  border-bottom: 1px solid rgba(245, 184, 0, 0.08) !important;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95) !important;
  border-bottom: 1px solid rgba(245, 184, 0, 0.25) !important;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(245, 184, 0, 0.1) !important;
}
.nav-links a {
  font-size: 12px !important;
  letter-spacing: 2px !important;
}
.nav-links a::after {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent) !important;
  box-shadow: 0 0 8px var(--color-gold) !important;
}
.nav-logo-icon {
  background: linear-gradient(135deg, var(--color-gold-shimmer) 0%, var(--color-gold) 100%) !important;
  box-shadow: 0 0 20px rgba(245, 184, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* ── Premium Card Upgrades ──────────────────────────────────── */
.category-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.category-card:hover {
  border-color: rgba(245, 184, 0, 0.5) !important;
  box-shadow: 0 20px 50px rgba(245, 184, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(245, 184, 0, 0.15) !important;
  transform: translateY(-10px) !important;
}
.product-card {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.product-card:hover {
  border-color: rgba(245, 184, 0, 0.5) !important;
  box-shadow: 0 24px 60px rgba(245, 184, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(245, 184, 0, 0.1) !important;
  transform: translateY(-10px) !important;
}
.blog-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.blog-card:hover {
  border-color: rgba(245, 184, 0, 0.4) !important;
  box-shadow: 0 24px 60px rgba(245, 184, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.06) !important;
  transform: translateY(-10px) !important;
}

/* ── Glassmorphic Testimonial Cards (Ultra) ─────────────────── */
.testimonial-card {
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 15px 40px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.testimonial-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(245, 184, 0, 0.35) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(245, 184, 0, 0.08) !important;
}
.testimonial-card::before {
  opacity: 0.6 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, var(--color-gold-shimmer), transparent) !important;
}
.testimonial-card:hover::before { opacity: 1 !important; }

/* ── WhatsApp Float Button (luxury glow) ────────────────────── */
.whatsapp-float {
  background: linear-gradient(135deg, #2EE06E 0%, #25D366 100%) !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5) !important;
  animation: wa-premium-pulse 2.5s ease-in-out infinite !important;
}
@keyframes wa-premium-pulse {
  0%   { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%  { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── Luxury CTA Banner Upgrade ──────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 50%, #0e0e0e 100%) !important;
  border-top: 1px solid rgba(245, 184, 0, 0.2) !important;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 30%, var(--color-gold-shimmer) 50%, var(--color-gold) 70%, transparent 100%);
  box-shadow: 0 0 20px rgba(245, 184, 0, 0.5);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(245, 184, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  background: linear-gradient(135deg, #ffffff 0%, #E8E8E8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* ── Luxury Footer Upgrade ──────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #111111 0%, #0A0A0A 60%, #080808 100%) !important;
  border-top: 1px solid transparent !important;
  background-clip: padding-box !important;
  position: relative;
}
.footer::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent 0%, rgba(245,184,0,0.1) 20%, var(--color-gold) 50%, rgba(245,184,0,0.1) 80%, transparent 100%) !important;
  box-shadow: 0 0 30px rgba(245, 184, 0, 0.3) !important;
}
.footer-heading {
  border-bottom: 1px solid rgba(245, 184, 0, 0.4) !important;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 40px; height: 2px;
  background: var(--color-gold);
  box-shadow: 0 0 8px rgba(245, 184, 0, 0.6);
  border-radius: 2px;
}
.footer-links a:hover {
  color: var(--color-gold-shimmer) !important;
  text-shadow: 0 0 12px rgba(245, 184, 0, 0.4) !important;
}
.social-btn:hover {
  box-shadow: 0 0 20px rgba(245, 184, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* ── Animated Number Counter ────────────────────────────────── */
.counter-anim {
  display: inline-block;
  transition: all 0.3s ease;
}
[data-count] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-count].counted {
  opacity: 1;
  transform: translateY(0);
}

/* ── Premium Scroll Reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Staggered Animation Delays ─────────────────────────────── */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* ── Section Label (eyebrow) Premium Style ──────────────────── */
.label, .eyebrow {
  font-family: var(--font-heading) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  color: var(--color-gold) !important;
  display: inline-block !important;
  position: relative !important;
  padding: 0 16px !important;
}
.label::before, .label::after {
  content: '—';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  opacity: 0.5;
  font-size: 8px;
  color: var(--color-gold);
  letter-spacing: 0;
}
.label::before { right: 100%; margin-right: 4px; }
.label::after  { left: 100%; margin-left: 4px; }

/* ── Premium Category Icon Upgrade ─────────────────────────── */
.category-icon-wrapper {
  width: 72px !important;
  height: 72px !important;
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.08) 0%, rgba(245, 184, 0, 0.04) 100%) !important;
  border: 1px solid rgba(245, 184, 0, 0.2) !important;
  border-radius: 18px !important;
  font-size: 30px !important;
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.category-card:hover .category-icon-wrapper {
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.2) 0%, rgba(245, 184, 0, 0.1) 100%) !important;
  border-color: rgba(245, 184, 0, 0.5) !important;
  box-shadow: 0 8px 25px rgba(245, 184, 0, 0.2), 0 0 0 4px rgba(245, 184, 0, 0.06) !important;
  transform: scale(1.1) rotate(5deg) !important;
}

/* ── Product Status Badge (Premium) ─────────────────────────── */
.product-status-badge {
  background: linear-gradient(135deg, var(--color-gold-shimmer) 0%, var(--color-gold) 100%) !important;
  font-size: 9px !important;
  letter-spacing: 1.5px !important;
  box-shadow: 0 4px 12px rgba(245, 184, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* ── Showroom Card Premium Upgrade ──────────────────────────── */
.showroom-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%) !important;
  border-left: 3px solid var(--color-gold) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(245, 184, 0, 0.1) !important;
  position: relative;
  overflow: hidden;
}
.showroom-card::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at top right, rgba(245, 184, 0, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.showroom-map-container {
  border: 1px solid rgba(245, 184, 0, 0.2) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

/* ── Gallery Tile Premium Upgrade ───────────────────────────── */
.gallery-asymmetric-tile {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(245, 184, 0, 0.08) !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.gallery-asymmetric-tile:hover {
  border-color: rgba(245, 184, 0, 0.4) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 184, 0, 0.12) !important;
  transform: scale(1.02) !important;
  z-index: 2;
  position: relative;
}
.gallery-asymmetric-tile::before {
  content: '';
  position: absolute;
  inset: 0; z-index: 3;
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery-asymmetric-tile:hover::before { opacity: 1; }

/* ── Why Point Cards Premium ────────────────────────────────── */
.why-point-item {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  position: relative;
  overflow: hidden;
}
.why-point-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-point-item:hover::before { transform: scaleX(1); }
.why-point-item:hover {
  border-color: rgba(245, 184, 0, 0.25) !important;
  box-shadow: 0 16px 40px rgba(245, 184, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04) !important;
  transform: translateY(-5px) !important;
}

/* ── Product Category Card Bottom Shimmer ───────────────────── */
.category-card::after {
  height: 2px !important;
  background: linear-gradient(90deg, transparent, var(--color-gold-shimmer) 50%, transparent) !important;
  box-shadow: 0 0 10px rgba(245, 184, 0, 0.5) !important;
}

/* ── Luxury Scroll-To-Top ───────────────────────────────────── */
.scroll-to-top {
  background: rgba(26, 26, 26, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(245, 184, 0, 0.25) !important;
}
.scroll-to-top:hover {
  background: var(--gradient-gold) !important;
  border-color: transparent !important;
  box-shadow: 0 8px 25px rgba(245, 184, 0, 0.4) !important;
}

/* ── Premium Enquiry Modal ──────────────────────────────────── */
.modal-window {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.98) 0%, rgba(20, 20, 20, 0.99) 100%) !important;
  border: 1px solid rgba(245, 184, 0, 0.2) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(245, 184, 0, 0.05) !important;
}
.modal-window::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* ── Luxury Cursor Trail Effect ─────────────────────────────── */
.cursor-trail {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.6) 0%, transparent 70%);
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  z-index: 9998;
  mix-blend-mode: screen;
  animation: cursor-fade 0.6s ease-out forwards;
}
@keyframes cursor-fade {
  0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(2.5); }
}

/* ── Page Loading Bar ───────────────────────────────────────── */
#luxury-loader-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-shimmer), var(--color-gold));
  z-index: 99999;
  box-shadow: 0 0 10px rgba(245, 184, 0, 0.7);
  transition: width 0.4s ease, opacity 0.4s ease;
  width: 0;
}

/* ── Hero Bottom Floating Badge Strip ───────────────────────── */
.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.hero-trust-item .trust-icon {
  font-size: 16px;
}
.hero-trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ── Luxury Floating Price/Offer Banner ─────────────────────── */
.luxury-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.15) 0%, rgba(245, 184, 0, 0.08) 100%);
  border: 1px solid rgba(245, 184, 0, 0.3);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(245, 184, 0, 0.1);
  animation: badge-glow 3s ease-in-out infinite alternate;
}
@keyframes badge-glow {
  0%   { box-shadow: 0 0 10px rgba(245, 184, 0, 0.1); border-color: rgba(245, 184, 0, 0.25); }
  100% { box-shadow: 0 0 25px rgba(245, 184, 0, 0.2); border-color: rgba(245, 184, 0, 0.5); }
}

/* ── Section divider with shimmer ───────────────────────────── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 184, 0, 0.15) 30%, rgba(245, 184, 0, 0.3) 50%, rgba(245, 184, 0, 0.15) 70%, transparent 100%);
  margin: 0;
  position: relative;
  overflow: hidden;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 220, 80, 0.7), transparent);
  animation: divider-shimmer 4s ease-in-out infinite;
}
@keyframes divider-shimmer {
  0%   { left: -60%; }
  100% { left: 160%; }
}

/* ── Floating Contact CTA Pill ──────────────────────────────── */
.floating-cta-pill {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 997;
  background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
  border: 1px solid rgba(245, 184, 0, 0.3);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  opacity: 0;
  transform: translateX(-20px);
}
.floating-cta-pill.visible {
  opacity: 1;
  transform: translateX(0);
}
.floating-cta-pill:hover {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(245, 184, 0, 0.4);
  transform: translateX(0) scale(1.03);
}
.floating-cta-pill .pill-dot {
  width: 6px; height: 6px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(37, 211, 102, 0.8);
  animation: dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

/* ── Animation Library ──────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes goldSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Luxury Section Transitions ─────────────────────────────── */
.section {
  position: relative;
}
.section--dark {
  background: linear-gradient(180deg, #1f1f1f 0%, #222222 100%) !important;
}

/* ── Premium Hero Badge (floating animated) ─────────────────── */
.hero-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(245, 184, 0, 0.1);
  border: 1px solid rgba(245, 184, 0, 0.3);
  border-radius: 50px;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: badge-glow 3s ease-in-out infinite alternate;
}
.hero-badge-animated .badge-dot {
  width: 6px; height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-gold);
  animation: dot-pulse 2s ease-in-out infinite;
}

/* ── Keyboard focus visible (accessibility) ─────────────────── */
*:focus-visible {
  outline: 2px solid var(--color-gold) !important;
  outline-offset: 3px !important;
}

/* ── Motion reduction support ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .gold-line, .gold-line::after,
  .section-divider::after,
  .floating-cta-pill,
  .hero-badge-animated,
  .luxury-eyebrow-badge,
  .cursor-trail {
    animation: none !important;
    transition: none !important;
  }
}

/* ── Mobile Luxury Responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .floating-cta-pill {
    display: none;
  }
  .hero-trust-strip {
    gap: 12px;
    padding: 12px 16px;
  }
  .hero-trust-divider {
    display: none;
  }
}

/* ── Hamburger Menu Animation ── */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── About Value Cards (Luxury Light Theme) ── */
.about-value-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-value-card:hover {
  border-color: rgba(245, 184, 0, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(245, 184, 0, 0.08), 0 0 0 1px rgba(245, 184, 0, 0.1);
}
.about-value-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.about-value-card:hover::before {
  transform: scaleX(1);
}
.about-value-icon {
  width: 72px; height: 72px;
  background: rgba(245, 184, 0, 0.08);
  border: 1px solid rgba(245, 184, 0, 0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 32px;
  transition: all 0.4s ease;
  color: var(--color-gold-dark);
}
.about-value-card:hover .about-value-icon {
  background: var(--color-gold);
  color: #fff;
  transform: rotate(15deg);
  box-shadow: 0 8px 20px rgba(245, 184, 0, 0.25);
}
.about-value-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}
.about-value-card p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── About Hero Premium Image Wrapper ── */
.about-hero-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 184, 0, 0.25);
  aspect-ratio: 4/5;
  transition: all var(--transition);
}
.about-hero-img-wrapper:hover {
  border-color: var(--color-gold);
  box-shadow: 0 20px 50px rgba(245, 184, 0, 0.15);
}

/* ── Blog Featured Card (Luxury & Responsive) ── */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: var(--space-2xl);
  align-items: center;
  transition: all var(--transition);
}
.blog-featured-card:hover {
  border-color: rgba(245, 184, 0, 0.35);
  box-shadow: 0 24px 60px rgba(245, 184, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
}
.blog-featured-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-silver);
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blog-featured-card:hover .blog-featured-img img {
  transform: scale(1.03);
}
.blog-featured-content {
  padding: var(--space-xl);
}
.blog-featured-eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: var(--space-sm);
}
.blog-featured-cat {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-featured-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: rgba(0, 0, 0, 0.04);
  padding: 2px 8px;
  border-radius: 4px;
}
.blog-featured-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
  line-height: 1.35;
}
.blog-featured-title a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition);
}
.blog-featured-title a:hover {
  color: var(--color-gold-dark);
}
.blog-featured-excerpt {
  margin-bottom: var(--space-lg);
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.blog-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: var(--border-light);
  padding-top: var(--space-md);
}
.blog-featured-date {
  font-size: 12px;
  color: var(--color-text-secondary);
}

@media (max-width: 992px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .blog-featured-content {
    padding: var(--space-lg);
  }
}

/* ── Blog Detail Layout (Responsive) ── */
.blog-detail-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-xl);
  align-items: start;
}
.blog-detail-article {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.blog-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.blog-detail-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.blog-detail-meta-cat {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--color-warm-white);
  padding: 4px 10px;
  border-radius: 4px;
}
.blog-detail-meta-text {
  font-size: 12px;
  color: var(--color-text-secondary);
}
.blog-detail-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  background: var(--color-silver);
  aspect-ratio: 16/9;
}
.blog-detail-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .blog-detail-article {
    padding: var(--space-lg);
  }
}

/* ── Luxury Category Grid Upgrades ── */
.categories-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: var(--space-lg) !important;
  justify-content: center !important;
}
.category-card {
  flex: 1 1 calc(25% - var(--space-lg)) !important;
  max-width: calc(25% - var(--space-lg)) !important;
  min-width: 260px !important;
  background: linear-gradient(135deg, #ffffff 0%, #fcfbf7 100%) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.22) !important;
  border-radius: 20px !important;
  padding: 32px 24px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01) !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  text-decoration: none !important;
}
.category-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: -150% !important;
  width: 100% !important; height: 100% !important;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.65) 50%, 
    transparent 100%
  ) !important;
  transform: skewX(-25deg) !important;
  transition: left 0.85s ease !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
.category-card:hover::before {
  left: 150% !important;
}
.category-icon-wrapper {
  width: 72px !important;
  height: 72px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1.5px solid rgba(245, 184, 0, 0.35) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), inset 0 2px 5px rgba(255, 255, 255, 0.8) !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  margin-bottom: var(--space-md) !important;
  z-index: 2 !important;
}
.category-card:hover .category-icon-wrapper {
  border-color: var(--color-gold) !important;
  background: var(--gradient-gold) !important;
  box-shadow: 0 12px 30px rgba(245, 184, 0, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-4px) scale(1.05) rotate(5deg) !important;
}
.category-icon-wrapper svg {
  width: 34px !important;
  height: 34px !important;
  stroke: var(--color-gold-dark) !important;
  transition: all 0.4s ease !important;
}
.category-card:hover .category-icon-wrapper svg {
  stroke: #ffffff !important;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.5)) !important;
}
.category-title {
  font-family: var(--font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: var(--color-dark) !important;
  margin-top: 12px !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.01em !important;
  transition: color var(--transition) !important;
  z-index: 2 !important;
}
.category-card:hover .category-title {
  color: var(--color-gold-dark) !important;
}
.category-card-desc {
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  color: var(--color-text-secondary) !important;
  line-height: 1.70 !important;
  margin-bottom: 20px !important;
  z-index: 2 !important;
}
.category-card-action {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--font-heading) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: var(--color-gold-dark) !important;
  opacity: 0.60 !important;
  transform: translateX(0) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  margin-top: auto !important;
  z-index: 2 !important;
}
.category-card-action svg {
  width: 14px !important;
  height: 14px !important;
  stroke: var(--color-gold-dark) !important;
  stroke-width: 2.5 !important;
  transition: transform 0.3s ease !important;
}
.category-card:hover .category-card-action {
  opacity: 1 !important;
  transform: translateX(6px) !important;
}
.category-card:hover .category-card-action svg {
  transform: translateX(4px) !important;
}
.category-card:hover {
  border-color: var(--color-gold) !important;
  box-shadow: 0 20px 45px rgba(245, 184, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(245, 184, 0, 0.2) !important;
  transform: translateY(-8px) !important;
}

@media (max-width: 1024px) {
  .category-card {
    flex: 1 1 calc(50% - var(--space-lg)) !important;
    max-width: calc(50% - var(--space-lg)) !important;
  }
}
@media (max-width: 768px) {
  .category-card {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
}
/* ── Video Showcase Gallery Layout ───────────────────────── */
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: var(--space-xl);
}

.video-card {
  background: linear-gradient(135deg, #ffffff 0%, #fcfbf7 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(212, 175, 55, 0.05);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.video-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.75s ease;
  z-index: 2;
  pointer-events: none;
}

.video-card:hover {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08), 0 1px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-8px);
}

.video-card:hover::before {
  left: 150%;
}

.video-thumbnail-container {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #000;
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.15);
}

.video-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.88;
}

.video-card:hover .video-thumbnail-img {
  transform: scale(1.05);
  opacity: 0.95;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.video-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-gold-dark);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px; /* offset play triangle alignment */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid var(--color-gold);
}

.video-card:hover .video-play-btn {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.video-source-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 3;
}

.video-source-tag.youtube {
  border-color: rgba(255, 0, 0, 0.4);
  color: #ff3333;
}

.video-source-tag.facebook {
  border-color: rgba(24, 119, 242, 0.4);
  color: #1877f2;
}

.video-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
  line-height: 1.4;
}

.video-card-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* ── Video Lightbox Popup ──────────────────────────────── */
.video-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-lightbox-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.video-lightbox-content {
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  max-height: 80vh;
  position: relative;
  background: #000;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.15);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-lightbox-content.vertical {
  max-width: min(90%, 420px);
  aspect-ratio: 9/16;
  max-height: 80vh;
}

.video-lightbox-overlay.open .video-lightbox-content {
  transform: scale(1);
}

.video-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2010;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
}

.video-lightbox-close:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.video-lightbox-player {
  width: 100%;
  height: 100%;
}

.video-lightbox-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Custom Image Logo Styling */
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 10px rgba(245, 184, 0, 0.25);
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.footer-brand-logo-img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}
.footer-brand-logo-wrapper:hover .footer-brand-logo-img {
  transform: scale(1.05);
}

.leadgen-brand-img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

/* About Page History Grid Styling */
.about-history-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-xl);
  align-items: start;
  background: #fff;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.founder-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  border: 1px solid rgba(245, 184, 0, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.founder-img-frame {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  border: 2px solid var(--color-gold);
  box-shadow: 0 8px 20px rgba(245, 184, 0, 0.2);
}

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

.founder-card:hover .founder-img {
  transform: scale(1.06);
}

.founder-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.founder-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding-bottom: var(--space-xs);
}

.founder-partners {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.founder-partners strong {
  color: var(--color-crimson);
}

@media (max-width: 991px) {
  .about-history-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg);
  }
  .founder-card {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}
