/* ============================================================
   META BIG BAZAAR 24×7 — FRANCHISE LANDING PAGE
   Color Palette:
     Dark Green  : #1a4d2e
     Mid Green   : #2d7a4f
     Light Green : #4caf50
     Gold        : #c9a84c
     Gold Light  : #e8c96d
     Off White   : #f9f7f2
     Dark        : #0f1f15
   ============================================================ */

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

:root {
  --green-dark:  #1a4d2e;
  --green-mid:   #2d7a4f;
  --green-light: #4caf50;
  --gold:        #c9a84c;
  --gold-light:  #e8c96d;
  --off-white:   #f9f7f2;
  --dark:        #0f1f15;
  --text:        #1e3a28;
  --text-muted:  #4a6856;
  --border:      #d4e8d0;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CONTAINER ────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }

/* ── SECTION LABELS ─────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(45,122,79,.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.light-label { color: var(--gold-light); background: rgba(201,168,76,.15); }
.gold-label  { color: var(--green-dark); background: rgba(26,77,46,.12); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.light-title { color: #fff; }

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 56px;
}
.light-desc { color: rgba(255,255,255,.75); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all .25s;
  border: none;
  text-decoration: none;
}

.btn-gold-lg {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 1rem;
  padding: 16px 32px;
  box-shadow: 0 4px 18px rgba(201,168,76,.45);
}
.btn-gold-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.6); }

.btn-gold-xl {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: 1.15rem;
  padding: 20px 44px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(201,168,76,.5);
}
.btn-gold-xl:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(201,168,76,.7); }

.btn-gold-sm {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: .875rem;
  padding: 10px 22px;
  box-shadow: 0 3px 12px rgba(201,168,76,.4);
}

.btn-outline-lg {
  background: transparent;
  color: #fff;
  font-size: 1rem;
  padding: 15px 30px;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-lg:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-dark-lg {
  background: var(--green-dark);
  color: #fff;
  font-size: 1.05rem;
  padding: 18px 40px;
  box-shadow: 0 4px 18px rgba(26,77,46,.35);
}
.btn-dark-lg:hover { background: var(--dark); transform: translateY(-2px); }

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 18px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,77,46,.35);
  border-radius: 10px;
  margin-top: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,77,46,.45); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
}
.btn-whatsapp:hover { background: #1db954; }

.btn-call {
  background: var(--green-dark);
  color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
}
.btn-call:hover { background: var(--dark); }

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,31,21,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 24px;
}

.btn-outline-nav {
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 9px 18px;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 6px;
}
.btn-outline-nav:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-primary-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 9px 20px;
  font-size: .875rem;
  font-weight: 700;
  border-radius: 6px;
}
.btn-primary-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,168,76,.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(15,31,21,.98);
  padding: 20px 24px 28px;
  gap: 4px;
}
.mobile-menu a {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-menu a:last-child { border-bottom: none; }
.btn-primary-full {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark) !important;
  text-align: center;
  border-radius: 8px;
  padding: 14px !important;
  font-weight: 700;
  margin-top: 8px;
  border-bottom: none !important;
}
.mobile-contact-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 0 6px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 6px;
}
.mob-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.75) !important;
  font-size: .88rem !important;
  font-weight: 500;
  padding: 0 !important;
  border-bottom: none !important;
}
.mob-contact-link i { color: var(--gold-light); }
.mobile-social-row {
  display: flex;
  gap: 10px;
  padding: 12px 0 4px;
}
.mobile-social-row .social-icon { width: 36px; height: 36px; font-size: .95rem; }

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--green-dark) 60%, #2d5c3a 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-left: max(48px, calc((100vw - 1180px)/2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px)/2 + 24px));
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-bg-overlay {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(45,92,58,.3));
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; padding: 80px 0 64px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 20px;
}
.brand-meta {
  display: inline-block;
  background: var(--green-mid);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}
.brand-big {
  display: block;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  padding: 5px 14px;
  border-radius: 6px;
  margin-top: 8px;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: rgba(255,255,255,.9);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-store-image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}
.hero-store-image img {
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  width: 100%;
  max-width: 560px;
  object-fit: cover;
}

/* ── TRUST BAR ─────────────────────────────── */
.trust-bar {
  background: var(--green-dark);
  padding: 0;
}
.trust-items {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 36px;
  flex: 1;
  min-width: 220px;
}
.trust-item i {
  font-size: 1.6rem;
  color: var(--gold);
}
.trust-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.trust-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}
.trust-divider {
  width: 1px;
  background: rgba(255,255,255,.12);
  align-self: stretch;
}

