/* ==========================================================================
   RAHMAN GARMENTS - LUXURY WHOLESALE SHOWCASE STYLESHEET
   Established 1983 | MRN Nagar, Kallakurichi, Tamil Nadu
   ========================================================================== */

/* ----------------- CSS Custom Properties (Theme Tokens) ----------------- */
:root {
  --bg-black: #08080a;
  --bg-primary: #0d0d12;
  --bg-secondary: #13131b;
  --bg-card: #181822;
  --bg-card-hover: #1e1e2c;
  --bg-glass: rgba(20, 20, 30, 0.75);
  --bg-glass-elevated: rgba(28, 28, 42, 0.85);

  --gold-primary: #d4af37;
  --gold-light: #f5df88;
  --gold-bright: #ffe699;
  --gold-deep: #aa7c11;
  --gold-dark: #7a5808;
  --gold-gradient: linear-gradient(135deg, #f7e199 0%, #d4af37 50%, #9e7514 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(247, 225, 153, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  --gold-border: rgba(212, 175, 55, 0.25);
  --gold-border-bright: rgba(212, 175, 55, 0.6);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.25);
  --gold-glow-lg: 0 10px 40px rgba(212, 175, 55, 0.35);

  --text-primary: #f8f8fa;
  --text-secondary: #b5b5c4;
  --text-muted: #79798c;
  --text-gold: #e5c358;

  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-subheading: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.5);
  --shadow-elevation: 0 20px 45px rgba(0, 0, 0, 0.7);

  --container-max: 1240px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-primary);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.035) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(212, 175, 55, 0.03) 0%, transparent 45%),
    linear-gradient(to bottom, #08080a 0%, #0d0d12 100%);
  min-height: 100vh;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
}

/* ----------------- Typography Utility ----------------- */
.font-serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--gold-primary);
}

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-border);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
}

/* ----------------- Royal Motifs & Dividers ----------------- */
.royal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 1.25rem auto 2.5rem;
  width: 100%;
  max-width: 320px;
}

.royal-divider::before,
.royal-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.crown-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ----------------- Layout & Containers ----------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-spacing {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}

@media (max-width: 768px) {
  .section-spacing {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

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

/* ----------------- Buttons ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-medium);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0b0f;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
  filter: brightness(1.06);
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-light);
  border-color: var(--gold-border-bright);
  backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.16);
  color: #ffffff;
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* ==========================================================================
   1. HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-medium);
  background: rgba(8, 8, 10, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.site-header.scrolled {
  background: rgba(8, 8, 10, 0.94);
  border-bottom-color: rgba(212, 175, 55, 0.24);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  height: 74px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  padding: 2px;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  background: #000;
  transition: transform var(--transition-fast);
}

.brand-badge:hover .brand-logo-img {
  transform: scale(1.06);
}

.brand-info {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  font-weight: 600;
  white-space: nowrap;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-medium);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: 3.5rem;
}

.btn-header-call {
  padding: 11px 24px;
  gap: 10px;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  line-height: 1;
}

/* Mobile Drawer */
@media (max-width: 991px) {
  .nav-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: #0f0f16;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    border-left: 1px solid var(--gold-border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    transition: right var(--transition-medium);
    overflow-y: auto;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.05rem;
    width: 100%;
    padding: 8px 0;
  }

  .header-actions .btn-header-call {
    display: none;
  }
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 5rem;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.09) 0%, rgba(8, 8, 10, 0.96) 70%),
    radial-gradient(circle at 80% 20%, rgba(170, 124, 17, 0.08) 0%, transparent 50%);
}

.hero-glow-orb {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero-badge-wrap {
  margin-bottom: 1.5rem;
}

.hero-logo-box {
  width: 165px;
  height: 165px;
  margin: 0 auto 1.5rem;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08080c;
  border: 1.5px solid var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.hero-logo-box:hover {
  transform: scale(1.04);
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.35);
}

.hero-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 2.25rem;
  line-height: 1.5;
}

.hero-subheadline span {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(20, 20, 28, 0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-card);
  max-width: 820px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.trust-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.trust-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.2;
}

.trust-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero-trust-bar {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1rem;
    text-align: center;
  }
  .trust-item {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   3. ABOUT / OUR LEGACY SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.founder-card-wrap {
  position: relative;
  text-align: center;
}

.founder-frame {
  position: relative;
  display: inline-block;
  padding: 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.35) 0%, rgba(19, 19, 27, 0.8) 50%, rgba(170, 124, 17, 0.4) 100%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), var(--gold-glow);
}

.founder-img {
  width: 100%;
  max-width: 380px;
  border-radius: calc(var(--radius-lg) - 6px);
  object-fit: cover;
  display: block;
}

.founder-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 14, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border-bright);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

.founder-caption {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.8px;
}

