/* ====================================
   AIDA VARGAS – MOBILE-FIRST FINAL (FULLY RESTORED)
   ==================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

/* === Variables === */
:root {
    --primary: #F8F5F2;
    --primary-dark: #a68554;
    --accent: #D4A574;
    --accent-light: #E8C7A3;
    --bg-soft: #F8F5F2;
    --text: #2D3748;
    --text-dark: #1A202C;
    --gray-50: #FAFAFA;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E0;
    --gray-600: #718096;
    --gray-900: #1A202C;
    --bg: var(--gray-50);
}
/* ←←← Smooth Form on Contact Form ←←← */
html {
    scroll-behavior: smooth !important;
}

/* === Reset & Base === */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
body { 
    font-family: 'Inter', sans-serif; 
    background: var(--bg); 
    color: var(--text); 
    line-height: 1.7; 
    overflow-x: hidden;
    transition: background 0.3s;
}
h1, h2, h3 { 
    font-family: 'Playfair Display', serif; 
    font-weight: 700; 
}
img { max-width: 100%; height: auto; }

/* === Layout === */
.full-width { width: 100%; }
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 60px 20px; 
}
header.full-width > .container { padding: 100px 20px; }
#contact.full-width > .container { padding: 80px 20px; }
footer.full-width > .container { padding: 30px 20px; }
.testimonials.full-width > .container { padding: 50px 20px; }

/* === Sticky Nav === */
.sticky-nav {
    position: sticky; 
    top: 0; 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px);
    z-index: 1000; 
    padding: 12px 0; 
    transition: all .3s;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.sticky-nav.scrolled { 
    padding: 8px 0; 
    box-shadow: 0 4px 15px rgba(0,0,0,.15); 
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 20px; 
    position: relative;
}





/* Logo */
.logo { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--primary-dark); 
    text-decoration: none;
    display: flex; 
    align-items: center; 
    gap: 10px;
}
.logo img { 
    width: 40px; 
    height: auto; 
    transition: transform .3s; 
}
.logo:hover img { 
    transform: scale(1.1); 
}
.sticky-nav.scrolled .logo img { 
    width: 32px; 
}