/* ── ABOUT CARDS ─────────────────────────── */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-mid); }
.about-icon {
  width: 52px; height: 52px;
  background: rgba(45,122,79,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  color: var(--green-mid);
}
.about-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.about-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ── GALLERY ─────────────────────────────── */
.gallery { background: var(--dark); }
.gallery .section-title { color: #fff; }
.gallery .section-desc  { color: rgba(255,255,255,.65); }
.gallery .section-label { color: var(--gold-light); background: rgba(201,168,76,.12); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s, box-shadow .3s;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.5); }

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-card:hover .gallery-img-wrap img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,77,46,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.6);
  padding: 10px 22px;
  border-radius: 6px;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }

.gallery-info {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.store-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}
.store-name { font-size: .9rem; color: rgba(255,255,255,.8); font-weight: 500; }

.gallery-cta { text-align: center; }
.gallery-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}

/* ── MODEL ───────────────────────────────── */
.model { background: var(--off-white); }

.model-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}
.model-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--green-dark);
  transition: all .3s;
}
.model-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.model-foco { border-top-color: var(--green-mid); }
.model-coco { border-top-color: var(--gold); }

.model-tag {
  display: inline-block;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: rgba(45,122,79,.1);
  color: var(--green-mid);
}
.model-coco .model-tag { background: rgba(201,168,76,.15); color: #a07820; }

.model-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.model-divider { height: 2px; background: var(--border); margin-bottom: 20px; }
.model-card > p { font-size: .95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.model-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.model-points li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text); }
.model-points li i { color: var(--green-mid); margin-top: 2px; font-size: .9rem; flex-shrink: 0; }

.model-vs {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  padding-top: 48px;
}
.model-vs span {
  width: 52px; height: 52px;
  background: var(--green-dark);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(26,77,46,.35);
}
.model-vs p { font-size: .8rem; font-weight: 700; text-align: center; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

.model-footer {
  text-align: center;
  padding: 28px;
  background: var(--green-dark);
  border-radius: 12px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.model-cta-block { text-align: center; }
.cta-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}

/* ── OPERATIONS ──────────────────────────── */
.dark-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3d28 100%);
}
.ops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.ops-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all .3s;
}
.ops-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.4);
}
.ops-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: var(--gold-light);
}
.ops-card h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.ops-card p  { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.6; }

.ops-disclaimer {
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 10px;
  padding: 18px 24px;
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ops-disclaimer i { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }

/* ── EXPANSION ───────────────────────────── */
.expansion { background: #fff; }

.expansion-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.tl-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #f0f5f2;
  border: 3px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all .3s;
}
.tl-circle span {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
}
.timeline-step.active .tl-circle {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.timeline-step.active .tl-circle span { color: #fff; }

.tl-content { padding: 0 16px; max-width: 240px; }
.tl-content h4 { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.tl-content p  { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

.timeline-connector {
  flex-shrink: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--border));
  margin-top: 38px;
  border-radius: 2px;
}

.expansion-states {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.state-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: #f0f5f2;
  color: var(--green-dark);
  font-size: .9rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
}
.state-tag i { color: var(--green-mid); }
.active-tag { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.active-tag i { color: var(--gold-light); }

/* ── INVESTMENT ──────────────────────────── */
.gold-section { background: linear-gradient(135deg, #fdf9ef 0%, #fff8e6 100%); }

.invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}
.invest-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,168,76,.2);
}
.invest-main {
  text-align: center;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
}
.invest-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--dark);
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(201,168,76,.4);
}
.invest-label { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 12px; }
.invest-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 20px;
}
.invest-main p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }

