/* ══════════════════════════════════════════════
   AKANSHA'S HOME SALON — style.css
   Fonts: Cormorant Garamond (display) + Jost (body)
   Palette: Rose · Gold · Cream · Dark
══════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --rose:        #c8717a;
  --rose-light:  #f5dfe1;
  --rose-dark:   #9e3d47;
  --gold:        #c9a96e;
  --gold-light:  #f5ead8;
  --cream:       #fdf8f4;
  --dark:        #1e1412;
  --text:        #3a2929;
  --muted:       #7a6060;
  --border:      #e8d5d0;
  --white:       #ffffff;
  --radius:      14px;
  --shadow:      0 4px 24px rgba(30,20,18,.10);
  --shadow-lg:   0 12px 48px rgba(30,20,18,.15);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; -webkit-tap-highlight-color: transparent; }
input, select, textarea { font-family: inherit; }

/* ── Layout ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rose-dark);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px; font-weight: 600; letter-spacing: .03em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(158,61,71,.35);
  border: none;
}
.btn-primary:hover { background: var(--rose); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(158,61,71,.4); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 14px; font-weight: 500;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--rose); background: var(--rose-light); }

.btn-sm { padding: 9px 20px; font-size: 13px; }

.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff;
  padding: 13px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: background .2s;
}
.btn-whatsapp:hover { background: #1da851; }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,248,244,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(30,20,18,.06);
}
.header-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; gap: 24px;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-monogram {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rose-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  flex-shrink: 0;
}
.brand-monogram.sm { width: 34px; height: 34px; font-size: 17px; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--rose-dark); line-height: 1; }
.brand-tagline { font-size: 10px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }

/* Nav */
.header-nav { display: flex; gap: 32px; margin-left: auto; }
.header-nav a { font-size: 13px; font-weight: 500; color: var(--muted); transition: color .2s; letter-spacing: .02em; }
.header-nav a:hover { color: var(--rose-dark); }

.btn-book-header { margin-left: 16px; padding: 9px 22px; font-size: 13px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .25s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 80px 24px 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #fdf0f2 0%, #fdf8f4 50%, #f5ead8 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(200,113,122,.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(201,169,110,.10) 0%, transparent 40%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, #f9e8ea 0%, #f5dfe1 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 520px;
  flex: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title em { color: var(--rose-dark); font-style: italic; }
.hero-sub {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  max-width: 420px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero-pills span {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 50px;
  font-size: 12px; color: var(--muted);
}

/* Hero card */
.hero-card {
  position: relative; z-index: 1;
  margin-left: auto;
  flex-shrink: 0;
}
.hero-card-inner {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 220px;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hc-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--text);
}
.hc-row:last-of-type { border-bottom: none; }
.hc-ico { font-size: 18px; width: 28px; text-align: center; }
.hc-cta {
  display: block; margin-top: 18px;
  background: var(--rose-dark); color: #fff;
  text-align: center; padding: 11px;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  transition: background .2s;
}
.hc-cta:hover { background: var(--rose); }

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
.section { padding: 80px 0; }
.section-alt { background: #fff9f7; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--rose-dark);
  background: var(--rose-light);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600; color: var(--dark);
}
.section-header h2 em { color: var(--rose-dark); font-style: italic; }
.section-desc { font-size: 15px; color: var(--muted); margin-top: 10px; }

/* ══════════════════════════════════════════════
   FILTER CHIPS
══════════════════════════════════════════════ */
.filter-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px; justify-content: center;
}
.chip {
  padding: 8px 18px; border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; gap: 6px;
}
.chip:hover { border-color: var(--rose); color: var(--rose-dark); }
.chip.active {
  background: var(--rose-dark); color: #fff;
  border-color: var(--rose-dark);
  box-shadow: 0 4px 12px rgba(158,61,71,.3);
}

