﻿/* ============================================================
   BCD Privilege Card – Premium Light Luxury CSS merged
   ============================================================ */

:root {
  /* ── Gold Spectrum ── */
  --gold:            #9B7B35;
  --gold-mid:        #B89042;
  --gold-light:      #D4B56C;
  --gold-pale:       #E8D499;
  --gold-dark:       #7A5F1C;
  --gold-deep:       #5C4714;
  --gold-ultra:      rgba(155,123,53,0.09);
  --gold-grad:       linear-gradient(135deg, #7A5F1C 0%, #9B7B35 28%, #C4A052 60%, #E2CC84 100%);
  --gold-grad-soft:  linear-gradient(135deg, #B89042 0%, #E2CC84 100%);
  --border-gold:     rgba(155,123,53,0.28);

  /* ── Backgrounds ── */
  --dark:        #FDFBF7;   /* warm white — primary bg   */
  --charcoal:    #F5F0E7;   /* warm ivory — alt sections */
  --bg-alt:      #F5F0E7;
  --bg-deep:     #EDE6D5;   /* deep cream — accent areas */
  --bg-card:     #FFFFFF;   /* pure white — card surface */

  /* ── Text ── */
  --text:           #1A1409;  /* very dark warm brown-black */
  --text-sub:       #4E3D24;  /* rich dark warm brown       */
  --text-muted:     #7A6548;  /* warm medium brown          */
  --text-secondary: #7A6548;
  --text-faint:     #A8947C;  /* warm taupe — captions      */
  --black:          #1A1409;

  /* ── Borders ── */
  --border-color:  #E8DFD2;   /* warm neutral */
  --border:        #E8DFD2;
  --border-soft:   #EDE8DE;   /* very light dividers */
  --border-card:   #EBE2D4;   /* card borders */

  /* ── Shadows (warm-tinted) ── */
  --shadow-xs:   0 2px 12px rgba(26,20,9,0.045);
  --shadow-sm:   0 4px 20px rgba(26,20,9,0.055);
  --shadow-md:   0 10px 38px rgba(26,20,9,0.08);
  --shadow-lg:   0 22px 56px rgba(26,20,9,0.10);
  --shadow-xl:   0 36px 80px rgba(26,20,9,0.12);
  --shadow-gold: 0 10px 32px rgba(155,123,53,0.28);

  /* ── Tokens ── */
  --t-med:  0.3s ease;
  --r-sm:   8px;
  --r-md:   12px;
  --r-xl:   18px;
  --nav-h:  80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark);
  transition: opacity var(--t-med), visibility var(--t-med);
  pointer-events: none;
}
.preloader-ring {
  width: 56px; height: 56px;
  border: 3px solid rgba(155,123,53, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

#lux-preloader { position: fixed; inset: 0; z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--dark); transition: opacity var(--t-med), visibility var(--t-med); pointer-events: none; }
.pre-logo { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1.5rem; }
.pre-bar { width: 140px; height: 1px; background: var(--border-color); position: relative; overflow: hidden; }
.pre-bar-fill { position: absolute; left: 0; top: 0; height: 100%; background: var(--gold); width: 0; transition: width 0.4s ease; }
@keyframes load { 0% { width: 0; } 50% { width: 70%; } 100% { width: 100%; } }

/* ===== NAVBAR ===== */
#navbar, #lux-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; background: transparent; transition: all var(--t-med); }
#navbar.scrolled, #lux-nav.scrolled { 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid var(--border-color); 
    box-shadow: var(--shadow-xs); 
}

.nav-link, #lux-nav .nav-links a {
  color: var(--text); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; transition: color var(--t-med); position: relative; padding-bottom: 4px;
}
.nav-link::after, #lux-nav .nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width var(--t-med);
}
.nav-link:hover, .nav-link.active, #lux-nav .nav-links a:hover, #lux-nav .nav-links a.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after, #lux-nav .nav-links a:hover::after, #lux-nav .nav-links a.active::after { width: 100%; }

.mobile-nav-link {
  display: block; color: var(--text); font-size: 0.9rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color); transition: color var(--t-med);
}
.mobile-nav-link:hover { color: var(--gold); }

/* lux-nav parts from pages layout */
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.nav-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; border-radius: 4px; }
.nav-logo-copy { display: flex; flex-direction: column; }
.nav-logo-text { font-family: 'Playfair Display', serif; color: var(--text); font-size: 1.15rem; font-weight: 700; line-height: 1.1; }
.nav-logo-sub { font-size: 0.55rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-links { display: none; gap: 2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-cta { display: none; }
@media (min-width: 1024px) { 
  .nav-cta { 
    display: inline-block; background: var(--gold-grad); color: var(--text); font-size: 0.8rem; font-weight: 600; 
    letter-spacing: 0.1em; text-transform: uppercase; padding: 0.75rem 1.8rem; border-radius: var(--r-md); transition: all var(--t-med); box-shadow: var(--shadow-xs); 
  }
  .nav-cta:hover { background: var(--gold-dark); box-shadow: var(--shadow-gold); transform: translateY(-1px); }
}
.nav-hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all var(--t-med); }
@media (min-width: 1024px) { .nav-hamburger { display: none; } }

/* mobile nav */
.nav-mobile { position: fixed; inset: 0; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); z-index: 1000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transform: translateY(-100%); transition: transform var(--t-med); border-bottom: 1px solid var(--border-color); }
.nav-mobile.open { transform: translateY(0); }
.nav-mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.nav-mobile a { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--text); text-decoration: none; transition: color var(--t-med); }
.nav-mobile a:hover { color: var(--gold); }


/* ===== BUTTONS ===== */
.btn-gold {
  background: var(--gold-grad);
  color: var(--text); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.75rem 2rem; border-radius: var(--r-md);
  transition: all var(--t-med); display: inline-block;
  position: relative; overflow: hidden; border: none;
}
.btn-gold:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); background: var(--gold-dark); }

