/* Root Variables */
:root {
    --deep-olive: #5a6b47;
    --rich-cream: #f5f3f0;
    --soft-grey-blue: #8b9dc3;
    --muted-terracotta: #c4a484;
    --warm-ochre: #d4b896;
    --text-dark: #3a4a2a;
    --text-light: #f8f6f3;
    --background-light: #faf9f7;
    --white: #ffffff;
    --shadow: rgba(90, 107, 71, 0.15);
    --soft-shadow: rgba(90, 107, 71, 0.08);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--rich-cream) 0%, var(--background-light) 100%);
    background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--muted-terracotta);
    font-weight: 500;
}

h2 {
    font-size: 2.5rem;
    color: var(--muted-terracotta);
    margin-bottom: 2rem;
    font-weight: 500;
}

h3 {
    font-size: 1.8rem;
    color: var(--muted-terracotta);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo Header */
.logo-header {
    width: 100%;
    height: 100px;
    position: static;
    background: rgba(245, 243, 240, 0.9);
    border-bottom: 1px solid rgba(90, 107, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.logo-header .logo {
    margin: 0 auto;
    padding: 10px;
}

.logo-header .logo-image {
    width: 200px;
    height: 80px;
    object-fit: contain;
}

/* Main Header */
.header {
    background: rgba(245, 243, 240, 0.9);
    backdrop-filter: blur(15px);
    position: static;
    border-bottom: 1px solid rgba(90, 107, 71, 0.1);
    box-shadow: 0 2px 20px var(--soft-shadow);
    height: auto;
    min-height: 80px;
    overflow: visible;
    z-index: 1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: 100px;
}

.logo h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #8ba68b;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--deep-olive);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--muted-terracotta);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--muted-terracotta);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--muted-terracotta);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 164, 132, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 164, 132, 0.4);
    background: var(--warm-ochre);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--rich-cream) 0%, var(--background-light) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,30 Q30,20 40,30 Q50,40 60,30 Q70,20 80,30" stroke="%235a6b47" stroke-width="0.5" fill="none" opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/IMG_2253.jpeg') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 246, 240, 0.85) 0%, rgba(232, 244, 232, 0.85) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.8rem;
    color: var(--deep-olive);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    white-space: nowrap;
}

.hero-title .highlight-word {
    color: var(--muted-terracotta);
    text-decoration: underline;
    text-decoration-color: var(--muted-terracotta);
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-highlight {
    background: rgba(139, 166, 139, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #8ba68b;
}

.hero-highlight p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #8ba68b, #7a9a7a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 166, 139, 0.3);
    margin-top: 2rem;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 166, 139, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e8f4e8;
    position: relative;
    padding-left: 2rem;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8ba68b;
    font-weight: bold;
    font-size: 1.2rem;
}

.approach {
    background: var(--rich-cream);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--deep-olive);
    position: relative;
    box-shadow: 0 4px 15px var(--soft-shadow);
}

.approach p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.approach::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M15,5 Q20,10 15,15 Q10,10 15,5" stroke="%235a6b47" stroke-width="1" fill="none" opacity="0.3"/></svg>') no-repeat;
    opacity: 0.3;
}

.hero-description-section {
    padding: 3rem 0;
    background: var(--background-light);
}

.hero-description-section .hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-description-section strong {
    color: var(--deep-olive);
    font-weight: 600;
}

.hero-description-section em {
    color: var(--muted-terracotta);
    font-style: italic;
    font-weight: 500;
}

/* Content Images */
.content-image {
    margin: 2rem 0;
    text-align: center;
}

.section-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--soft-shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(90, 107, 71, 0.1);
}

.section-image:hover {
    transform: translateY(-5px);
}

/* Section Break Images */
.section-image-break {
    margin: 3rem 0;
    text-align: center;
}

.break-image {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 166, 139, 0.15);
    transition: transform 0.3s ease;
}

.break-image:hover {
    transform: translateY(-3px);
}

/* First Time Section */
.first-time {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8f4e8 100%);
}

.section-intro {
    font-size: 1.2rem;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.expectations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expectation-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 166, 139, 0.1);
    transition: transform 0.3s ease;
}

.expectation-item:hover {
    transform: translateY(-5px);
}

.expectation-item h3 {
    color: var(--muted-terracotta);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.pain-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.pain-points-column {
    background: #f8f6f0;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #8ba68b;
}

.pain-points-column h3 {
    color: var(--muted-terracotta);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.pain-points-column ul {
    list-style: none;
}

.pain-points-column li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139, 166, 139, 0.2);
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.7;
}

