/* =============================================
   VEDIC ROOTS WELLNESS — STYLE SHEET
   Design: Earthy greens + gold, calming spa feel
   ============================================= */

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

:root {
    --bg: #faf8f4;
    --bg-warm: #f5f0e8;
    --bg-dark: #1a1510;
    --bg-card: #ffffff;
    --text: #2c2418;
    --text-muted: #7a7060;
    --gold: #b8860b;
    --gold-light: #d4a942;
    --gold-glow: rgba(184,134,11,0.08);
    --green: #2d5a3e;
    --green-light: #4a8a6a;
    --green-glow: rgba(45,90,62,0.08);
    --border: rgba(0,0,0,0.06);
    --border-warm: rgba(184,134,11,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: var(--green);
}

a { color: var(--green); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--green-light); }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding: 0.4rem 1rem;
    background: var(--gold-glow);
    border: 1px solid var(--border-warm);
    border-radius: 50px;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem;
    cursor: pointer; border: none; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff; box-shadow: 0 4px 15px rgba(45,90,62,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(45,90,62,0.4); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.25); color: #fff; }
.btn-outline {
    background: transparent; border: 1px solid var(--border);
    color: var(--text); font-weight: 600;
}
.btn-outline:hover { background: var(--green-glow); border-color: var(--green); color: var(--green); }
.btn-full { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

/* NAVIGATION */
nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    padding: 1rem 0; transition: all 0.4s;
}
nav.scrolled {
    background: rgba(250,248,244,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 0;
    box-shadow: 0 1px 10px rgba(0,0,0,0.04);
}
nav.scrolled .logo-text { color: var(--text); }
nav.scrolled .nav-links a { color: var(--text-muted); }
nav.scrolled .nav-links a:hover { color: var(--text); }

.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-icon { font-size: 1.5rem; }
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 700; color: #fff; transition: color 0.3s;
}

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.nav-cta {
    background: linear-gradient(135deg, var(--green), var(--green-light)) !important;
    color: #fff !important;
    padding: 0.55rem 1.3rem; border-radius: 50px; font-weight: 600 !important;
}

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.hamburger span { width: 24px; height: 2px; background: #fff; transition: 0.3s; }
nav.scrolled .hamburger span { background: var(--text); }

/* HERO */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,21,16,0.65), rgba(45,90,62,0.35));
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 8rem 1.5rem 4rem; max-width: 800px; color: #fff;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(184,134,11,0.15); border: 1px solid rgba(184,134,11,0.3);
    border-radius: 50px; padding: 0.5rem 1.2rem;
    font-size: 0.85rem; color: var(--gold-light);
    margin-bottom: 1.5rem; animation: fadeIn 1s ease;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600; line-height: 1.15; margin-bottom: 1.2rem;
    animation: fadeInUp 1s ease 0.2s both;
}
.hero h1 em { color: var(--gold-light); }
.hero p {
    font-size: 1.1rem; opacity: 0.85; max-width: 600px; margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}
.hero-actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s both;
}
.hero-trust {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-top: 3rem; font-size: 0.85rem; opacity: 0.8;
    animation: fadeInUp 1s ease 0.7s both;
}
.stars { color: #f5c518; letter-spacing: 1px; }
.trust-sep { color: rgba(255,255,255,0.3); }

/* PHILOSOPHY STRIP */
.philosophy-strip {
    padding: 4rem 0;
    background: var(--bg-dark);
    border-bottom: 2px solid var(--gold);
}
.philo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.philo-item { text-align: center; color: #fff; }
.philo-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.philo-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--gold-light); }
.philo-item p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* TREATMENTS */
.treatments { padding: 6rem 0; }
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.treatment-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
}
.treatment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.treatment-visual { height: 160px; }
.treatment-info { padding: 1.5rem; }
.treatment-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 700; margin-bottom: 0.6rem;
}
.treatment-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.treatment-meta { display: flex; gap: 1rem; }
.treatment-meta span { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

/* PACKAGES */
.packages { padding: 6rem 0; background: var(--bg-warm); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.package-card {
    position: relative;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2.5rem 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-card.featured {
    border-color: var(--green);
    background: linear-gradient(180deg, var(--green-glow), var(--bg-card));
}
.pkg-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: #fff;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; padding: 0.35rem 1rem; border-radius: 50px;
}

.package-header { margin-bottom: 1.5rem; }
.pkg-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-muted); font-weight: 600;
}
.package-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700; margin: 0.3rem 0 0.5rem;
}
.pkg-price {
    font-size: 2rem; font-weight: 800; color: var(--green);
}
.pkg-price span {
    font-size: 0.9rem; font-weight: 400; color: var(--text-muted);
}