.btn-outline-gold {
  border: 1px solid var(--gold); color: var(--gold);
  font-weight: 500; font-size: 0.875rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.75rem 2rem; border-radius: var(--r-md);
  transition: all var(--t-med); display: inline-block;
}
.btn-outline-gold:hover { background: var(--gold-grad); color: var(--text); box-shadow: var(--shadow-gold); }

/* ===== GLASS ===== */
.glass { background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); border: 1px solid var(--border-color); }
.glass-dark { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border: 1px solid var(--border-color); }
.glass-gold { background: rgba(155,123,53, 0.05); backdrop-filter: blur(20px); border: 1px solid rgba(155,123,53, 0.15); }

/* ===== GOLD TEXT ===== */
.text-gradient-gold { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== SECTION TITLES ===== */
.section-tag { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; color: var(--text); }
.section-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.5rem 0; }
.section-divider.center { margin: 1.5rem auto; }

/* ===== HERO ===== */
.hero-bg, .page-hero {
  background: radial-gradient(ellipse at 20% 50%, rgba(155,123,53,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(155,123,53,0.04) 0%, transparent 50%),
              var(--dark);
}
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(155,123,53, 0.08) 0%, transparent 70%); pointer-events: none; }

/* ===== CARDS / BOXES ===== */
.card-premium, .partner-card, .stat-card, .cat-hero-card, .partner-card-item, .mkt-stat {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--r-md); transition: all var(--t-med);
  position: relative; overflow: hidden;
  text-decoration: none;
}
.card-premium:hover, .partner-card:hover, .cat-hero-card:hover, .partner-card-item:hover, .mkt-stat:hover { 
    border-color: var(--gold-light); 
    transform: translateY(-4px); 
    box-shadow: var(--shadow-md); 
}

.category-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(155,123,53, 0.1); border: 1px solid rgba(155,123,53, 0.2); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); transition: all var(--t-med); }
.card-premium:hover .category-icon { background: rgba(155,123,53, 0.2); box-shadow: 0 0 15px rgba(155,123,53, 0.2); }

.partner-card { padding: 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.partner-logo { width: 80px; height: 80px; object-fit: contain; filter: grayscale(100%) brightness(0.8); transition: filter var(--t-med); border-radius: 8px; }
.partner-card:hover .partner-logo { filter: grayscale(0%) brightness(1); }

/* ===== FORM ===== */
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-label { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.5rem; font-weight: 500; }
.form-input {
  width: 100%; background: #ffffff; border: 1px solid var(--border-color);
  color: var(--text); padding: 0.875rem 1rem; border-radius: var(--r-md); font-size: 0.9rem;
  transition: all var(--t-med); outline: none; font-family: 'Inter', sans-serif;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.02);
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(155,123,53, 0.15); }
.form-input::placeholder { color: #A0A0A0; }
select.form-input option { background: #ffffff; color: var(--text); }

/* Step indicator */
.step-indicator { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 3rem; }
.step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.step-num { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--border-color); background: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); transition: all 0.4s; }
.step.active .step-num { border-color: var(--gold); color: var(--gold); background: rgba(155,123,53, 0.05); box-shadow: 0 0 15px rgba(155,123,53, 0.15); }
.step.done .step-num { background: var(--gold-grad); border-color: transparent; color: var(--black); }
.step-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); }
.step.active .step-label { color: var(--gold); }
.step-line { flex: 1; height: 1px; background: var(--border-color); max-width: 80px; }

/* ===== ADMIN ===== */
.admin-sidebar { background: #FFFFFF; border-right: 1px solid var(--border-color); min-height: 100vh; width: 260px; position: fixed; top: 0; left: 0; z-index: 100; }
.admin-content { margin-left: 260px; min-height: 100vh; background: var(--dark); padding: 2rem; color: var(--text); }
.admin-nav-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; color: var(--text-secondary); font-size: 0.875rem; transition: all var(--t-med); border-left: 3px solid transparent; }
.admin-nav-link:hover, .admin-nav-link.active { color: var(--gold); background: rgba(155,123,53, 0.05); border-left-color: var(--gold); }
.stat-card { padding: 1.5rem; }
.badge { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; border-radius: 12px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.badge-pending { background: rgba(234,179,8,0.1); color: #B45309; border: 1px solid rgba(234,179,8,0.2); }
.badge-approved { background: rgba(34,197,94,0.1); color: #15803D; border: 1px solid rgba(34,197,94,0.2); }
.badge-rejected { background: rgba(239,68,68,0.1); color: #B91C1C; border: 1px solid rgba(239,68,68,0.2); }

/* ===== TOAST ===== */
.toast { background: #FFFFFF; border: 1px solid var(--border-color); border-radius: var(--r-md); padding: 1rem 1.5rem; min-width: 280px; display: flex; align-items: center; gap: 0.75rem; box-shadow: var(--shadow-md); color: var(--text); animation: slideIn 0.3s ease; }
.toast.success { border-left: 4px solid #15803D; }
.toast.error { border-left: 4px solid #B91C1C; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right { transition: opacity var(--t-med), transform var(--t-med); opacity: 0; }
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0, 0); }

/* ===== SOCIAL ICONS ===== */
.social-icon { width: 38px; height: 38px; border: 1px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 0.85rem; transition: all var(--t-med); }
.social-icon:hover { border-color: var(--gold); color: #FFFFFF; background: var(--gold-dark); }

/* ===== FOOTER LINKS ===== */
.footer-link { color: var(--text-secondary); font-size: 0.875rem; transition: color var(--t-med); display: block; padding: 0.2rem 0; }
.footer-link:hover { color: var(--gold); padding-left: 4px; }

/* ===== FOOTER ===== */
#footer { background: #FFFFFF; border-top: 1px solid var(--border-color); padding: 4rem 5% 2rem; color: var(--text); }
.lux-container { max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-logo img { height: 40px; width: auto; border-radius: 4px; }
.footer-logo-copy { display: flex; flex-direction: column; }
.footer-logo-text { font-family: 'Playfair Display', serif; color: var(--text); font-size: 1.1rem; font-weight: 700; line-height: 1.1; }
.footer-logo-sub { font-size: 0.5rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
.footer-about { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 320px; }
.footer-socials { display: flex; gap: 0.75rem; }
.fsoc { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all var(--t-med); }
.fsoc:hover { border-color: var(--gold); color: #FFF; background: var(--gold); }
.footer-h { font-size: 0.8rem; color: var(--text); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: all var(--t-med); }
.footer-links a:hover { color: var(--gold); transform: translateX(3px); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; font-size: 0.85rem; color: var(--text-muted); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-tagline span { color: var(--gold); margin: 0 0.2rem; }

/* ===== MEMBERSHIP CARD ===== */
.membership-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--r-xl); padding: 2.5rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.membership-card::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,123,53, 0.08) 0%, transparent 70%);
}

/* ===== DIVIDER ===== */
.gold-divider, .lux-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(155,123,53, 0.3), transparent); }

/* ===== TABLE ===== */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: rgba(155,123,53, 0.05); color: var(--gold-dark); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--border-color); }
.admin-table td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--border-color); font-size: 0.875rem; color: var(--text-secondary); vertical-align: middle; }
.admin-table tr:hover td { background: #FDFBF7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; padding: 1rem; }
}