/* ══════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  user-select: none;
}
.service-card:hover { border-color: var(--rose); box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card.selected {
  border-color: var(--rose-dark);
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(158,61,71,.12), var(--shadow);
}
.sc-check {
  position: absolute; top: 14px; right: 14px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; transition: all .2s;
}
.service-card.selected .sc-check {
  background: var(--rose-dark); color: #fff;
}
.sc-cat {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em;
  color: var(--rose-dark); margin-bottom: 8px;
}
.sc-name { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; padding-right: 28px; }
.sc-desc { font-size: 12px; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.sc-price { font-size: 18px; font-weight: 700; color: var(--rose-dark); }
.sc-price span { font-size: 13px; font-weight: 400; color: var(--muted); }

/* ══════════════════════════════════════════════
   CART BAR
══════════════════════════════════════════════ */
.cart-bar {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 150;
  width: calc(100% - 32px); max-width: 600px;
  background: var(--dark);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30,20,18,.3);
  padding: 14px 20px;
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform: translateX(-50%) translateY(20px); opacity: 0; } }
.cart-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cart-info { display: flex; flex-direction: column; }
.cart-count { font-size: 12px; color: rgba(255,255,255,.6); }
.cart-total { font-size: 20px; font-weight: 700; color: #fff; }

/* ══════════════════════════════════════════════
   SUBSCRIPTIONS
══════════════════════════════════════════════ */
.subs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.sub-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.sub-card:hover { border-color: var(--rose); box-shadow: var(--shadow); transform: translateY(-2px); }
.sub-card.selected { border-color: var(--rose-dark); background: #fff8f8; box-shadow: 0 0 0 3px rgba(158,61,71,.12); }
.sub-badge {
  display: inline-block;
  background: var(--gold-light); color: #7a5c1e;
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 50px;
  margin-bottom: 12px;
}
.sub-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.sub-best { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.sub-price {
  font-size: 2rem; font-weight: 700; color: var(--rose-dark);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 4px;
}
.sub-price sub { font-size: 14px; font-weight: 500; color: var(--muted); font-family: 'Jost', sans-serif; }
.sub-savings {
  font-size: 12px; color: #2d6a4f; background: #d4edda;
  padding: 3px 10px; border-radius: 50px; display: inline-block;
  margin-bottom: 16px;
}
.sub-includes { list-style: none; }
.sub-includes li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text);
  padding: 5px 0; border-bottom: 1px solid #f3e8e6;
}
.sub-includes li:last-child { border-bottom: none; }
.sub-includes li::before { content: '✓'; color: var(--rose); font-weight: 700; flex-shrink: 0; }
.sub-note { font-size: 11px; color: var(--muted); margin-top: 12px; font-style: italic; }
.sub-select-btn {
  width: 100%; margin-top: 18px;
  padding: 11px; border-radius: 10px;
  border: 1.5px solid var(--rose);
  color: var(--rose-dark); font-size: 13px; font-weight: 600;
  background: none; transition: all .2s;
}
.sub-select-btn:hover, .sub-card.selected .sub-select-btn {
  background: var(--rose-dark); color: #fff; border-color: var(--rose-dark);
}

/* ══════════════════════════════════════════════
   BOOKING FORM
══════════════════════════════════════════════ */
.booking-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

/* Summary panel */
.booking-summary {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky; top: 88px;
}
.bs-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--rose-dark); margin-bottom: 14px; }
.bs-empty { font-size: 13px; color: var(--muted); }
.bs-empty a { color: var(--rose-dark); text-decoration: underline; }
.bs-list { display: flex; flex-direction: column; gap: 8px; }
.bs-item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--border);
}
.bs-item-name { color: var(--text); flex: 1; }
.bs-item-price { font-weight: 600; color: var(--rose-dark); white-space: nowrap; margin-left: 8px; }
.bs-item-remove { color: var(--muted); font-size: 16px; cursor: pointer; margin-left: 6px; transition: color .2s; }
.bs-item-remove:hover { color: var(--rose-dark); }
.bs-fee { padding: 12px 0; border-bottom: 1px solid var(--border); }
.fee-toggle { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: var(--text); }
.fee-toggle input { accent-color: var(--rose-dark); width: 16px; height: 16px; }
.bs-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; font-size: 15px; color: var(--dark);
}
.bs-total strong { font-size: 22px; color: var(--rose-dark); font-family: 'Cormorant Garamond', serif; }
.bs-sub-selected {
  margin-top: 12px; padding: 10px 14px;
  background: var(--gold-light); border-radius: 8px;
  font-size: 12px; color: #7a5c1e;
}

/* Form */
.booking-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.opt { font-weight: 400; text-transform: none; font-size: 11px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); background: var(--white); }
.form-group textarea { resize: vertical; }

.form-validation-msg { font-size: 13px; color: #8b1a2d; background: #fde8e8; border-radius: 8px; padding: 10px 14px; margin-bottom: 16px; display: none; }
.form-validation-msg.show { display: block; }

.btn-submit { width: 100%; padding: 15px; font-size: 15px; border-radius: 12px; }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ══════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(30,20,18,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 440px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: popIn .3s ease;
}
@keyframes popIn { from { transform: scale(.92); opacity: 0; } }
.modal-icon { font-size: 48px; margin-bottom: 14px; }
.modal-box h3 { font-size: 1.6rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.modal-box p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.modal-bid {
  display: inline-block;
  background: var(--rose-light); color: var(--rose-dark);
  font-size: 13px; font-weight: 600;
  padding: 5px 16px; border-radius: 50px;
  margin-bottom: 24px;
}
.modal-actions { display: flex; flex-direction: column; gap: 10px; align-items: center; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 48px 24px 32px;
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: #fff; }
.footer-sub { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }
.footer-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.footer-info div { font-size: 13px; color: rgba(255,255,255,.55); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .hero { min-height: auto; flex-direction: column; gap: 40px; padding: 60px 24px 40px; }
  .hero-bg::after { display: none; }
  .hero-card { margin-left: 0; width: 100%; max-width: 320px; }
  .hero-card-inner { animation: none; }
}

@media (max-width: 640px) {
  .header-nav, .btn-book-header { display: none; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero-title { font-size: 2.2rem; }
  .subs-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