.pkg-features { list-style: none; margin-bottom: 2rem; }
.pkg-features li {
    padding: 0.45rem 0; color: var(--text-muted); font-size: 0.88rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.pkg-features li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ABOUT */
.about { padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 600; margin-bottom: 1.2rem;
}
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

.about-stats { display: flex; gap: 2rem; margin-top: 2rem; }
.astat h4 {
    font-size: 2rem; font-weight: 800; color: var(--green);
}
.astat p { font-size: 0.82rem; color: var(--text-muted); }

.about-visual { display: flex; justify-content: center; }
.av-card {
    border-radius: var(--radius); padding: 3rem;
    width: 100%; min-height: 300px;
    display: flex; align-items: center; justify-content: center;
}
.av-inner { text-align: center; color: #fff; }
.av-quote {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-style: italic;
    line-height: 1.5; margin-bottom: 1rem;
}
.av-source { font-size: 0.85rem; opacity: 0.7; }

/* BLOG */
.blog { padding: 6rem 0; background: var(--bg-warm); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.blog-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-image { height: 180px; }
.blog-content { padding: 1.5rem; }
.blog-tag {
    display: inline-block; font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 1px; color: var(--gold); font-weight: 600;
    background: var(--gold-glow); padding: 0.25rem 0.7rem;
    border-radius: 50px; margin-bottom: 0.8rem;
}
.blog-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600;
    margin-bottom: 0.6rem; line-height: 1.3;
}
.blog-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-link { font-weight: 600; font-size: 0.88rem; }

/* TESTIMONIALS */
.testimonials { padding: 6rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem;
    transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card .stars { font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card p {
    font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 1.5rem; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 0.8rem; }
.t-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem; color: #fff;
}
.t-author h4 { font-size: 0.9rem; font-weight: 600; }
.t-author span { font-size: 0.78rem; color: var(--text-muted); }

/* CONSULTATION FORM */
.consult { padding: 6rem 0; background: var(--bg-warm); }
.consult-wrapper {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start;
}
.consult-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 600; margin-bottom: 1rem;
}
.consult-info > p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }

.consult-options { display: flex; flex-direction: column; gap: 1.2rem; }
.co-item {
    display: flex; gap: 1rem; align-items: flex-start;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 1.2rem;
}
.co-icon { font-size: 1.5rem; }
.co-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.co-item p { font-size: 0.85rem; color: var(--text-muted); }

.consult-form {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 0.5rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.4rem; }

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg); border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm); padding: 0.75rem 1rem;
    color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
}
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }

/* CONTACT */
.contact { padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.ci { display: flex; gap: 1rem; align-items: flex-start; }
.ci span:first-child { font-size: 1.5rem; }
.ci h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.ci p { font-size: 0.9rem; color: var(--text-muted); }

.contact-map {
    border-radius: var(--radius); overflow: hidden;
    min-height: 350px; background: var(--bg-warm); border: 1px solid var(--border);
}
.contact-map iframe { display: block; }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 56px; height: 56px; background: #25d366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    z-index: 99; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    transition: transform 0.3s; animation: bounceIn 1s ease 2s both;
}
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes bounceIn {
    0% { opacity:0; transform: scale(0.3); }
    50% { opacity:1; transform: scale(1.05); }
    70% { transform: scale(0.95); }
    100% { opacity:1; transform: scale(1); }
}

/* FOOTER */
footer { padding: 4rem 0 2rem; background: var(--bg-dark); color: #fff; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 0.8rem; }

.footer-links h4 {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 1rem; color: var(--gold-light);
}
.footer-links a { display: block; color: rgba(255,255,255,0.5); font-size: 0.9rem; padding: 0.3rem 0; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem; display: flex; justify-content: space-between;
    font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-demo a { color: var(--gold-light); }

/* ANIMATIONS */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeInUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 992px) {
    .philo-grid { grid-template-columns: repeat(2, 1fr); }
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .consult-wrapper { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(250,248,244,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 1.5rem; gap: 1rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .nav-links a { color: var(--text) !important; }
    .hamburger { display: flex; }
    .philo-grid { grid-template-columns: 1fr; }
    .treatments-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-trust { flex-direction: column; gap: 0.3rem; }
    .trust-sep { display: none; }
    .about-stats { flex-wrap: wrap; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