/* ===== MISC ===== */
.gold-border-left { border-left: 3px solid var(--gold); padding-left: 1rem; }
.number-badge { width: 28px; height: 28px; border-radius: 50%; background: rgba(155,123,53, 0.1); border: 1px solid rgba(155,123,53, 0.3); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--gold); font-weight: 600; flex-shrink: 0; }

/* ============================================================ */
/* BCD Privilege Card - Pages Elements                          */
/* ============================================================ */

.page-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 88px) 5% 88px; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: auto auto -140px 50%;
  width: 860px; height: 860px; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 68%); pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; left: 50%; bottom: 0;
  width: min(780px, calc(100% - 2.5rem)); height: 1px; transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(155,123,53, 0.28), transparent);
}
.page-hero-tag, .page-hero h1, .page-hero p, .breadcrumb { position: relative; z-index: 1; }
.page-hero p { max-width: 560px; margin: 0 auto; color: var(--text-muted); }
.page-hero .lux-divider { margin: 1rem auto 1.2rem; width: 60px; }

.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.55rem; margin-top: 1.5rem;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
}
.breadcrumb a { transition: color var(--t-med); color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb i { font-size: 0.55rem; opacity: 0.55; }
.breadcrumb span { color: var(--gold-dark); }

.page-content, .page-content-alt { padding: 88px 5%; }
.page-content { background: var(--dark); } /* #FDFBF7 */
.page-content-alt { background: var(--charcoal); } /* #F5F0E7 */

.about-split, .cat-split, .contact-split, .detail-grid { display: grid; gap: 4rem; }
.about-split, .cat-split { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.contact-split { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
.detail-grid { grid-template-columns: 0.95fr 1.05fr; }

.pillar-card { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.7rem 1.9rem; }
.pillar-letter {
  width: 54px; height: 54px; border-radius: 12px; flex-shrink: 0;
  background: var(--gold-grad); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.value-grid, .steps-row, .mkt-four, .mkt-hero-stats { display: grid; gap: 1.5rem; }
.value-grid { grid-template-columns: repeat(3, 1fr); }
.steps-row { grid-template-columns: repeat(4, 1fr); text-align: center; }
.step-num-badge {
  width: 50px; height: 50px; margin: 0 auto 1rem; border-radius: 50%;
  border: 1px solid rgba(155,123,53, 0.3); background: #FFF7EA;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.84rem; font-weight: 700; color: var(--gold-dark);
}

.membership-hero-price {
  font-size: clamp(3.75rem, 8vw, 6rem); line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.membership-card-box {
  position: relative; padding: 3rem; background: #FFFFFF; border: 1px solid var(--border-card);
  border-radius: var(--r-xl); box-shadow: var(--shadow-md); overflow: hidden;
}
.membership-card-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-grad); }
.membership-card-box::after {
  content: ''; position: absolute; top: -100px; right: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: radial-gradient(circle, rgba(226,204,132, 0.45) 0%, transparent 70%); pointer-events: none;
}
.benefits-list, .cat-perks { list-style: none; }
.benefits-list li, .cat-perks li, .detail-info-row {
  display: flex; gap: 0.85rem; align-items: flex-start; padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-color); color: var(--text-sub); font-size: 0.9rem;
}
.benefits-list li:last-child, .cat-perks li:last-child, .detail-info-row:last-child { border-bottom: none; }
.benefits-list li i, .cat-perks li i {
  width: 20px; height: 20px; border-radius: 50%; background: rgba(226,204,132,0.4);
  border: 1px solid rgba(155,123,53, 0.28); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-size: 0.55rem; flex-shrink: 0;
}

.faq-item { padding: 1.4rem 1.6rem; margin-bottom: 0.75rem; cursor: pointer; border-radius: var(--r-md); background: #FFFFFF; border: 1px solid var(--border-color); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--text); font-size: 0.95rem; font-weight: 600; }
.faq-a { display: none; margin-top: 0.85rem; color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }
.faq-icon { color: var(--text-muted); transition: transform var(--t-med), color var(--t-med); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold-dark); }

.cat-hero-grid, .partners-grid, .benefits-two-col, .influencer-tiers { display: grid; gap: 1.5rem; }
.cat-hero-grid { grid-template-columns: repeat(4, 1fr); margin-top: 3rem; }
.partners-grid { grid-template-columns: repeat(3, 1fr); }
.benefits-two-col, .influencer-tiers { grid-template-columns: repeat(2, 1fr); }

.cat-hero-card { padding: 2rem 1.5rem; text-align: center; }
.partner-card-item { padding: 2rem; text-align: center; }
.mkt-stat { padding: 2rem; text-align: center; }
.cat-hero-card .lux-icon-box { margin: 0 auto 1.2rem; }

.partner-icon, .c-icon {
  width: 58px; height: 58px; margin: 0 auto 1rem; border-radius: 12px;
  background: #FDFBF6; border: 1px solid rgba(155,123,53, 0.28);
  display: flex; align-items: center; justify-content: center; color: var(--gold-dark); font-size: 1.1rem;
}
.partner-name { font-size: 1.06rem; margin-bottom: 0.35rem; color: var(--text); font-weight: 600; }
.partner-cat-badge, .tier-badge {
  display: inline-flex; align-items: center; justify-content: center; padding: 0.26rem 0.8rem; border-radius: 999px;
  background: var(--gold-pale); border: 1px solid rgba(155,123,53, 0.24); color: var(--gold-dark);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.partner-city { margin-top: 0.45rem; font-size: 0.78rem; color: var(--text-muted); }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 3.5rem 2rem; color: var(--text-muted); }
.empty-state i { display: block; margin-bottom: 1rem; font-size: 2.4rem; color: rgba(155,123,53, 0.32); }

.partners-filter { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.52rem 1.15rem; border-radius: 999px; background: #FFFFFF; border: 1px solid var(--border-color);
  color: var(--text-sub); font-size: 0.76rem; font-weight: 600; transition: all var(--t-med); cursor: pointer;
}
.filter-btn:hover { border-color: var(--border-gold); color: var(--gold-dark); }
.filter-btn.active { background: var(--gold-grad); border-color: transparent; color: var(--black); }

.benefit-item, .tier-card { padding: 2.1rem; display: flex; gap: 1.3rem; align-items: flex-start; background: #FFFFFF; border: 1px solid var(--border-color); border-radius: var(--r-md); transition: var(--t-med); }
.benefit-item:hover, .tier-card:hover { border-color: var(--gold-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.mkt-four { grid-template-columns: repeat(4, 1fr);   display: grid; gap: 1.5rem; }
.mkt-item { padding: 2.4rem 2rem; text-align: center; position: relative; overflow: hidden; background: #FFF; border: 1px solid var(--border-color); border-radius: var(--r-md); }
.mkt-item::after { content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px; transform: translateX(-50%); background: var(--gold-grad); transition: width var(--t-med); }
.mkt-item:hover::after { width: 54%; }
.mkt-hero-stats { grid-template-columns: repeat(4, 1fr); margin-top: 3rem; }
.mkt-stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; line-height: 1; margin-bottom: 0.4rem; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.contact-info-card { padding: 2.5rem; background: #FFF; border: 1px solid var(--border-color); border-radius: var(--r-xl); box-shadow: var(--shadow-md); }
.c-info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.45rem; }
.c-info-row .c-icon { width: 46px; height: 46px; margin: 0; font-size: 0.92rem; flex-shrink: 0; }
.c-label, .detail-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--text-muted); }
.c-val, .detail-val { margin-top: 0.2rem; color: var(--text-sub); font-size: 0.92rem; line-height: 1.7; }
.detail-label { width: 120px; flex-shrink: 0; padding-top: 0.15rem; }

.apply-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 3rem; }
.apply-step { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }
.apply-step-num {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-color); background: #FFFFFF;
  color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; transition: all var(--t-med);
}
.apply-step.active .apply-step-num { background: #FFF7EA; border-color: rgba(155,123,53, 0.32); color: var(--gold-dark); box-shadow: 0 0 0 4px rgba(155,123,53, 0.1); }
.apply-step.done .apply-step-num { background: var(--gold-grad); border-color: transparent; color: var(--black); box-shadow: var(--shadow-gold); }
.apply-step-label { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.apply-step.active .apply-step-label { color: var(--gold-dark); }
.apply-step.done .apply-step-label { color: var(--gold-dark); }
.apply-step-line { width: 70px; height: 1px; background: var(--border-color); }
.form-step { display: none; }
.form-step.active { display: block; }

@media (max-width: 1024px) {
  .about-split, .cat-split, .contact-split, .detail-grid, .benefits-two-col, .influencer-tiers { grid-template-columns: 1fr; }
  .value-grid, .steps-row, .cat-hero-grid, .partners-grid, .mkt-four, .mkt-hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-hero { padding: calc(var(--nav-h) + 52px) 5% 56px; }
  .page-content, .page-content-alt { padding: 68px 5%; }
  .value-grid, .steps-row, .partners-grid, .benefits-two-col, .mkt-four, .cat-hero-grid, .mkt-hero-stats { grid-template-columns: 1fr; }
  .membership-card-box, .contact-info-card { padding: 2rem; }
  .apply-step-line { width: 42px; }
}
@media (max-width: 480px) {
  .breadcrumb { flex-wrap: wrap; gap: 0.35rem; }
  .apply-step-label { font-size: 0.58rem; }
}

/* ============================================================
   BED LUXURY – Missing Classes Supplement
   ============================================================ */

/* ===== MISSING CSS VARIABLES ===== */
:root {
  --bg-alt:         #F5F0E7;
  --bg-card:        #FFFFFF;
  --border:         #E8DFD2;
  --border-soft:    #EDE8DE;
  --gold-mid:       #B89042;
  --gold-deep:      #5C4714;
  --r-sm:           8px;
  --shadow-xl:      0 36px 80px rgba(26,20,9,0.12);
  --text-secondary: #7A6548;
}

/* ===== TYPOGRAPHY ===== */
.lux-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.15; color: var(--text);
  margin-bottom: 0.75rem;
}
.lux-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2; color: var(--text);
  margin-bottom: 0.75rem;
}
.lux-h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--text);
}
.lux-body {
  font-size: 1rem; line-height: 1.8; color: var(--text-muted);
}
.lux-body-sm {
  font-size: 0.875rem; line-height: 1.75; color: var(--text-muted);
}
.lux-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 0.65rem;
}
.gold-grad-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.lux-section { padding: 5.5rem 5%; }
.lux-container-xs { max-width: 720px; margin: 0 auto; padding: 0 5%; }
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,123,53,0.22), transparent);
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.lux-divider.center { margin-left: auto; margin-right: auto; }

