/* FastForward Coach - Static Site Styles */

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1E293B;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1E293B;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

a {
    color: #64B5F6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #42A5F5;
}

img {
    max-width: 100%;
    height: auto;
}

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

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

.text-center { text-align: center; }
.text-primary { color: #64B5F6; }
.font-bold { font-weight: 700; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.text-gradient {
    background: linear-gradient(90deg, #64B5F6, #42A5F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #64B5F6, #42A5F5);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #42A5F5, #2196F3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 181, 246, 0.4);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #64B5F6;
    border: 2px solid rgba(100, 181, 246, 0.3);
}

.btn-outline:hover {
    background: rgba(100, 181, 246, 0.1);
    border-color: #64B5F6;
}

.btn-white {
    background: #ffffff;
    color: #64B5F6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #42A5F5;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    font-size: 1.25em;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #64B5F6, #42A5F5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E293B;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #64B5F6;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #64B5F6;
    border-radius: 1px;
}

.nav-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #475569;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }
    
    .nav-links.active .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 12px;
    }
    
    .nav-links.active .nav-link:hover,
    .nav-links.active .nav-link.active {
        background: rgba(100, 181, 246, 0.1);
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ffffff 0%, #E3F2FD 50%, #ffffff 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(100, 181, 246, 0.15);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: rgba(255, 204, 188, 0.2);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(100, 181, 246, 0.1);
    border: 1px solid rgba(100, 181, 246, 0.2);
    color: #64B5F6;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #334155;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 181, 246, 0.2);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
}

.trust-label {
    font-size: 0.875rem;
    color: #64748B;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(100, 181, 246, 0.2);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.3), rgba(255, 204, 188, 0.2));
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.coach-photo {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #64B5F6;
    box-shadow: 0 20px 60px rgba(100, 181, 246, 0.3);
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 0;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(100, 181, 246, 0.1);
}

.floating-icon {
    font-size: 2rem;
}

.floating-title {
    font-weight: 600;
    color: #1E293B;
}

.floating-subtitle {
    font-size: 0.875rem;
    color: #64B5F6;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .coach-photo {
        width: 280px;
        height: 280px;
    }
    
    .floating-card {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ==================== PAGE HERO ==================== */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ffffff 0%, #E3F2FD 100%);
    z-index: -1;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.hero-description-center {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.page-hero-text {
    max-width: 550px;
}

.page-hero-text p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1rem;
}

.page-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .page-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-hero-text {
        max-width: 100%;
    }
    
    .page-hero-image {
        order: -1;
    }
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 6rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.bg-white {
    background: #ffffff;
}

.bg-gradient {
    background: linear-gradient(180deg, #ffffff 0%, #E3F2FD 100%);
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== 5 R's SECTION ==================== */
.five-rs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.five-r-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.five-r-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #64B5F6, #FFCCBC);
    border-radius: 2px;
}

.five-r-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(100, 181, 246, 0.15);
}

.five-r-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.five-r-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.five-r-card p {
    font-size: 0.9rem;
    color: #64748B;
}

@media (max-width: 1024px) {
    .five-rs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .five-rs-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== SERVICES SECTION ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff, rgba(227, 242, 253, 0.5));
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(100, 181, 246, 0.15);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #64748B;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Grid Full */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-full {
    background: linear-gradient(135deg, #ffffff, rgba(227, 242, 253, 0.5));
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.service-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(100, 181, 246, 0.15);
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #475569;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .services-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid-full {
        grid-template-columns: 1fr;
    }
}

/* ==================== PRICING SECTION ==================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 181, 246, 0.2);
    box-shadow: 0 4px 20px rgba(100, 181, 246, 0.1);
    position: relative;
}

.pricing-featured {
    border-color: #64B5F6;
    background: linear-gradient(180deg, rgba(100, 181, 246, 0.05), #ffffff);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #64B5F6, #42A5F5);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
}

.pricing-duration {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 0.75rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E293B;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #64748B;
}

.pricing-header p {
    font-size: 0.9rem;
    color: #64748B;
    margin-top: 0.75rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #475569;
    border-bottom: 1px solid rgba(100, 181, 246, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.5), rgba(255, 204, 188, 0.2));
    padding: 2rem;
    border-radius: 24px;
    position: relative;
}

.stars {
    color: #FFC107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #334155;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #BBDEFB, #90CAF9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976D2;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: #1E293B;
}

.author-role {
    font-size: 0.875rem;
    color: #64748B;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Grid Full */
.testimonials-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-full {
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.5), rgba(255, 204, 188, 0.2));
    padding: 2rem;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.testimonial-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(100, 181, 246, 0.15);
}

.testimonial-badge {
    display: inline-block;
    background: rgba(100, 181, 246, 0.2);
    color: #1976D2;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .testimonials-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid-full {
        grid-template-columns: 1fr;
    }
}

/* Featured Testimonial */
.featured-testimonial {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1), rgba(255, 204, 188, 0.1));
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
}

