/* ========================================
   HEGOL LANDING PAGE — V2
   Brand: Gold #F4BF42 + Brown #6A2B1A
   Font: Larger, bolder, easier to read
   ======================================== */

:root {
  --gold: #F4BF42;
  --gold-light: #FDF3D7;
  --gold-dark: #D4A332;
  --gold-hover: #E0AE35;
  --brown: #6A2B1A;
  --brown-light: #8B4332;
  --brown-soft: #A0665A;
  --brown-bg: #FBF6F4;
  --brown-bg-deep: #3D1810;

  --bg: #FFFCF7;
  --bg-warm: #F9F1E8;
  --bg-card: #FFFFFF;
  --bg-dark: #2E1A12;

  --text: #3A2218;
  --text-soft: #7A5E52;
  --text-muted: #A89488;
  --text-on-dark: #FFF8EE;
  --text-on-dark-soft: #D4BFA8;

  --border: #E8DDD4;
  --danger: #C45B4A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Be Vietnam Pro', system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --max-w: 820px;
  --section-py: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.label-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 14px;
}
.label-tag-gold {
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5.5vw, 42px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--brown);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 580px;
}

/* ---- STICKY HEADER ---- */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,252,247,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
}
.top-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.top-cta:hover { background: var(--gold-hover); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--brown-soft); background: rgba(106,43,26,0.04); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  background: transparent;
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid var(--brown);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--brown-bg); }

/* ---- SECTION 1: HERO ---- */
.hero {
  padding-top: 130px;
  padding-bottom: 40px;
  text-align: center;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-title em {
  font-style: italic;
  color: var(--brown-light);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--gold);
  opacity: 0.35;
  z-index: -1;
  border-radius: 4px;
}
.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 32px;
}
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-meta-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 16px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero image / video */
.hero-visual {
  margin-top: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--bg-warm);
  position: relative;
}
.hero-visual video,
.hero-visual iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}
.img-placeholder svg { opacity: 0.35; }

/* ---- SECTION 2: INSIGHT ---- */
.insight { background: var(--bg-warm); }
.insight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 640px) {
  .insight-cards { grid-template-columns: 1fr; }
}
.insight-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border);
}
.insight-card-quote {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 10px;
}
.insight-card-sub {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}
.insight-bottom {
  margin-top: 32px;
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 580px;
}

/* ---- SECTION 3: SOLUTION ---- */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .solution-grid { grid-template-columns: 1fr; gap: 32px; }
}
.solution-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-warm);
}
.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.solution-points { list-style: none; }
.solution-points li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.solution-points li:last-child { border-bottom: none; }
.solution-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.solution-check svg { width: 14px; height: 14px; }
.solution-point-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}
.solution-point-sub {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ---- SECTION 4: VIDEO ASMR ---- */
.video-section {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  overflow: hidden;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; gap: 32px; }
}
.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: rgba(255,255,255,0.06);
  max-height: 520px;
}
.video-frame video,
.video-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-frame .img-placeholder {
  color: var(--text-on-dark-soft);
}
.video-frame .img-placeholder svg { opacity: 0.25; }
.video-content .section-title { color: var(--text-on-dark); }
.video-content .label-tag-gold { color: var(--gold); }
.video-content p {
  font-size: 17px;
  color: var(--text-on-dark-soft);
  line-height: 1.8;
  margin-bottom: 28px;
}
.video-highlights {
  list-style: none;
  margin-bottom: 32px;
}
.video-highlights li {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-on-dark);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.video-highlights li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.video-content .btn-primary {
  background: var(--gold);
  color: var(--brown);
}
.video-content .btn-primary:hover { background: var(--gold-hover); }

/* ---- SECTION 5: QUY TRÌNH 4 BƯỚC ---- */
.process { background: var(--brown); color: var(--text-on-dark); }
.process .section-title { color: var(--text-on-dark); }
.process .section-sub { color: var(--text-on-dark-soft); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
}
.process-step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background 0.2s;
}
.process-step:hover { background: rgba(255,255,255,0.12); }
.process-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.process-step-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-on-dark);
}
.process-step-desc {
  font-size: 15px;
  color: var(--text-on-dark-soft);
  line-height: 1.75;
}
.process-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(244,191,66,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.process-step-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.process-flow-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  padding: 8px 18px;
  background: rgba(244,191,66,0.12);
  border-radius: 100px;
  border: 1px solid rgba(244,191,66,0.25);
}
.process-flow-arrow {
  color: var(--text-on-dark-soft);
  font-size: 18px;
}
@media (max-width: 480px) {
  .process-flow-arrow { display: none; }
  .process-flow { gap: 8px; }
}

/* ---- SECTION 6: SOCIAL PROOF ---- */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; }
}
.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.proof-card-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.proof-card-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 18px;
}
.proof-card-author {
  font-size: 14px;
  color: var(--text-muted);
}
.proof-card-author strong {
  color: var(--text);
  font-weight: 600;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 500px) {
  .proof-stats { grid-template-columns: 1fr; }
}
.proof-stat {
  text-align: center;
  padding: 24px;
  background: var(--gold-light);
  border-radius: var(--radius);
}
.proof-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--brown);
}
.proof-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-soft);
  margin-top: 4px;
}

/* ---- SECTION 7: PRICING ---- */
.pricing { background: var(--bg-warm); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(106,43,26,0.08); }
.pricing-card.featured { border: 2px solid var(--gold); }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-duration {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--brown);
  margin-top: 8px;
}
.pricing-duration span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  margin: 10px 0;
}
.pricing-desc {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.7;
}
.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px 24px;
}