/* ===== CARD & ICON BOX ===== */
.lux-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
  transition: all 0.3s ease;
}
.lux-icon-box {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: rgba(155,123,53,0.1);
  border: 1px solid rgba(155,123,53,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold-grad); color: var(--black);
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: var(--r-md);
  border: none; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; border: 1px solid var(--border-color);
  color: var(--text-sub); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: var(--r-md);
  cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--text); color: #FDFBF7;
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: var(--r-md);
  border: none; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none;
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }

.btn-cta-white {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #FDFBF7; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: var(--r-md);
  cursor: pointer; transition: all 0.3s ease; text-decoration: none;
  backdrop-filter: blur(6px);
}
.btn-cta-white:hover { background: rgba(255,255,255,0.22); }

/* ===== SCROLL PROGRESS & BACK-TOP ===== */
#lux-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: var(--gold-grad); width: 0%;
  transition: width 0.1s linear;
}
#back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-grad); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--black); box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(12px);
  transition: all 0.35s ease; pointer-events: none;
}
#back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-top:hover { transform: translateY(-3px); }

/* ===== TOAST WRAP ===== */
#toast-wrap {
  position: fixed; top: 5.5rem; right: 1.25rem;
  z-index: 9998; display: flex; flex-direction: column; gap: 0.75rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--dark);
  padding-top: var(--nav-h);
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-default {
  background:
    radial-gradient(ellipse at 20% 60%, rgba(155,123,53,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(155,123,53,0.09) 0%, transparent 45%),
    linear-gradient(160deg, #FDFBF7 0%, #F5F0E7 55%, #FDFBF7 100%);
  opacity: 1;
}
.hero-slider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(250,248,243,0.92) 40%,
    rgba(250,248,243,0.5) 75%,
    rgba(250,248,243,0.15) 100%
  );
}
.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.55rem; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(155,123,53,0.35); border: none;
  cursor: pointer; transition: all 0.3s ease; padding: 0;
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 1;
}
.hero-orb-1 {
  width: 700px; height: 700px; top: -200px; right: -160px;
  background: radial-gradient(circle, rgba(155,123,53,0.11) 0%, transparent 65%);
}
.hero-orb-2 {
  width: 400px; height: 400px; bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(155,123,53,0.07) 0%, transparent 70%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 5rem 5%;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(155,123,53,0.1);
  border: 1px solid rgba(155,123,53,0.28);
  padding: 0.45rem 1rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 1.5rem;
}
.hero-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: lux-pulse 2s ease infinite;
}
@keyframes lux-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; line-height: 1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 0.25rem;
}