/* Nav Right */
.nav-right { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

/* Desktop Nav Links */
.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 24px; 
}
.nav-links a { 
    color: var(--text); 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 1rem;
    transition: color .3s; 
}
.nav-links a:hover, 
.nav-links a.active { 
    color: var(--accent); 
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { 
    transform: rotate(45deg) translate(6px, 6px); 
}
.hamburger.active span:nth-child(2) { 
    opacity: 0; 
}
.hamburger.active span:nth-child(3) { 
    transform: rotate(-45deg) translate(7px, -7px); 
}

/* === Mobile Menu === */
@media (max-width: 768px) {
    .hamburger { 
        display: flex; 
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-links a {
        font-size: 1.1rem;
        padding: 8px 0;
        display: block;
    }
    body.no-scroll { 
        overflow: hidden; 
    }
}

/* === Hero Video Section === */
.hero-video-section {
    position: relative;
    min-height: 80vh;
    margin-top: -100px;
    padding-top: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-video { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    object-fit: cover; 
    z-index: -2; 
}
.hero-overlay { 
    position: absolute; 
    inset: 0; 
    background: rgba(15, 36, 56, 0.30); 
    z-index: -1; 
}
.hero-container { 
    position: relative; 
    z-index: 1; 
    text-align: center; 
}
.hero-content h1 { 
    font-size: 2.8rem; 
    color: #fff; 
    text-shadow: 0 2px 10px rgba(0,0,0,.5); 
    margin-bottom: 1rem;
}
.hero-content p { 
    font-size: 1.2rem; 
    color: #f0f0f0; 
    max-width: 700px; 
    margin: 0 auto 24px; 
    text-shadow: 0 1px 6px rgba(0,0,0,.4); 
}

/* Rotating Text */
#rotatingWords span {
    color: var(--accent-light);
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.4s ease;
}
#rotatingWords span.active {
    opacity: 1;
}

/* === CTA Button === */
.cta-button {
    position: relative; 
    overflow: hidden; 
    background: var(--accent); 
    color: #fff;
    padding: 16px 36px; 
    font-weight: 700; 
    font-size: 1.1rem; 
    border-radius: 60px;
    text-decoration: none; 
    box-shadow: 0 8px 25px rgba(212,165,116,.5);
    transition: all .4s ease; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    min-height: 56px;
}
.cta-button:hover { 
    background: var(--accent-light); 
    transform: translateY(-4px); 
}
.cta-button.secondary { 
    background: #34495e; 
}
.cta-button.secondary:hover { 
    background: #2c3e50; 
}

/* === Section Headings === */
h2 { 
    text-align: center; 
    font-size: 2.2rem; 
    margin-bottom: 40px; 
    color: var(--primary-dark); 
    position: relative; 
}
h2::after { 
    content: ''; 
    width: 70px; 
    height: 4px; 
    background: var(--accent); 
    display: block; 
    margin: 12px auto 0; 
    border-radius: 2px; 
}

/* === Responsive Typography === */
@media (max-width: 640px) {
    .hero-content h1 { font-size: 2.3rem; }
    .hero-content p { font-size: 1.1rem; }
    h2 { font-size: 1.9rem; }
    .container { padding: 50px 16px; }
    header.full-width > .container { padding: 80px 16px; }
}

/* === Service Grid === */
.service-grid { 
    display: grid; 
    gap: 24px; 
    grid-template-columns: 1fr; 
}
@media (min-width: 640px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .service-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: all .4s;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--gray-200);
}
.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.service-header {
    background: linear-gradient(135deg, var(--accent-light), #D4A574);
    color: #fff;
    padding: 20px;
    text-align: center;
}
.service-header h3 {
    font-size: 1.4rem;
    margin: 0;
}
.service-body {
    padding: 25px;
}
.service-body p {
    color: var(--gray-600);
    margin-bottom: 18px;
    font-size: .95rem;
}
.price.subtle {
    font-size: 1rem;
    font-weight: 500;
    color: #aaa;
    display: block;
    margin-top: 8px;
}

/* === Retainer Tiers === */
.service-tiers {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa, #e4edf5);
    position: relative;
    overflow: hidden;
}
.service-tiers::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,30 L100,100 L0,100 Z" fill="%23ffffff20"/></svg>') repeat-x;
    background-size: 200px 60px;
    opacity: 0.4;
    pointer-events: none;
}
.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #2c3e50;
}
.tier-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    color: #555;
}
.tier-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
    margin-bottom: 50px;
}
@media (min-width: 640px) {
    .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .tier-grid { grid-template-columns: repeat(3, 1fr); }
}
.tier-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    transition: transform .3s, box-shadow .3s;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.tier-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.tier-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,.14);
}
.tier-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 56px;
    height: 56px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1;
}
.tier-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 0 0 8px;
}
.tagline {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}
.price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 16px 0;
    flex-wrap: wrap;
}
.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.per {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}
.package {
    font-size: 1rem;
    color: #888;
    margin-left: 8px;
    font-weight: 500;
}
.feature-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}
.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #4a5568;
}
.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}
.cta-center {
    text-align: center;
    margin-top: 20px;
}

/* === Bio & Timeline / Changed to My Passion === */
.bio-v2.visible {
    opacity: 1;
    transform: none;

}
.timeline-paragraph p {
    margin: 3rem 0;
    font-size: 1.22rem;
    color: var(--text-dark);
    line-height: 1.85;
    text-align: center;
}
.marie-kondo-box {
    background: rgba(248,245,242,0.7);
    padding: 2.8rem 2rem;
    border-radius: 20px;
    margin: 3.5rem auto;
    max-width: 780px;
    border-left: 10px solid var(--accent);
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
}
.marie-kondo-box .smaller {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text);
    display: block;
    margin-top: 0.8rem;
}
.final-call {
    font-size: 1.3rem;
    margin: 3.5rem 0 2rem;
}

