
/* =========================================
   Health Nurture Fact - MODERN REDESIGN SYSTEM
   ========================================= */

:root {
  /* Core Palette */
  --primary: #059669;       /* Emerald 600 */
  --primary-dark: #064E3B;  /* Emerald 900 */
  --primary-light: #D1FAE5; /* Emerald 100 */
  --accent: #F59E0B;        /* Amber 500 */
  --accent-light: #FEF3C7;
  
  /* Neutrals */
  --bg-base: #F8FAFC;       /* Slate 50 */
  --bg-surface: #FFFFFF;
  --bg-dark: #0F172A;       /* Slate 900 */
  --bg-dark-card: #1E293B;  /* Slate 800 */
  
  --text-main: #1E293B;     /* Slate 800 */
  --text-muted: #64748B;    /* Slate 500 */
  --text-light: #F8FAFC;
  
  /* Effects */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-dark-bg: rgba(30, 41, 59, 0.6);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
  --shadow-glow: 0 0 40px rgba(5, 150, 105, 0.15);
  
  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing & Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --container: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* === UTILITIES === */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }

.grad-text {
  background: linear-gradient(135deg, var(--primary) 0%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--primary); margin-bottom: 16px;
}
.eyebrow i { font-size: 0.5rem; }

.grid { display: grid; gap: 24px; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(2, 1fr); }