/* ===== PREMIUM CARD ===== */
.card-wrap {
  position: relative; padding: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.card-glow {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,123,53,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(155,123,53,0.25);
  border-radius: 999px; padding: 0.42rem 1rem;
  font-size: 0.7rem; font-weight: 600; color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07); z-index: 3;
}
.fb-top { top: 1.5rem; left: 0.5rem; }
.fb-bot { bottom: 1.5rem; right: 0.5rem; }
.green-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22C55E;
}
.prem-card {
  width: 340px; max-width: 100%;
  background: linear-gradient(135deg, #1a1208 0%, #2c1e0a 50%, #1a1208 100%);
  border-radius: 18px; padding: 2rem; color: #FDFBF7;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(155,123,53,0.3);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s ease; position: relative; z-index: 2;
}
.card-brand-badge { margin-bottom: 1.5rem; }
.brand-name {
  font-family: 'Cinzel','Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.2em;
}
.brand-sub {
  font-size: 0.55rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.card-chip {
  width: 38px; height: 28px; border-radius: 5px; margin-bottom: 1.75rem;
  background: linear-gradient(135deg, #9B7B35, #E2CC84);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.3);
}
.card-num {
  font-size: 1.1rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75); margin-bottom: 1.5rem;
  font-family: monospace;
}
.card-holder-label {
  font-size: 0.52rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.2rem;
}
.card-holder-name {
  font-size: 0.88rem; color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em; font-weight: 500;
}

/* ===== CONCEPT SECTION ===== */
.concept-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.concept-card { padding: 2.5rem 2rem; text-align: center; }
.concept-icon {
  width: 60px; height: 60px; margin: 0 auto 1.5rem; border-radius: 50%;
  background: rgba(155,123,53,0.12); border: 1px solid rgba(155,123,53,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 1.3rem;
}
.badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; }
.cat-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 1rem; border-radius: 999px;
  background: #FFFFFF; border: 1px solid var(--border-color);
  font-size: 0.75rem; font-weight: 600; color: var(--text-sub);
  transition: all 0.3s ease;
}
.cat-badge i { color: var(--gold); font-size: 0.8rem; }
.cat-badge:hover { border-color: var(--gold); color: var(--gold-dark); }
.big-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--text); text-align: center;
}
.big-tagline em { color: var(--gold-dark); font-style: italic; }

/* ===== MEMBERSHIP STRIP ===== */
.membership-strip {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 2rem;
  padding: 3rem; background: #FFFFFF;
  border: 1px solid var(--border-card); border-radius: var(--r-xl);
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.membership-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold-grad);
}
.price-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.perks-row { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.perk-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem; font-weight: 600; color: var(--text-sub);
}
.perk-item i { color: var(--gold-dark); font-size: 0.7rem; }