.pain-points-column li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8ba68b;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4e8 0%, #f8f6f0 100%);
}

.investment {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(139, 166, 139, 0.1);
    text-align: center;
}

.take-first-step {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 166, 139, 0.1);
}

.cta-section {
    text-align: center;
    margin: 2rem 0;
}

.main-cta {
    display: inline-block;
    background: var(--muted-terracotta);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(196, 164, 132, 0.3);
    margin: 1rem 0;
}

.main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(90, 107, 71, 0.4);
    background: var(--deep-olive);
}

.cta-note {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-top: 1rem;
    font-style: italic;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info a {
    color: #8ba68b;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.pricing-info {
    text-align: center;
    margin-top: 2rem;
}

/* Therapist Details Section */
.therapist-details {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    flex-shrink: 0;
}

.about-headshot {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(139, 166, 139, 0.2);
    transition: transform 0.3s ease;
}

.about-headshot:hover {
    transform: translateY(-5px);
}

.therapist-bio {
    flex: 1;
    text-align: left;
}

.therapist-bio p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-olive), var(--text-dark));
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--muted-terracotta), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-message p {
    color: var(--muted-terracotta);
    margin: 0;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    color: var(--muted-terracotta);
    margin: 0.25rem 0;
    opacity: 0.9;
}

/* Performance Optimizations */
.break-image, .headshot, .about-headshot {
    loading: lazy;
}