/* ---- SECTION 8: LOCATION ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 560px) {
  .location-grid { grid-template-columns: 1fr; }
}
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.location-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.location-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
}
.location-card-text {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}
.location-card-text strong {
  color: var(--text);
  font-weight: 600;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-size: 15px; color: var(--text-soft); }
.hours-time { font-size: 15px; font-weight: 600; }
.hours-time.closed { color: var(--danger); }

.map-frame {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
}
.map-frame .img-placeholder {
  height: 220px;
  background: var(--bg-warm);
}
.directions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 14px;
}
.directions-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.directions-link:hover { text-decoration: underline; }
.hotline-inline {
  font-size: 15px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hotline-inline strong { color: var(--brown); font-weight: 600; }
.hotline-dot-sm {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2E9E6A;
}

/* Hotline glass bar */
.hotline-glass {
  margin-top: 24px;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.hotline-glass-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.hotline-glass-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hotline-glass-text {
  font-size: 15px;
  color: var(--text-on-dark-soft);
}
.hotline-glass-text strong {
  color: var(--text-on-dark);
  font-weight: 700;
}
.hotline-glass-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-on-dark);
  text-decoration: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}
.hotline-glass-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.hotline-glass-btn::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.03);
  pointer-events: none;
}
.hotline-glass-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.hotline-glass-btn span {
  font-size: 16px;
}

/* ---- SECTION 9: TRUST ---- */
.trust-section { background: var(--bg-warm); }
.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 560px) {
  .trust-items { grid-template-columns: 1fr; }
}
.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.trust-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}
.trust-item-desc {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ---- SECTION 10: FINAL CTA ---- */
.final-cta {
  background: var(--brown);
  color: var(--text-on-dark);
  text-align: center;
}
.final-cta .section-title {
  color: var(--text-on-dark);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-sub {
  font-size: 18px;
  color: var(--text-on-dark-soft);
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.final-cta .btn-primary {
  background: var(--gold);
  color: var(--brown);
  font-size: 18px;
  padding: 18px 48px;
}
.final-cta .btn-primary:hover { background: var(--gold-hover); }
.final-cta-phone {
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-on-dark-soft);
}
.final-cta-phone a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* ---- FOOTER ---- */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(75, 28, 18, 0.80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  background-color: #fff8eb;
  border-radius: 48px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  animation: modalSlideUp .35s ease-out;
  z-index: 999999;
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-body { padding: 2rem; }
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; padding: 0; border-bottom: none; margin-bottom: 0; }
.modal-header-text { display: flex; flex-direction: column; gap: 8px; }
.modal-close {
  padding: 8px;
  border: none;
  background: transparent;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: #6a2b1a;
  transition: background-color .2s;
}
.modal-close:hover { background-color: rgba(106, 43, 26, 0.08); }
.modal-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #6a2b1a;
}
.modal-subtitle { font-size: 0.9375rem; color: rgba(75, 42, 32, 0.60); }
.modal-form { margin-top: 0 !important; display: flex; flex-direction: column; gap: 24px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.modal-field { display: flex; flex-direction: column; gap: 8px; }
.modal-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(75, 42, 32, 0.50);
  margin-left: 8px;
}
.modal-input,
.modal-select {
  width: 100%;
  background-color: #f7ead7;
  border: none;
  border-radius: 16px;
  padding: 16px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #4b2a20;
  outline: none;
  transition: box-shadow .2s;
}
.modal-input:focus, .modal-select:focus { box-shadow: 0 0 0 2px #f4bf42; }
.modal-input::placeholder { color: rgba(75, 42, 32, 0.35); }
.modal-select {
  padding: 16px 32px 16px 16px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234b2a20' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.modal-submit {
  width: 100%;
  background-color: var(--gold);
  color: #fff;
  padding: 20px;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background-color .2s;
}
.modal-submit:hover { background-color: #4b1c12; }
.modal-thankyou {
  display: none;
  padding: 56px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  animation: modalSlideUp .35s ease-out;
}
.modal-thankyou.is-visible { display: flex; }
.modal-thankyou-icon {
  width: 96px;
  height: 96px;
  background-color: rgba(244, 191, 66, 0.22);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
}
.modal-thankyou-title { font-size: 2.25rem; font-weight: 600; color: #6a2b1a; }
.modal-thankyou-desc {
  font-size: 0.9375rem;
  color: rgba(75, 42, 32, 0.60);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}
.modal-thankyou-btn {
  background-color: #f7ead7;
  color: #6a2b1a;
  padding: 16px 40px;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background-color .2s;
}
.modal-thankyou-btn:hover { background-color: rgba(244, 191, 66, 0.30); }
@media (max-width: 767px) {
  .modal-overlay { padding: 16px; }
  .modal-card { border-radius: 32px; }
  .modal-body { padding: 28px 24px; }
  .modal-form { gap: 12px; margin-top: 24px; }
  .modal-row { grid-template-columns: 1fr; }
  .modal-title { font-size: 1.75rem; }
  .modal-thankyou { padding: 40px 24px; }
}

/* ---- SCROLL ANIMATION ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- FLOATING CTA MOBILE ---- */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 90;
  background: rgba(255,252,247,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
}
@media (max-width: 640px) {
  .float-cta { display: flex; gap: 10px; }
  body { padding-bottom: 80px; }
}
.float-cta .btn-primary {
  flex: 1;
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
}
.float-cta .btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  flex-shrink: 0;
  text-decoration: none;
}