/* ===== PARTNER VENUES GRID ===== */
.venues-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.venue-card {
  background: #FFFFFF; border: 1px solid var(--border-color);
  border-radius: var(--r-md); padding: 1.75rem 1.25rem;
  text-align: center; transition: all 0.3s ease;
  text-decoration: none; display: block;
}
.venue-card:hover {
  border-color: rgba(155,123,53,0.4);
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.venue-icon {
  width: 52px; height: 52px; margin: 0 auto 0.85rem; border-radius: 12px;
  background: rgba(155,123,53,0.1); border: 1px solid rgba(155,123,53,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 1.1rem;
}
.venue-name { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.venue-cat {
  font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
}
.venue-city { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.35rem; }

/* ===== CTA SECTION ===== */
#cta-section {
  padding: 6rem 5%; position: relative; overflow: hidden;
  background: linear-gradient(145deg, #1a1208 0%, #251a0b 50%, #1a1208 100%);
  text-align: center;
}
#cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(155,123,53,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700; color: #FDFBF7; line-height: 1.2; margin-bottom: 1rem;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub {
  font-size: 1rem; color: rgba(250,248,243,0.65);
  max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ===== REVEAL ANIMATIONS ===== */
.lux-reveal, .lux-reveal-l, .lux-reveal-r {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lux-reveal  { transform: translateY(28px); }
.lux-reveal-l { transform: translateX(-28px); }
.lux-reveal-r { transform: translateX(28px); }
.lux-reveal.visible,
.lux-reveal-l.visible,
.lux-reveal-r.visible { opacity: 1; transform: translate(0,0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ===== FORMS ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.5rem;
}
.form-error {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--r-md); padding: 0.9rem 1.1rem;
  font-size: 0.875rem; color: #B91C1C; margin-bottom: 1rem;
}

/* ===== CATEGORIES ===== */
.cat-section { padding: 5rem 5%; }
.cat-section:nth-child(even) { background: var(--charcoal); }

/* ===== VALUE CARD ===== */
.value-card { padding: 2.5rem 2rem; text-align: center; }

/* ===== FOOTER EXTRAS ===== */
.footer-h {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: var(--text-secondary); font-size: 0.88rem;
  text-decoration: none; transition: color 0.3s ease; display: inline-block;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-color); padding-top: 2rem; margin-top: 3rem;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 1rem; font-size: 0.82rem; color: var(--text-muted);
}
.footer-tagline span { color: var(--gold); }
.footer-socials { display: flex; gap: 0.65rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; padding: 3rem 5%; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .card-wrap { display: none; }
  .concept-grid { grid-template-columns: 1fr 1fr; }
  .venues-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .hero-section { min-height: auto; padding-bottom: 3rem; }
  .concept-grid { grid-template-columns: 1fr; }
  .membership-strip { flex-direction: column; align-items: flex-start; }
  .venues-grid { grid-template-columns: repeat(2,1fr); }
  .cta-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .venues-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   BCD Privilege Card — ANTIQUE OBSIDIAN PALETTE
   Deep Antique Gold · Warm White · Pure Ivory
   ============================================================ */

:root {
  /* ── Gold Spectrum ── */
  --gold:            #9B7B35;   /* Deep Antique Gold — primary accent      */
  --gold-mid:        #B89042;   /* Warm Gold — hover, active               */
  --gold-light:      #D4B56C;   /* Champagne Gold — gradient, soft accents */
  --gold-pale:       #E8D499;   /* Pale Champagne — very subtle tints      */
  --gold-dark:       #7A5F1C;   /* Burnished — pressed, dark accents       */
  --gold-deep:       #5C4714;   /* Very Deep — text on light gold surfaces */
  --gold-ultra:      rgba(155,123,53,0.09);
  --gold-grad:       linear-gradient(135deg, #7A5F1C 0%, #9B7B35 28%, #C4A052 60%, #E2CC84 100%);
  --gold-grad-soft:  linear-gradient(135deg, #B89042 0%, #E2CC84 100%);
  --border-gold:     rgba(155,123,53,0.28);

  /* ── Backgrounds ── */
  --dark:        #FDFBF7;   /* near-pure warm white — primary bg  */
  --charcoal:    #F5F0E7;   /* warm ivory — alternating sections  */
  --bg-alt:      #F5F0E7;
  --bg-deep:     #EDE6D5;   /* deep cream — stronger contrast areas */
  --bg-card:     #FFFFFF;   /* pure white — card surfaces          */

  /* ── Text ── */
  --text:           #1A1409;   /* warm near-black — primary copy     */
  --text-sub:       #4E3D24;   /* rich dark brown — secondary heads  */
  --text-muted:     #7A6548;   /* warm medium brown — body secondary */
  --text-secondary: #7A6548;
  --text-faint:     #A8947C;   /* warm taupe — captions, placeholders */
  --black:          #1A1409;

  /* ── Borders ── */
  --border-color:  #E8DFD2;   /* warm neutral — default            */
  --border:        #E8DFD2;
  --border-soft:   #EDE8DE;   /* very light — subtle dividers      */
  --border-card:   #EBE2D4;   /* card-specific border              */

  /* ── Shadows (warm-tinted — feels more premium than cool shadows) ── */
  --shadow-xs:   0 2px 12px rgba(26,20,9,0.045);
  --shadow-sm:   0 4px 20px rgba(26,20,9,0.055);
  --shadow-md:   0 10px 38px rgba(26,20,9,0.08);
  --shadow-lg:   0 22px 56px rgba(26,20,9,0.10);
  --shadow-xl:   0 36px 80px rgba(26,20,9,0.12);
  --shadow-gold: 0 10px 32px rgba(155,123,53,0.28);

  /* ── Geometry ── */
  --r-sm:  8px;
  --r-md:  14px;
  --r-xl:  22px;
  --nav-h: 80px;
  --t-med: 0.3s ease;
}

/* ── Body / Base ── */
body { background: var(--dark); color: var(--text); }

/* ── Navbar refinements ── */
#lux-nav.scrolled {
  background: rgba(253,251,247,0.92);
  border-bottom: 1px solid var(--border-color);
}

/* ── Preloader ── */
#lux-preloader { background: var(--dark); }

/* ── Footer ── */
#footer {
  background: #F5F0E7;
  border-top: 1px solid var(--border-color);
}

/* ── Hero default slide ── */
.hero-slide-default {
  background:
    radial-gradient(ellipse at 18% 65%, rgba(155,123,53,0.14) 0%, transparent 52%),
    radial-gradient(ellipse at 82% 18%, rgba(155,123,53,0.08) 0%, transparent 44%),
    linear-gradient(155deg, #FDFBF7 0%, #F5F0E7 55%, #FDFBF7 100%);
  opacity: 1;
}

/* ── CTA dark section ── */
#cta-section {
  background: linear-gradient(150deg, #100B04 0%, #1C1208 50%, #100B04 100%);
}

/* ── Cards ── */
.lux-card { border-color: var(--border-card); }
.lux-card:hover { border-color: rgba(155,123,53,0.35); box-shadow: var(--shadow-md); }

/* ── Membership strip highlight ── */
.membership-strip { border-color: var(--border-card); }

/* ── Gold text / gradient ── */
.gold-grad-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section alternating ── */
.page-content     { background: var(--dark); }
.page-content-alt { background: var(--charcoal); }

/* ── Cat-badge ── */
.cat-badge { background: rgba(155,123,53,0.07); border-color: rgba(155,123,53,0.22); }
.cat-badge:hover { background: rgba(155,123,53,0.14); border-color: var(--gold); color: var(--gold-dark); }

/* ── Filter buttons ── */
.filter-btn.active { background: var(--gold-grad); color: var(--black); border-color: transparent; }

/* ── Pillar letter ── */
.pillar-letter { background: var(--gold-grad); color: var(--black); }

/* ── Step badge ── */
.step-num-badge { background: rgba(155,123,53,0.08); border-color: rgba(155,123,53,0.28); color: var(--gold-dark); }

/* ── Form focus ── */
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(155,123,53,0.14); }

/* ── Partner cat badge ── */
.partner-cat-badge, .tier-badge {
  background: rgba(155,123,53,0.1);
  border-color: rgba(155,123,53,0.25);
  color: var(--gold-dark);
}

/* ── Toast ── */
.toast { background: #FFFFFF; border-color: var(--border-card); }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: 5.5rem 5%;
  background: var(--charcoal);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,123,53,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  padding: 2.2rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-grad); opacity: 0;
  transition: opacity 0.35s ease;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(155,123,53,0.3); }
.testi-card:hover::before { opacity: 1; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 1.1rem; }
.testi-star { color: var(--gold); font-size: 0.75rem; }
.testi-star.empty { color: var(--border-color); }
.testi-quote {
  font-size: 1.65rem; line-height: 1; color: var(--gold-light);
  font-family: 'Playfair Display', serif; margin-bottom: 0.75rem;
}
.testi-text {
  font-size: 0.9rem; line-height: 1.8; color: var(--text-sub);
  flex: 1; margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem; color: var(--black);
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testi-role { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.05em; margin-top: 0.15rem; }

/* ============================================================
   LANDING FAQ SECTION
   ============================================================ */
.landing-faq-section {
  padding: 5.5rem 5%;
  background: var(--dark);
}
.landing-faq-wrap { max-width: 780px; margin: 3rem auto 0; }
.landing-faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--r-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.landing-faq-item:hover { border-color: rgba(155,123,53,0.35); }
.landing-faq-item.open {
  border-color: rgba(155,123,53,0.4);
  box-shadow: 0 4px 20px rgba(155,123,53,0.1);
}
.landing-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.3rem 1.6rem; cursor: pointer;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  user-select: none;
}
.landing-faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(155,123,53,0.1); border: 1px solid rgba(155,123,53,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 0.7rem;
  transition: all 0.3s ease;
}
.landing-faq-item.open .landing-faq-icon {
  background: var(--gold-grad); border-color: transparent; color: var(--black);
  transform: rotate(45deg);
}
.landing-faq-a {
  display: none; padding: 0 1.6rem 1.3rem; font-size: 0.9rem;
  line-height: 1.8; color: var(--text-sub);
  border-top: 1px solid var(--border-soft);
}
.landing-faq-item.open .landing-faq-a { display: block; }

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-section, .landing-faq-section { padding: 3.5rem 5%; }
}

/* ============================================================
   PARTNER APPLICATION FORM — FULL LUXURY REDESIGN
   ============================================================ */

/* ── Wrapper & Layout ── */
.apply-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 0 5rem;
}

/* ── Step Progress Bar ── */
.apply-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 1.75rem 2rem;
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
}
.apply-step-line {
  flex: 1; max-width: 90px; height: 2px;
  background: var(--border-color);
  border-radius: 2px;
  transition: background 0.5s ease;
  position: relative; overflow: hidden;
}
.apply-step-line::after {
  content: '';
  position: absolute; top: 0; left: 0; height: 100%; width: 0;
  background: var(--gold-grad);
  transition: width 0.5s ease;
}
.apply-step-line.done::after { width: 100%; }
.apply-step-num {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--border-color);
  background: #FFFFFF;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  transition: all 0.35s ease;
  font-family: 'Playfair Display', serif;
}
.apply-step.active .apply-step-num {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(155,123,53,0.07);
  box-shadow: 0 0 0 5px rgba(155,123,53,0.10);
}
.apply-step.done .apply-step-num {
  background: var(--gold-grad);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}