.invest-right { display: flex; flex-direction: column; gap: 16px; }
.invest-detail {
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.invest-icon-sm {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(26,77,46,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--green-mid);
  flex-shrink: 0;
}
.invest-detail-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 6px; }
.invest-detail-val { font-size: .95rem; font-weight: 600; color: var(--green-dark); line-height: 1.5; }

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

/* ── PROCESS ─────────────────────────────── */
.process { background: var(--off-white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 16px;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-dark);
  opacity: .15;
  line-height: 1;
  margin-bottom: 12px;
}
.step-content h4 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.step-content p  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

.process-arrow {
  color: var(--green-mid);
  font-size: 1.1rem;
  padding-top: 14px;
  opacity: .5;
}

/* ── CTA BANNER ──────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1f5c38 50%, var(--green-mid) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto 36px; }

/* ── APPLICATION FORM ────────────────────── */
.apply-section { background: #fff; }
.apply-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.apply-left { position: sticky; top: 90px; }
.apply-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.apply-intro { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

.apply-contact-links { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: all .25s;
}
.contact-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.whatsapp-link:hover { border-color: #25d366; }
.call-link:hover    { border-color: var(--green-mid); }
.contact-link i { font-size: 1.4rem; }
.whatsapp-link i { color: #25d366; }
.call-link i    { color: var(--green-mid); }
.contact-link span { display: block; font-weight: 700; font-size: .95rem; color: var(--green-dark); }
.contact-link small { font-size: .8rem; color: var(--text-muted); }

.apply-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #f0f5f2;
  border-radius: 10px;
}
.apply-brand img { height: 44px; border-radius: 4px; }
.apply-brand strong { display: block; font-size: .9rem; color: var(--green-dark); }
.apply-brand span   { font-size: .78rem; color: var(--text-muted); }

/* ── FORM ────────────────────────────────── */
.apply-form {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.req { color: #e53e3e; }
.optional { color: var(--text-muted); font-weight: 400; font-size: .8rem; }

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,122,79,.15);
}
.form-group input.error { border-color: #e53e3e; }

.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.radio-group.vertical { flex-direction: column; gap: 10px; }

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text);
  font-weight: 400;
  padding: 11px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  transition: all .2s;
}
.radio-option:hover { border-color: var(--green-mid); background: #f5fbf7; }
.radio-option input[type="radio"] { display: none; }
.radio-custom {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all .2s;
  position: relative;
}
.radio-option input[type="radio"]:checked ~ .radio-custom {
  border-color: var(--green-mid);
  background: var(--green-mid);
}
.radio-option input[type="radio"]:checked ~ .radio-custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #fff;
  border-radius: 50%;
}
.radio-option:has(input:checked) { border-color: var(--green-mid); background: #f5fbf7; }

.budget-no-msg {
  display: none;
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 8px;
  color: #7a5c1a;
  font-size: .9rem;
  gap: 10px;
  align-items: flex-start;
}
.budget-no-msg.show { display: flex; }
.budget-no-msg i { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.field-error {
  display: none;
  font-size: .8rem;
  color: #e53e3e;
  margin-top: 5px;
}
.field-error.show { display: block; }

.consent-group .checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: .875rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
}
.checkbox-option input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px; height: 20px;
  min-width: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  margin-top: 1px;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.checkbox-option input:checked ~ .checkbox-custom {
  background: var(--green-mid);
  border-color: var(--green-mid);
}
.checkbox-option input:checked ~ .checkbox-custom::after {
  content: '✓';
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
}

/* ── FORM SUCCESS ─────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 56px 40px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.form-success.show { display: block; }
.success-icon { font-size: 4rem; color: var(--green-mid); margin-bottom: 20px; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.form-success p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.success-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 48px; margin-bottom: 16px; border-radius: 4px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 12px; }
.footer-tagline {
  display: inline-block;
  background: rgba(201,168,76,.15);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: .06em;
}

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h5 { color: #fff; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col a i { margin-right: 8px; }
.footer-col p { color: rgba(255,255,255,.5); font-size: .875rem; margin-bottom: 16px; line-height: 1.6; }
.footer-apply-btn { display: inline-flex; }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 0;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .78rem; margin-bottom: 6px; }
.footer-disc { font-size: .72rem !important; color: rgba(255,255,255,.25) !important; }

/* ── SOCIAL ICONS — SHARED BASE ─────────────────────────── */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1rem;
  transition: all .25s;
  color: #fff;
}
.social-icon.instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.facebook  { background: #1877f2; }
.social-icon.whatsapp  { background: #25d366; }
.social-icon.email     { background: var(--green-mid); }
.social-icon:hover { transform: scale(1.15) translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.3); }

/* ── FOOTER SOCIAL ROW ───────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

/* ── FOOTER INLINE SOCIAL (in contact col) ───────────────── */
.footer-social-inline {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.footer-social-inline .social-icon { width: 34px; height: 34px; font-size: .9rem; }

/* ── NAVBAR SOCIAL ICONS ─────────────────────────────────── */
.nav-social {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}
.nav-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  transition: all .22s;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.nav-social-icon:hover { color: #fff; transform: translateY(-2px); }
.nav-social-icon.instagram:hover { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); border-color: transparent; }
.nav-social-icon.facebook:hover  { background: #1877f2; border-color: transparent; }
.nav-social-icon.whatsapp:hover  { background: #25d366; border-color: transparent; }
.nav-social-icon.email:hover     { background: var(--green-mid); border-color: transparent; }

/* ── FLOATING SOCIAL SIDEBAR (desktop) ──────────────────── */
.floating-social {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
  box-shadow: 2px 0 16px rgba(0,0,0,.2);
}
.float-icon {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 14px;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  width: 48px;
}
.float-icon.instagram { background: linear-gradient(160deg, #f09433, #dc2743, #bc1888); }
.float-icon.facebook  { background: #1877f2; }
.float-icon.whatsapp  { background: #25d366; }
.float-icon.email     { background: var(--green-mid); }

.float-label {
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width .35s, padding-left .35s;
  padding-left: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
}
.float-icon:hover {
  width: auto;
  padding-right: 18px;
}
.float-icon:hover .float-label {
  max-width: 120px;
  padding-left: 10px;
}
.float-icon:hover { filter: brightness(1.1); }

/* ── FLOATING WHATSAPP FAB (mobile) ─────────────────────── */
.whatsapp-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: all .25s;
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.7); }

/* ── APPLY FORM — email contact link ──────────────────────── */
.email-link i     { color: var(--green-mid); }
.email-link:hover { border-color: var(--green-mid); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; text-align: center; }
  .hero-content { padding: 100px 0 40px; }
  .hero-ctas { justify-content: center; }
  .hero-desc { max-width: 100%; }
  .hero-store-image { display: none; }

  .about-cards { grid-template-columns: repeat(2, 1fr); }
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .model-cards { grid-template-columns: 1fr; }
  .model-vs { flex-direction: row; padding-top: 0; }
  .invest-grid { grid-template-columns: 1fr; }
  .apply-wrapper { grid-template-columns: 1fr; }
  .apply-left { position: static; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  /* Hide floating sidebar on tablet, show FAB instead */
  .floating-social { display: none; }
  .whatsapp-fab { display: inline-flex; }
  .nav-social { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }

  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }

  .about-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: 1fr 1fr; }

  .trust-items { flex-direction: column; }
  .trust-divider { width: 100%; height: 1px; }
  .trust-item { padding: 20px 24px; }

  .expansion-timeline { flex-direction: column; align-items: center; }
  .timeline-connector { width: 3px; height: 32px; background: linear-gradient(180deg, var(--green-mid), var(--border)); }

  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); }
  .process-step { max-width: 300px; }

  .apply-form { padding: 28px 20px; }
  .footer-links { grid-template-columns: 1fr; }

  .invest-grid { grid-template-columns: 1fr; }
  .model-cards { grid-template-columns: 1fr; }

  /* Mobile social bar below mobile menu */
  .mobile-social-bar { display: flex; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-gold-lg, .btn-outline-lg { width: 100%; justify-content: center; }
  .ops-grid { grid-template-columns: 1fr; }
  .success-actions { flex-direction: column; align-items: center; }
  .radio-group { flex-direction: column; }
}

/* Show floating sidebar only on large screens */
@media (min-width: 1025px) {
  .whatsapp-fab { display: none; }
  .floating-social { display: flex; }
}