.about-text-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.about-story {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.about-highlight {
  padding: 1.25rem 1.5rem;
  background: var(--gold-gradient-soft);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 2.5rem;
  font-style: italic;
  color: #e5e5eb;
}

/* Stats Bar */
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding: 2.5rem 1.5rem;
  background: rgba(19, 19, 27, 0.8);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(212, 175, 55, 0.2);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 540px) {
  .stats-bar-grid {
    grid-template-columns: 1fr;
  }
  .stat-item::after {
    display: none !important;
  }
}

/* ==========================================================================
   4. PRODUCT RANGE SECTION (SHOWCASE ONLY - NO PRICES)
   ========================================================================== */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-bright);
  box-shadow: var(--gold-glow-lg), 0 16px 36px rgba(0, 0, 0, 0.7);
  background: var(--bg-card-hover);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #09090c;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.07);
}

.showcase-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(8, 8, 12, 0.85);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.product-source-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.source-pin-icon {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-source-info strong {
  color: var(--text-secondary);
}

.card-action-bar {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inquire-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: gap var(--transition-fast);
}

.inquire-link:hover {
  color: #ffffff;
  gap: 9px;
}

@media (max-width: 991px) {
  .product-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   5. AUTHORIZED BRANDS / DISTRIBUTOR NETWORK SECTION
   ========================================================================== */
.brands-section {
  background: 
    radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
    linear-gradient(to bottom, #09090c 0%, #101017 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.brand-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: all var(--transition-medium);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  border: 2px solid transparent;
  overflow: hidden;
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.28);
}

.brand-card-img,
.brand-card img {
  max-width: 135px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  transition: transform var(--transition-medium);
  user-select: none;
}

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

.brand-card-logo-emblem {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.2rem;
  color: #111116;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.brands-footer-text {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-serif);
  font-weight: 600;
}

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

@media (max-width: 640px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .brand-card {
    padding: 0.75rem 0.5rem;
    height: 82px;
  }
  .brand-card-img,
  .brand-card img {
    max-width: 110px;
    max-height: 42px;
  }
  .brand-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
    width: 100%;
  }
  .brand-card-logo-emblem {
    font-size: 1.02rem;
  }
}

/* ==========================================================================
   6. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-slider-wrap {
  max-width: 860px;
  margin: 3rem auto 0;
  position: relative;
}

.testimonial-track-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-elevation);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #f0f0f5;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.testimonial-author-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.author-business {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-btn {
  background: rgba(20, 20, 28, 0.9);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--gold-primary);
  color: #0b0b0f;
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.25);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--gold-primary);
  width: 26px;
  border-radius: var(--radius-full);
}

@media (max-width: 640px) {
  .testimonial-card {
    padding: 2rem 1.25rem;
  }
  .testimonial-quote {
    font-size: 1rem;
  }
}

/* ==========================================================================
   7. GOOGLE REVIEWS SECTION
   ========================================================================== */
.reviews-section {
  background: linear-gradient(180deg, #0d0d12 0%, #12121b 100%);
}

.google-review-header-card {
  max-width: 720px;
  margin: 0 auto 3rem;
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
}

.google-badge-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.google-icon-box {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.rating-details {
  display: flex;
  flex-direction: column;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-num {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stars-row {
  display: flex;
  gap: 3px;
  color: #fbbc04;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-medium);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card);
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0b0b0f;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
}

.review-date {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.review-snippet {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 0.75rem;
}

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   8. CONTACT & LOCATION SECTION
   ========================================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}

.contact-value a:hover {
  color: var(--gold-bright);
}

.contact-value-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-value-list .contact-link {
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.contact-value-list .contact-link:hover {
  transform: translateX(4px);
}

.social-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold-gradient-soft);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Map Wrap */
.map-container-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  height: 100%;
  min-height: 420px;
  box-shadow: var(--shadow-card);
  position: relative;
  background: #111;
}

.map-container-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* Wholesale Quick Form */
.inquiry-builder-card {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(24, 24, 34, 0.95) 0%, rgba(16, 16, 22, 0.95) 100%);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-elevation);
}

.builder-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.builder-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.form-input, .form-select, .form-textarea {
  background: rgba(10, 10, 14, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  background: rgba(15, 15, 20, 0.95);
}

@media (max-width: 991px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   9. FLOATING WHATSAPP ICON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: all var(--transition-medium);
  position: relative;
}

.whatsapp-float-btn::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.7;
  animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  background: #20ba59;
}

.whatsapp-float-tooltip {
  background: rgba(12, 12, 16, 0.94);
  color: #ffffff;
  border: 1px solid var(--gold-border);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  white-space: nowrap;
  animation: fadeIn 0.3s ease;
}

@media (max-width: 640px) {
  .whatsapp-float-tooltip {
    display: none;
  }
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.site-footer {
  background: #060608;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding: 4.5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand-meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  padding: 3px;
  border: 1.5px solid var(--gold-primary);
  background: #000;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-bright);
  padding-left: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