/* === Contact === */
#contact {
    background: #0C2B4AFF;
    color: #333;
    text-align: center;
}
#contact h2 {
    color: #fff;
}
#contact h2::after {
    background: var(--accent);
}


form button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232,199,163,.5);
}

/* === Footer === */
footer {
    background: var(--gray-900);
    color: var(--gray-300);
    text-align: center;
    font-size: .9rem;
}

/* === Private Practice Intro === */
.private-practice-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfcfb 0%, #f8f5f2 100%);
    position: relative;
    overflow: hidden;
}
.private-practice-intro::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.intro-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}
.intro-hero h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}
.intro-hero .lead {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}
.pain-box {
    max-width: 850px;
    margin: 0 auto 80px;
    background: white;
    padding: 32px 36px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.pain-box h3 {
    font-size: 1.7rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    text-align: center;
}
.pain-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}
.pain-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    font-size: 1.1rem;
    color: #2d3748;
    line-height: 1.7;
}
.pain-list li::before {
    content: "X";
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-size: 1.1rem;
}
/* === QUICK CTA – FULL-WIDTH WHITE SECTION (NO CARD) === */
.quick-cta {
    background: #ffffff;           /* Pure white */
    padding: 80px 20px;            /* Vertical spacing + side padding */
    margin: 0;                     /* Remove auto margins */
    text-align: center;
    width: 100vw;                  /* Full viewport width */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

/* Keep text centered and readable (max 850px wide) */
.quick-cta > * {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}
.quick-cta h3 {
    font-size: 2.1rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
.quick-cta p {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 24px;
}
.spi-wrapper {
    background: #EEF3F7; /* increased contrast (darker cool tone) */
    padding: 120px 20px; /* increased internal spacing */
    width: 100vw;        /* span full viewport width */
    position: relative;  
    left: 50%;
    right: 50%;
    margin-left: -50vw;  /* pull it out of the centered container */
    margin-right: -50vw;
   text-align: center;
}
.spi-wrapper h3 {
    text-align: center;
    margin-bottom: 16px;
    font-size: 2rem;
    color: var(--primary-dark);
}
.spi-wrapper > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}
.spi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
}
@media (min-width: 768px) {
    .spi-grid { grid-template-columns: repeat(2, 1fr); }
}
.spi-card-static {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    font-size: 1rem;
    line-height: 1.7;
    color: #2d3748;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.spi-card-static.visible {
    opacity: 1;
    transform: translateY(0);
}
.spi-card-static:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}
.spi-summary {
    text-align: center;
    margin: 40px auto 0;
    max-width: 800px;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}
.dream-section {
    max-width: 850px;
    margin: 100px auto;
    text-align: center;

}