/* Preload critical fonts */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* Mobile - Clean Rebuild for iPhone 13/16 */
@media (max-width: 768px) {
    /* Reset all positioning for mobile */
    .logo {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: 50px;
        height: 50px;
        padding: 5px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
        display: block;
    }
    
    /* Mobile Header - Clean separation */
    .header {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 999;
        background: white;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .nav-container {
        height: 60px;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu {
        display: flex;
        gap: 8px;
        margin: 0;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 6px 10px;
        background: #f8f8f8;
        border-radius: 4px;
        color: #333;
        text-decoration: none;
        white-space: nowrap;
        border: 1px solid #e0e0e0;
    }
    
    .nav-menu a:hover {
        background: #e8e8e8;
    }
    
    /* Mobile Hero - Clear spacing */
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    /* Mobile Page Headers - Clear spacing */
    .page-header {
        padding: 150px 0 80px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        text-align: center;
    }
    
    /* Mobile Content Layout */
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-headshot {
        width: 300px;
        height: 375px;
        margin: 0 auto;
    }
    
    .pain-points {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expectations {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile Typography */
    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Mobile Images */
    .section-image {
        height: 250px;
    }
    
    .break-image {
        height: 300px;
    }
    
    /* Mobile Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-message {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* iPhone 13/16 - Clean rebuild */
    .logo {
        top: 8px;
        width: 45px;
        height: 45px;
        padding: 4px;
    }
    
    .logo-image {
        width: 37px;
        height: 37px;
    }
    
    .header {
        top: 65px;
    }
    
    .nav-container {
        height: 55px;
        padding: 0 10px;
    }
    
    .nav-menu {
        gap: 6px;
    }
    
    .nav-menu a {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-header h1 {
        font-size: 1.4rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    /* Extra small mobile - Typography */
    h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Extra small mobile - Content spacing */
    .expectation-item,
    .pain-points-column,
    .investment,
    .take-first-step {
        padding: 1.2rem;
    }
    
    .main-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Extra small mobile - Images */
    .section-image {
        height: 180px;
    }
    
    .break-image {
        height: 220px;
    }
    
    .about-headshot {
        width: 250px;
        height: 312px;
    }
    
    .headshot {
        width: 300px;
        height: 375px;
    }
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #f8f6f0 0%, #e8f4e8 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--deep-olive);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #34495e;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header Hero Backgrounds */
.page-header .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/IMG_2253.jpeg') center/cover;
    z-index: 1;
}

.page-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 246, 240, 0.85) 0%, rgba(232, 244, 232, 0.85) 100%);
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

/* Hero CTA Section */
.hero-cta-section {
    margin-top: 2rem;
}

.hero-cta {
    display: inline-block;
    background: var(--muted-terracotta);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(196, 164, 132, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.4);
    background: var(--warm-ochre);
}

/* Active Navigation State */
.nav-menu a.active {
    color: var(--muted-terracotta);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Logo Link */
.logo {
    position: static;
    margin: 0 auto;
    padding: 20px 10px;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 200px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Headshot Styling */
.headshot-container {
    text-align: center;
    margin-top: 8px;
}

.headshot {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(139, 166, 139, 0.2);
    transition: transform 0.3s ease;
}

.headshot:hover {
    transform: translateY(-5px);
}


/* Mountain Image Styling */
.mountain-image {
    padding: 3rem 0;
    background: white;
}

.mountain-photo {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 166, 139, 0.15);
    display: block;
    margin: 0 auto;
}

/* Services CTA Styling */
.services-cta {
    text-align: center;
    margin: 3rem 0;
}

.services-cta .main-cta {
    display: inline-block;
    background: linear-gradient(135deg, #8ba68b, #7a9a7a);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 166, 139, 0.3);
}

.services-cta .main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 166, 139, 0.4);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Better touch targets */
    .nav-menu a,
    .cta-button,
    .main-cta,
    .hero-cta {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Better text selection */
    .hero-title,
    .page-header h1 {
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    
    /* Improved scrolling on iOS */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #8ba68b;
    outline-offset: 2px;
}

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

.hero-content,
.about-content,
.expectations,
.pain-points {
    animation: fadeInUp 0.8s ease-out;
}

/* Old hamburger menu styles removed - using new structure */

/* Hamburger Menu Styles */
#hamburger-btn {
    display: none;
    background: white;
    border: 2px solid #333;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

#nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: white;
    border: 1px solid #ccc;
}

#nav-menu li {
    display: inline-block;
    margin-right: 20px;
}

#nav-menu a {
    text-decoration: none;
    padding: 10px;
    display: block;
    color: var(--deep-olive);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Logo header on mobile */
    .logo-header {
        height: 80px;
    }
    
    .logo-header .logo-image {
        width: 150px;
        height: 60px;
    }

    /* Static header */
    .header { 
        position: static; 
        min-height: 60px; 
        height: auto; 
    }

    .nav-container { 
        padding: 12px 16px; 
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 60px;
    }

    /* Hide desktop nav, show hamburger */
    .desktop-nav { display: none; }
    #hamburger-btn { display: block; }
    
    /* Mobile menu styling */
    #nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #ccc;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    #nav-menu li { 
        display: block; 
        margin: 0; 
        border-bottom: 1px solid #eee; 
    }
    
    #nav-menu a {
        padding: 15px 20px;
        background: #f8f8f8;
        color: var(--deep-olive);
    }
    
    #nav-menu a:hover {
        background: var(--muted-terracotta);
        color: white;
    }

    /* CTAs: properly sized for mobile */
    .cta-button {
        font-size: 0.85rem !important; 
        padding: 8px 12px !important; 
        border-radius: 20px;
        white-space: nowrap;
    }

    .hero-cta,
    .main-cta { 
        font-size: 1rem !important; 
        padding: 12px 20px !important; 
        border-radius: 25px; 
    }

    /* Hero: ensure no cut-off and wrapping */
    .hero { padding-top: 40px !important; }
    .page-header { padding-top: 40px !important; }
    
    .hero-title { 
        white-space: normal !important; 
        word-break: break-word; 
        overflow: visible; 
        font-size: 1.7rem !important; 
        line-height: 1.2 !important; 
        margin: 0 16px 16px !important; 
        text-align: center; 
    }
}

/* iPhone 13/14/15 Specific (390px) */
@media (max-width: 430px) and (min-width: 375px) {
    .logo-image { 
        width: 90px !important; 
        height: 90px !important; 
    }
    .nav-menu a { font-size: 17px !important; }
}

/* iPhone Pro Max / Large Phones (414px+) */
@media (min-width: 414px) and (max-width: 768px) {
    .logo-image { 
        width: 96px !important; 
        height: 96px !important; 
    }
    .nav-menu a { font-size: 19px !important; }
}

/* iPhone SE and very small devices */
@media (max-width: 374px) {
    .logo-image { 
        width: 76px !important; 
        height: 76px !important; 
    }
    .nav-menu a { 
        font-size: 16px !important; 
        padding: 14px 20px !important; 
    }
    .hero-title { font-size: 1.5rem !important; }
    .cta-button { font-size: 0.8rem !important; padding: 5px 8px !important; }
    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }
}