/* Glass Card */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.glass:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: none; transition: var(--transition);
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4); }
.btn-ghost {
  background: transparent; color: var(--text-main);
  border: 1.5px solid #E2E8F0;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn-light { background: white; color: var(--primary-dark); font-weight: 700; }
.btn-light:hover { background: var(--primary-light); transform: translateY(-2px); }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(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; }

/* Background Orbs */
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; z-index: -1; pointer-events: none;
}
.orb-1 { width: 500px; height: 500px; background: #A7F3D0; top: -100px; left: -150px; }
.orb-2 { width: 400px; height: 400px; background: #FDE68A; bottom: -100px; right: -100px; }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05); padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--primary-dark); }
.logo-icon {
  width: 36px; height: 36px; background: var(--primary); color: white;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transform: rotate(-10deg);
}
.menu { display: flex; align-items: center; gap: 32px; }
.menu a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); position: relative; }
.menu a:not(.nav-cta):hover { color: var(--primary); }
.menu a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: var(--transition);
}
.menu a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--primary-dark) !important; color: white !important;
  padding: 10px 20px !important; border-radius: var(--radius-full) !important;
  font-weight: 600 !important; font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--primary) !important; transform: scale(1.05); }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-main); cursor: pointer; }

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; background: linear-gradient(180deg, #ECFDF5 0%, var(--bg-base) 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600; color: var(--primary-dark);
  box-shadow: var(--shadow-sm); margin-bottom: 24px; border: 1px solid var(--primary-light);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

.hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; color: var(--bg-dark); }
.hero .lead { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 32px; max-width: 540px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 16px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
}
.chip i { color: var(--primary); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-wrap {
  width: 100%; max-width: 500px; aspect-ratio: 4/5; border-radius: 40px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid white; position: relative; z-index: 2;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
  position: absolute; background: white; padding: 16px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  z-index: 3; animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.fc-1 { top: 15%; left: -30px; animation-delay: 0s; }
.fc-2 { bottom: 25%; right: -40px; animation-delay: 2s; }
.fc-3 { bottom: -20px; left: 10%; animation-delay: 4s; }
.fc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.fc-1 .fc-icon { background: #DCFCE7; color: #166534; }
.fc-2 .fc-icon { background: #FEE2E2; color: #991B1B; }
.fc-3 .fc-icon { background: #FEF3C7; color: #92400E; }
.float-card b { font-size: 1.1rem; display: block; color: var(--bg-dark); }
.float-card small, .float-card .stars { font-size: 0.75rem; color: var(--text-muted); display: block; }
.float-card .stars { color: var(--accent); margin-top: 2px; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.exp-badge {
  position: absolute; bottom: -20px; right: -20px; background: var(--primary);
  color: white; padding: 20px; border-radius: var(--radius-md); text-align: center;
  box-shadow: var(--shadow-glow); border: 4px solid white;
}
.exp-badge b { font-size: 2rem; display: block; font-family: var(--font-display); }
.exp-badge small { font-size: 0.8rem; opacity: 0.9; }

.about-copy h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.about-copy p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.about-list { margin: 24px 0; display: grid; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; font-size: 0.95rem; }
.about-list i { color: var(--primary); margin-top: 4px; }
.founder { display: flex; align-items: center; gap: 16px; margin-top: 32px; padding-top: 24px; border-top: 1px solid #E2E8F0; }
.founder b { display: block; font-size: 1rem; color: var(--bg-dark); }
.founder small { color: var(--text-muted); font-size: 0.85rem; }

.vmv { margin-top: 40px; }
.vmv-card { padding: 32px; text-align: center; }
.vmv-icon {
  width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 16px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.vmv-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 12px; }
.vmv-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* === FEATURES === */
#feature { background: linear-gradient(180deg, var(--bg-base) 0%, #F1F5F9 100%); }
.feat-card { padding: 32px; position: relative; overflow: hidden; }
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), #34D399); transform: scaleX(0);
  transform-origin: left; transition: var(--transition);
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--bg-base); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.feat-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 10px; }
.feat-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* === PROCESS (DARK) === */
.dark { background: var(--bg-dark); color: var(--text-light); }
.dark .section-head p { color: #94A3B8; }
.dark .eyebrow { color: #34D399; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; width: 80%; height: 2px;
  background: linear-gradient(90deg, transparent, #334155, transparent);
}
.step { text-align: center; position: relative; z-index: 2; }
.step-num {
  width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 50%;
  background: var(--bg-dark-card); border: 2px solid #334155;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--primary);
  transition: var(--transition);
}
.step:hover .step-num { background: var(--primary); color: white; border-color: var(--primary); transform: scale(1.1); }
.step-num i { display: none; } /* Hidden by default, can swap text for icon on hover via JS if desired */
.step h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 10px; }
.step p { color: #94A3B8; font-size: 0.9rem; line-height: 1.6; }

/* === SERVICES === */
.srv-card { overflow: hidden; background: white; border: 1px solid #F1F5F9; }
.srv-img { position: relative; height: 220px; overflow: hidden; }
.srv-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.srv-card:hover .srv-img img { transform: scale(1.05); }
.srv-icon {
  position: absolute; bottom: -20px; right: 24px; width: 48px; height: 48px;
  background: var(--primary); color: white; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: var(--shadow-md); border: 3px solid white;
}
.srv-body { padding: 32px 24px 24px; }
.srv-body h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 10px; }
.srv-body > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }
.srv-body ul { display: grid; gap: 8px; margin-bottom: 20px; }
.srv-body li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-main); }
.srv-body li i { color: var(--primary); font-size: 0.75rem; }
.srv-link { font-size: 0.9rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.srv-link:hover { gap: 10px; }

/* === PRICING === */
#pricing { background: linear-gradient(180deg, #F1F5F9 0%, var(--bg-base) 100%); }
.price-card {
  background: white; padding: 40px 32px; border-radius: var(--radius-lg);
  border: 1px solid #E2E8F0; text-align: center; position: relative;
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.popular {
  background: var(--bg-dark); color: white; border: none;
  transform: scale(1.05); box-shadow: var(--shadow-glow); z-index: 2;
}
.price-card.popular:hover { transform: scale(1.05) translateY(-8px); }
.pop-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--bg-dark); padding: 4px 16px;
  border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.price-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.price-card .for { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
.popular .for { color: #94A3B8; }
.price { font-family: var(--font-display); font-size: 3rem; font-weight: 800; margin-bottom: 24px; }
.price small { font-size: 1rem; font-weight: 400; opacity: 0.7; }
.price-list { text-align: left; display: grid; gap: 12px; margin-bottom: 32px; }
.price-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.price-list i { color: var(--primary); }
.popular .price-list i { color: #34D399; }
.price-note { text-align: center; margin-top: 40px; color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.price-note i { color: var(--primary); }

/* === BOOKING === */
#booking { background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 100%); }
.booking-panel {
  display: grid; grid-template-columns: 1fr 1.5fr;
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid #E2E8F0;
}
.booking-info { padding: 60px 40px; background: var(--primary-dark); color: white; }
.booking-info .eyebrow { color: #6EE7B7; }
.booking-info h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 16px; color: white; }
.booking-info h2 .grad-text { background: linear-gradient(135deg, #6EE7B7, #A7F3D0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.booking-info > p { color: #A7F3D0; font-size: 0.95rem; margin-bottom: 40px; line-height: 1.7; }
.booking-perks { display: grid; gap: 24px; }
.booking-perks li { display: flex; align-items: flex-start; gap: 16px; }
.booking-perks i { font-size: 1.2rem; color: #34D399; margin-top: 2px; }
.booking-perks b { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.booking-perks small { color: #94A3B8; font-size: 0.8rem; }

form { padding: 40px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text-main); }
.field input, .field select, .field textarea {
  padding: 12px 16px; border: 1.5px solid #E2E8F0; border-radius: var(--radius-sm);
  background: var(--bg-base); transition: var(--transition); outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(5,150,105,0.1); }
.field textarea { resize: vertical; min-height: 100px; }
.hp { position: absolute; left: -9999px; opacity: 0; } /* Honeypot */

/* === REVIEWS === */
.rev-card { padding: 32px; background: white; border: 1px solid #F1F5F9; }
.rev-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.rev-card blockquote { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.rev-user { display: flex; align-items: center; gap: 12px; }
.rev-user img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-light); }
.rev-user b { display: block; font-size: 0.9rem; color: var(--text-main); }
.rev-user small { font-size: 0.8rem; color: var(--text-muted); }
.rev-tag {
  margin-left: auto; background: var(--primary-light); color: var(--primary-dark);
  padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600;
}

/* === FAQ === */
#faq { background: var(--bg-base); }
.faq-wrap { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: white; border-radius: var(--radius-md); border: 1px solid #F1F5F9; overflow: hidden; transition: var(--transition); }
.faq-item.active { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.faq-q {
  width: 100%; padding: 20px 24px; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 1rem; color: var(--text-main); cursor: pointer; text-align: left;
}
.faq-q i { color: var(--primary); transition: var(--transition); font-size: 0.85rem; }
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #065F46 100%);
  padding: 80px 60px; border-radius: var(--radius-lg); text-align: center;
  color: white; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; position: relative; }
.cta-band p { color: #A7F3D0; font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; position: relative; }
.cta-band .btn { position: relative; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.info-card { padding: 24px; display: flex; align-items: flex-start; gap: 16px; background: white; border: 1px solid #F1F5F9; }
.ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--primary-light);
  color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.info-card h3 { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.info-card a, .info-card p { font-size: 0.95rem; font-weight: 600; color: var(--text-main); }
.info-card a:hover { color: var(--primary); }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px; background: white; border: 1px solid #E2E8F0;
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
}
.socials a:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }
.contact-form { padding: 40px; background: white; border: 1px solid #F1F5F9; border-radius: var(--radius-lg); }
.contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.contact-form > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

/* === FOOTER === */
footer { background: var(--bg-dark); color: #CBD5E1; padding: 80px 0 0; }
.f-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid #334155; }
.f-brand p { font-size: 0.9rem; line-height: 1.7; margin: 16px 0 24px; color: #94A3B8; }
.f-brand .socials a { background: var(--bg-dark-card); border-color: #334155; color: #94A3B8; }
.f-brand .socials a:hover { background: var(--primary); border-color: var(--primary); color: white; }
footer h4 { font-family: var(--font-display); color: white; font-size: 1rem; margin-bottom: 20px; }
.f-links li { margin-bottom: 12px; }
.f-links a { font-size: 0.9rem; color: #94A3B8; display: flex; align-items: center; gap: 8px; }
.f-links a i { font-size: 0.6rem; color: var(--primary); }
.f-links a:hover { color: white; transform: translateX(4px); }
.news-form { display: flex; gap: 8px; margin-bottom: 12px; }
.news-form input {
  flex: 1; padding: 12px 16px; background: var(--bg-dark-card); border: 1px solid #334155;
  border-radius: var(--radius-sm); color: white; outline: none;
}
.news-form input:focus { border-color: var(--primary); }
.news-form button {
  width: 44px; background: var(--primary); color: white; border: none;
  border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition);
}
.news-form button:hover { background: #047857; }
.f-note { font-size: 0.75rem; color: #64748B; }
.f-note a { color: var(--primary); text-decoration: underline; }
.f-bottom {
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.85rem; color: #64748B;
}
.f-bottom a { color: #94A3B8; margin-left: 24px; }
.f-bottom a:hover { color: white; }

/* === TOAST & BACK TO TOP === */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--bg-dark); color: white; padding: 16px 24px; border-radius: var(--radius-full);
  display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 9999; opacity: 0; transition: var(--transition);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast i { color: #34D399; }

#toTop {
  position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px;
  background: var(--primary); color: white; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transform: translateY(20px); transition: var(--transition); z-index: 999;
}
#toTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#toTop:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .f-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .menu {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
    background: white; flex-direction: column; align-items: flex-start;
    padding: 80px 32px 32px; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition); z-index: 998;
  }
  .menu.open { right: 0; }
  .hamburger { display: block; z-index: 999; }
  
  .hero-grid, .about-grid, .booking-panel, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; min-height: auto; padding-bottom: 60px; }
  .hero-visual { margin-top: 40px; }
  .float-card { display: none; } /* Hide floating cards on mobile to prevent layout issues */
  .exp-badge { bottom: 20px; right: 20px; }
  
  .g3, .g4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  .booking-info { padding: 40px 24px; }
  form { padding: 24px; }
  
  .price-card.popular { transform: scale(1); }
  .price-card.popular:hover { transform: translateY(-8px); }
  
  .f-grid { grid-template-columns: 1fr; }
  .f-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-band { padding: 40px 24px; }
}