.apply-step-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.35rem;
}
.apply-step.active .apply-step-label,
.apply-step.done  .apply-step-label { color: var(--gold-dark); }

/* ── Form Card ── */
.apply-card {
  padding: 2.75rem 3rem;
  position: relative; overflow: hidden;
  border-top: 3px solid var(--gold-light);
  box-shadow: var(--shadow-md);
}
.apply-card::after {
  content: '';
  position: absolute; top: -90px; right: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,123,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Step Header ── */
.apply-step-header {
  display: flex; align-items: center; gap: 1.1rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  position: relative; z-index: 1;
}
.apply-step-badge {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-grad);
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
}

/* ── Field Group ── */
.apply-field-group {
  display: flex; flex-direction: column; gap: 1.4rem;
  position: relative; z-index: 1;
}
.apply-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

/* ── Enhanced form inputs ── */
.apply-card .form-input {
  background: var(--dark);
  border: 1.5px solid var(--border-color);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.apply-card .form-input:focus {
  border-color: var(--gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(155,123,53,0.12);
}
.apply-card .form-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-sub);
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  display: block;
}

/* ── Checkbox Grid ── */
.apply-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.apply-checkbox-item {
  display: flex; align-items: center; gap: 0.65rem;
  cursor: pointer;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--r-sm);
  background: var(--dark);
  transition: all 0.2s ease;
  font-size: 0.84rem; color: var(--text-sub);
  user-select: none;
}
.apply-checkbox-item:hover {
  border-color: var(--gold-light);
  background: rgba(155,123,53,0.04);
  color: var(--text);
}
.apply-checkbox-item input[type="checkbox"] { display: none; }
.apply-checkbox-box {
  width: 19px; height: 19px; border-radius: 5px;
  border: 1.5px solid var(--border-color);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  background: #FFFFFF;
  position: relative;
}
.apply-checkbox-item:has(input:checked) {
  border-color: var(--gold);
  background: rgba(155,123,53,0.07);
  color: var(--gold-dark);
  font-weight: 600;
}
.apply-checkbox-item:has(input:checked) .apply-checkbox-box {
  background: var(--gold-grad);
  border-color: transparent;
}
.apply-checkbox-item:has(input:checked) .apply-checkbox-box::after {
  content: '';
  width: 5px; height: 9px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(40deg) translateY(-1px);
  display: block;
}