.dream-section h3 {
    font-size: 2.1rem;
    color: var(--primary-dark);
    margin-bottom: 40px;

}
.dream-list {
    list-style: none;
    padding: 0;
    counter-reset: dream-counter;

}
.dream-list li {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    text-align: left;
    counter-increment: dream-counter;
}
.dream-list li.visible {
    opacity: 1;
    transform: translateY(0);
}
.dream-list li::after {
    content: counter(dream-counter);
    position: absolute;
    left: -8px;
    top: -8px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.highlight-quote {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px;
    background: linear-gradient(135deg, #e8f4f8, #f0f9ff);
    border-left: 6px solid var(--accent);
    border-radius: 12px;
    font-style: italic;
    font-size: 1.2rem;
    color: #2d3748;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.highlight-quote.visible {
    opacity: 1;
    transform: translateY(0);
}
.final-cta {
    text-align: center;
    margin: 60px 0 20px;
}

/* === Mobile Adjustments === */
@media (max-width: 768px) {
    .private-practice-intro { padding: 60px 0; }
    .intro-hero h2 { font-size: 2.2rem; }
    .pain-box, .spi-card-static { padding: 20px; }
    .spi-grid { grid-template-columns: 1fr; }
    .dream-list li { font-size: 1rem; padding-left: 44px; }
    .highlight-quote { padding: 24px; font-size: 1.1rem; }
    .greeting { font-size: 1.7rem; }
    .timeline-paragraph p { font-size: 1.15rem; margin: 2.5rem 0; }
    .marie-kondo-box { padding: 2rem 1.5rem; font-size: 1.45rem; }
    .final-call { font-size: 1.2rem; }
}

/* === Animations === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === INTRO HERO: Circular Image LEFT, Text RIGHT (Desktop) === */
.intro-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.intro-headline {
    margin: 0 0 36px;
    font-size: 2.6rem;
    line-height: 1.3;
    color: var(--primary-dark);
}

/* Flex container: image + text */
.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

/* Circular image */
.intro-headshot {
    width: 480px;
    height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: 5%;
    border: 6px solid var(--accent);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.intro-headshot:hover {
    transform: scale(1.03);
}

/* Text */
.intro-text {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.9;
    color: #4a5568;
    max-width: 680px;
    text-align: center;
}

/* === DESKTOP: Side-by-Side === */
@media (min-width: 768px) {
    .intro-content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        gap: 48px;
    }

    .intro-headshot {
        width: 280px;
        height: 280px;
        max-width: 45vw;
    }

    .intro-text {
        flex: 1;
        max-width: 600px;
        margin-top: 12px;
        text-align: left;
    }

    .intro-text br {
        display: none;
    }
}

/* === MOBILE: Stacked === */
@media (max-width: 640px) {
    .intro-headline {
        font-size: 2.1rem;
        margin-bottom: 28px;
    }

    .intro-headshot {
        width: 380px;
        height: 380px;
        max-width: 80vw;
        max-height: 80vw;
    }

    .intro-text {
        font-size: 1.15rem;
        text-align: center;
    }
}


/* === MOBILE-ONLY: Ultra-Slim Sticky Nav (Aggressive Fix) === */
@media (max-width: 768px) {
    .sticky-nav {
        padding: 10px 0 !important;  /* Ultra-thin outer padding */
        min-height: 40px !important; /* Cap total height */
    }
    .sticky-nav.scrolled {
        padding: 3px 0 !important;
        min-height: 36px !important;
    }

    .nav-container {
        padding: 0 10px !important;  /* Tighter sides */
        align-items: center;
        height: 100%; /* Stretch to fill slim nav */
    }

    /* Logo: Smaller + tighter */
    .logo {
        font-size: 1.1rem !important;  /* Smaller text */
        line-height: 1.1 !important;   /* Compress vertical space */
        gap: 4px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .logo img {
        width: 24px !important;  /* Tiny icon */
        height: 24px !important;
        margin: 0 !important;
    }
    .sticky-nav.scrolled .logo {
        font-size: 1rem !important;
    }
    .sticky-nav.scrolled .logo img {
        width: 20px !important;
        height: 20px !important;
    }

    /* Hamburger: Compact */
    .hamburger {
        padding: 4px !important;
        margin: 0 !important;
    }
    .hamburger span {
        height: 2px !important;  /* Thinner lines */
        width: 20px !important;
    }

    /* Nav links (for dropdown consistency) */
    .nav-links {
        padding: 12px !important;  /* Slimmer dropdown */
        gap: 12px !important;
    }
    .nav-links a {
        font-size: 1rem !important;
        padding: 4px 0 !important;
        line-height: 1.2 !important;
    }

    /* Body no-scroll fix (prevents extra space) */
    body.no-scroll {
        padding-top: 0 !important;
    }
}