.featured-quote {
    font-size: 4rem;
    color: #BBDEFB;
    line-height: 1;
    margin-bottom: 1rem;
}

.featured-text {
    font-size: 1.5rem;
    color: #334155;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.featured-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar-lg {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #90CAF9, #64B5F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
}

/* ==================== ABOUT PREVIEW ==================== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.badge-item {
    background: rgba(100, 181, 246, 0.1);
    color: #334155;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

@media (max-width: 1024px) {
    .about-preview {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image img {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .badges-row {
        justify-content: center;
    }
}

/* ==================== EXPERIENCE SECTION ==================== */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.experience-card {
    background: linear-gradient(135deg, #ffffff, rgba(227, 242, 253, 0.5));
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(100, 181, 246, 0.15);
}

.experience-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.experience-years {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64B5F6;
    margin-bottom: 0.5rem;
}

.experience-card h3 {
    margin-bottom: 0.75rem;
}

.experience-card p {
    color: #64748B;
}

@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== CERTIFICATIONS ==================== */
.certifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.certifications-content h2 {
    margin-bottom: 1rem;
}

.certifications-content > p {
    color: #475569;
    margin-bottom: 2rem;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    background: rgba(100, 181, 246, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    color: #334155;
    font-weight: 500;
}

.philosophy-card {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1), rgba(255, 204, 188, 0.1));
    padding: 2.5rem;
    border-radius: 24px;
}

.philosophy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    margin-bottom: 1rem;
}

.philosophy-card blockquote {
    font-size: 1.25rem;
    color: #334155;
    font-style: italic;
    line-height: 1.6;
}

.philosophy-author {
    margin-top: 1rem;
    color: #64748B;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== STATS SECTION ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #64B5F6;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #64748B;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== METHODOLOGY SECTION ==================== */
.methodology-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.methodology-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.methodology-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(100, 181, 246, 0.15);
}

.methodology-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.methodology-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.methodology-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.methodology-header p {
    color: #64748B;
}

.methodology-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-item {
    background: rgba(100, 181, 246, 0.05);
    padding: 1rem;
    border-radius: 12px;
    color: #334155;
}

@media (max-width: 768px) {
    .methodology-details {
        grid-template-columns: 1fr;
    }
}

/* Philosophy Quote Card */
.philosophy-quote-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.philosophy-quote-card blockquote {
    font-size: 1.5rem;
    color: #334155;
    font-style: italic;
    line-height: 1.6;
}

.quote-author {
    margin-top: 1.5rem;
    color: #64748B;
    font-weight: 600;
}

/* Partner Card */
.partner-card {
    background: linear-gradient(135deg, #ffffff, rgba(227, 242, 253, 0.5));
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    max-width: 500px;
    margin: 0 auto;
}

.partner-card h3 {
    margin-bottom: 0.75rem;
}

.partner-card p {
    color: #64748B;
    margin-bottom: 1.5rem;
}

.partner-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #64B5F6;
    font-weight: 600;
}

.affiliate-note {
    max-width: 500px;
    margin: 2rem auto 0;
    background: rgba(100, 181, 246, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.affiliate-note p {
    font-size: 0.875rem;
    color: #475569;
}

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guide-card {
    background: linear-gradient(135deg, #ffffff, rgba(227, 242, 253, 0.5));
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.guide-card.coming-soon {
    opacity: 0.6;
}

.guide-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guide-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.guide-card p {
    color: #64748B;
    font-size: 0.9rem;
}

.coming-soon-badge {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64B5F6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== CONTACT SECTION ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2 {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64B5F6;
    box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.1);
}

.form-group textarea {
    resize: none;
}

.form-note {
    font-size: 0.875rem;
    color: #64748B;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Booking Card */
.booking-card {
    background: linear-gradient(135deg, #ffffff, rgba(227, 242, 253, 0.5));
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
}

.booking-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-icon {
    font-size: 2rem;
}

.booking-header h3 {
    margin-bottom: 0.25rem;
}

.booking-header p {
    font-size: 0.875rem;
    color: #64748B;
}

.booking-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.booking-features li {
    padding: 0.5rem 0;
    color: #475569;
}

/* Contact Info Card */
.contact-info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 181, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
}

.contact-info-card h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
    color: #1E293B;
    font-weight: 500;
}

/* Response Time */
.response-time {
    background: rgba(100, 181, 246, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    color: #475569;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: #1E293B;
}

.faq-item p {
    color: #64748B;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER CTA ==================== */
.footer-cta {
    background: linear-gradient(90deg, #64B5F6, #42A5F5);
    padding: 5rem 0;
}

.footer-cta h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0F172A;
    color: #ffffff;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: #ffffff;
}

.footer-brand p {
    color: #94A3B8;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: #94A3B8;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #64B5F6;
}

.partner-link {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-link a {
    color: #94A3B8;
    font-size: 0.875rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ==================== PROSE ==================== */
.prose {
    max-width: 65ch;
}

.prose p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.prose strong {
    color: #1E293B;
}