/* ── Radio Grid ── */
.apply-radio-grid {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 0.5rem;
}
.apply-radio-item {
  display: flex; align-items: center; gap: 0.6rem;
  cursor: pointer;
  padding: 0.55rem 1.15rem;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  background: var(--dark);
  transition: all 0.2s ease;
  font-size: 0.85rem; color: var(--text-sub);
  user-select: none;
}
.apply-radio-item:hover {
  border-color: var(--gold-light);
  background: rgba(155,123,53,0.04);
  color: var(--text);
}
.apply-radio-item input[type="radio"] { display: none; }
.apply-radio-box {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid var(--border-color);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  background: #FFFFFF;
}
.apply-radio-item:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-grad);
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(155,123,53,0.22);
}
.apply-radio-item:has(input:checked) .apply-radio-box {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.25);
}
.apply-radio-item:has(input:checked) .apply-radio-box::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FFFFFF;
  display: block;
}

/* ── File Upload Zone ── */
.apply-upload-zone {
  display: block;
  border: 2px dashed var(--border-color);
  border-radius: var(--r-md);
  padding: 2.25rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.apply-upload-zone:hover {
  border-color: var(--gold);
  background: rgba(155,123,53,0.04);
}
.apply-upload-zone.has-file {
  border-style: solid;
  border-color: var(--gold);
  background: rgba(155,123,53,0.06);
}
.apply-upload-input {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: pointer; z-index: 2;
}
.apply-upload-inner { pointer-events: none; }
.apply-upload-icon {
  font-size: 2rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; margin-bottom: 0.65rem;
}
.apply-upload-text {
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-sub); margin-bottom: 0.3rem;
}
.apply-upload-hint {
  font-size: 0.74rem; color: var(--text-muted);
}
.apply-upload-preview {
  margin-top: 0.85rem; position: relative; z-index: 3;
}
.apply-upload-preview img,
.apply-upload-preview video {
  max-height: 90px; border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
}
.upload-filename {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--gold-dark);
  font-weight: 600; margin-top: 0.4rem;
  justify-content: center;
}
.upload-filename i { font-size: 1rem; }

/* ── Navigation Row ── */
.apply-nav-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-soft);
  position: relative; z-index: 1;
}
.btn-step-next,
.btn-step-prev {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em;
}
.btn-step-next { padding: 0.85rem 1.8rem; }
.btn-step-prev { padding: 0.85rem 1.5rem; }

/* ── Submit note ── */
.apply-submit-note {
  background: rgba(155,123,53,0.06);
  border: 1px solid rgba(155,123,53,0.2);
  border-radius: var(--r-md);
  padding: 1.1rem 1.4rem;
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.65;
  display: flex; align-items: flex-start; gap: 0.5rem;
}

/* ── Submit button ── */
.apply-submit-btn {
  display: inline-flex; align-items: center;
  gap: 0.65rem; padding: 0.9rem 2.4rem;
  font-size: 0.88rem;
}

/* ── Error Banner ── */
.apply-error {
  margin-bottom: 1.5rem;
  padding: 1rem 1.4rem;
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.88rem;
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.2);
  color: #B91C1C;
}

/* ── Success Card ── */
.apply-success {
  text-align: center;
  padding: 4.5rem 3rem;
  max-width: 580px;
  margin: 0 auto;
  border-top: 3px solid var(--gold);
}
.apply-success-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--gold-grad);
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 1.75rem;
  box-shadow: var(--shadow-gold);
}
.apply-success-note {
  background: rgba(155,123,53,0.07);
  border: 1px solid rgba(155,123,53,0.2);
  border-radius: var(--r-md);
  padding: 1.1rem 1.4rem;
  font-size: 0.85rem; color: var(--text-sub);
  text-align: left; margin-top: 1.75rem;
  line-height: 1.65;
  display: flex; align-items: flex-start; gap: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .apply-card { padding: 2rem 1.5rem; }
  .apply-two-col { grid-template-columns: 1fr; }
  .apply-checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .apply-steps { padding: 1.25rem 1rem; }
  .apply-nav-row { flex-direction: column-reverse; gap: 0.75rem; }
  .btn-step-next, .btn-step-prev { width: 100%; justify-content: center; }
}
