/* Font Declarations - Firefox Compatible */
@font-face {
    font-family: 'Clash Display';
    src: url('fonts/ClashDisplay-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('fonts/ClashDisplay-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('fonts/ClashDisplay-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('fonts/ClashDisplay-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('fonts/ClashDisplay-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('fonts/ClashDisplay-Extralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FFF Acid Grotesk';
    src: url('fonts/FFF-AcidGrotesk-Regular-TRIAL.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FFF Acid Grotesk';
    src: url('fonts/FFF-AcidGrotesk-Bold-TRIAL.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: #fff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #0217B6;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF2C6B;
}

.btn-lets-talk {
    background-color: #0217B6;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-lets-talk:hover {
    background-color: #FF2C6B;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF2C6B 0%, #FF5C8F 100%);
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('./banner-circles1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-bottom: 80px;
}

.hero-greeting {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 2.8rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #0217B6;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #2036DC;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    border: 2px solid #fff;
    text-decoration: none;
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #FF2C6B;
}

.hero-image {
    display: flex;
    align-items: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #0217B6;
    margin-bottom: 15px;
}

.section-description {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.services-left h3,
.services-right h3 {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #0217B6;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
}

.services-list li {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    color: #333;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF2C6B;
    font-weight: bold;
}

.packages-intro {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin-bottom: 15px;
}

.package-options {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.package-badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.package-badge.pink {
    background-color: #FF2C6B;
    color: #fff;
}

.packages-note {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    margin: 20px 0;
}

.interested-text {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    margin: 20px 0 10px;
}

.btn-lets-talk-services {
    background-color: #FF2C6B;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-lets-talk-services:hover {
    background-color: #0217B6;
}

/* Lifespan Section */
.lifespan-section {
    margin-top: 60px;
}

.lifespan-title {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #0217B6;
    text-align: center;
    margin-bottom: 20px;
}

.lifespan-description {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.age-groups {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.age-card {
    background: #F5F5FF;
    border: 1px solid #E0E0FF;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
}

.age-card h4 {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #0217B6;
    margin-bottom: 15px;
}

.age-card p {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.lifespan-footer {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #0217B6;
    text-align: center;
    font-style: italic;
    margin-top: 40px;
}

/* Coaching Quote Section */
.coaching-quote {
    background: #0217B6;
    padding: 60px 0;
}

.quote-intro {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.quote-text {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #fff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Workbook & Newsletter Section */
.workbook-newsletter {
    padding: 80px 0;
    background: #fff;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.workbook-card {
    background: linear-gradient(135deg, #C71585 0%, #E91E8C 100%);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
}

.workbook-card h3 {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.workbook-card p {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-workbook {
    background-color: #fff;
    color: #C71585;
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-workbook:hover {
    background-color: #F5F5F5;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.newsletter-card {
    background: #0217B6;
    border-radius: 20px;
    padding: 50px 40px;
}

.newsletter-card h3 {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-subtitle {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 15px;
}

.newsletter-card p {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-newsletter {
    background-color: #fff;
    color: #0217B6;
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-newsletter:hover {
    background-color: #F5F5F5;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Connect Section */
.connect-section {
    margin-top: 60px;
}

.connect-section h3 {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0217B6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FF2C6B;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.about-box {
    background: #F5F5FF;
    border-radius: 15px;
    padding: 40px;
}

.about-box h3 {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.about-box p {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

.consultation-box {
    background: #fff;
    border: 2px solid #0217B6;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.consultation-box h3 {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #0217B6;
    margin-bottom: 15px;
}

.consultation-box p {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-book-call {
    background-color: #0217B6;
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-book-call:hover {
    background-color: #FF2C6B;
}

.research-box {
    background: #fff;
    border: 2px solid #FF2C6B;
    border-radius: 15px;
    padding: 30px;
}

.research-box h3 {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #FF2C6B;
    margin-bottom: 15px;
}

.research-box p {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.citation {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

.btn-read-research {
    background-color: #FF2C6B;
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.btn-read-research:hover {
    background-color: #F86994;
}

/* Mission Statement */
.mission-statement {
    background: #0217B6;
    padding: 60px 0;
}

.mission-statement p {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials-title {
    font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #0217B6;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-box {
    max-width: 900px;
    margin: 0 auto;
    background: #f9f9f9;
    border-radius: 15px;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.testimonial-box p {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    text-align: center;
}

/* Footer */
.footer {
    background: #fff;
    padding: 60px 0 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #0217B6;
}

.footer-text {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 50px;
}

.footer-credentials {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.footer-copyright {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'FFF Acid Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #FF2C6B;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0217B6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .age-groups {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .age-groups {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        gap: 20px;
    }

    .social-link {
        font-size: 1rem;
    }

    .nav-links {
        font-size: 0.9rem;
        gap: 10px;
    }

    .btn-lets-talk {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
