/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* New Color Palette - Therapeutic Calm */
    --primary-blue: #7a9d9b;        /* Muted teal-blue */
    --sage-green: #a8b9a5;          /* Soft sage */
    --stone-gray: #c8c8bb;          /* Stone neutral */
    --off-white: #f8f9f7;           /* Off-white */
    --charcoal: #2d3e4e;            /* Ink-blue charcoal */
    --light-blue: #e8f0ef;          /* Very light blue */
    --accent-teal: #5b8a89;         /* Deeper teal for accents */
    --warm-stone: #d4d0c4;          /* Warm stone */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    overflow-x: hidden;
    background-color: var(--off-white);
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--off-white) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122, 157, 155, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(122, 157, 155, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 10px 30px rgba(122, 157, 155, 0.3); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 15px 40px rgba(122, 157, 155, 0.4); 
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.hero h1 .highlight {
    color: var(--accent-teal);
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 700px;
}

.cta-button {
    background: var(--charcoal);
    color: var(--off-white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(45, 62, 78, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 62, 78, 0.4);
    background: var(--accent-teal);
}

/* Responsive button text */
.cta-text-mobile,
.whatsapp-text-mobile {
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
    color: var(--primary-blue);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===================================
   Problem Section
   =================================== */
.problem-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.problem-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    line-height: 1.3;
}

.problem-content .problem-headline {
    color: var(--primary-blue); 
}

.problem-content .highlight {
    color: var(--accent-teal);
    display: block;
}

.problem-text {
    color: var(--charcoal);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.problem-text:last-child {
    margin-bottom: 0;
}

.problem-image {
    background: linear-gradient(135deg, var(--stone-gray) 0%, var(--warm-stone) 100%);
    border-radius: 30px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    background: var(--off-white);
    padding: 6rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.feature-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 157, 155, 0.15);
    border-color: var(--accent-teal);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(122, 157, 155, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    /* Icon bleibt statisch */
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    font-weight: 600;
}

.feature-card p {
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--off-white);
}

.about-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.about-section .subtitle {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* ============================================
   IMPROVED ABOUT INTRO SECTION - NUMBERED STATEMENTS
   ============================================ */
.about-intro-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto 4rem;
    max-width: 1200px;
}

.intro-statement {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid var(--accent-teal);
    position: relative;
}

.intro-statement:hover {
    border-left-width: 6px;
}

.statement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-teal);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.intro-statement h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.intro-statement p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    /* About Intro - Horizontal Slider on Mobile */
    .about-intro-hero {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 0.5rem;
        margin: 2rem -1.5rem 3rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .about-intro-hero::-webkit-scrollbar {
        display: none;
    }
    
    .intro-statement {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    .statement-number {
        font-size: 2.5rem;
        top: 0.75rem;
        right: 1rem;
    }
    
    .intro-statement h3 {
        font-size: 1.2rem;
    }
    
    .intro-statement p {
        font-size: 1rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    border-color: var(--accent-teal);
}

.about-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(122, 157, 155, 0.25);
    transition: all 0.3s ease;
}

.about-card:hover .about-card-icon {
    /* Icon bleibt statisch */
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    font-weight: 600;
}

.about-card ul {
    list-style: none;
    text-align: left;
    color: var(--charcoal);
    opacity: 0.85;
}

.about-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.05rem;
    transition: all 0.2s ease;
}

.about-card li:hover {
    padding-left: 2.3rem;
    opacity: 1;
}

.about-card li::before {
    content: '✓';
    color: var(--accent-teal);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    background: rgba(122, 157, 155, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.about-card li:hover::before {
    background: var(--accent-teal);
    color: white;
    transform: scale(1.1);
}

.about-mission {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    border-radius: 25px;
    color: white;
    line-height: 1.8;
    font-size: 1.1rem;
    box-shadow: 0 15px 40px rgba(122, 157, 155, 0.3);
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.about-mission strong {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: normal;
    color: white;
}

/* ===================================
   Image Gallery
   =================================== */
.image-gallery {
    padding: 6rem 2rem;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 400px;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Program Section
   =================================== */
.program-section {
    background: var(--off-white);
    padding: 6rem 2rem;
}

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

.program-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.program-header p {
    color: var(--charcoal);
    opacity: 0.8;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.program-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

/* ============================================
   IMPROVED TIMELINE CARDS WITH CHECKMARKS
   ============================================ */
.timeline-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.timeline-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-card h3 {
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    line-height: 1.4;
}

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

.timeline-list li {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.timeline-list li:last-child {
    border-bottom: none;
}

.timeline-list li:hover {
    background-color: rgba(74, 144, 226, 0.03);
    padding-left: 0.5rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 1rem;
    box-shadow: 0 2px 8px rgba(122, 157, 155, 0.3);
    transition: all 0.3s ease;
}

.timeline-list li:hover .check-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(122, 157, 155, 0.4);
}

@media (max-width: 768px) {
    .timeline-card {
        padding: 1.5rem;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .timeline-card h3 {
        font-size: 1.2rem;
    }
    
    .timeline-list li {
        font-size: 0.95rem;
    }
    
    .check-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: 0.7rem;
        margin-right: 0.75rem;
    }
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.pricing-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.pricing-header p {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 1.2rem;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(122, 157, 155, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: white;
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--sage-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-label {
    color: var(--accent-teal);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-label {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.pricing-card.featured .pricing-name {
    color: white;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* NEW: Strikethrough original price */
.pricing-original {
    font-size: 2rem;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.6;
}

/* NEW: Sale price styling */
.pricing-sale {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.pricing-card.featured .pricing-sale {
    color: #white;
}

.pricing-card.featured .pricing-amount {
    color: white;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 500;
}

.pricing-duration {
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.pricing-card.featured .pricing-duration {
    color: rgba(255, 255, 255, 0.8);
}

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

.pricing-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--charcoal);
    opacity: 0.8;
}

.pricing-card.featured .pricing-features li {
    color: white;
    opacity: 0.95;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-teal);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-card.featured .pricing-features li::before {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li.not-included {
    opacity: 0.4;
    text-decoration: line-through;
}

.pricing-features li.not-included::before {
    content: '✕';
    color: var(--stone-gray);
}

.pricing-cta {
    width: 100%;
    background: var(--accent-teal);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(122, 157, 155, 0.3);
}

.pricing-card.featured .pricing-cta {
    background: white;
    color: var(--accent-teal);
}

.pricing-card.featured .pricing-cta:hover {
    background: var(--off-white);
    color: var(--charcoal);
}

.pricing-note {
    text-align: center;
    color: var(--charcoal);
    opacity: 0.6;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.pricing-card.featured .pricing-note {
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--off-white);
    padding: 6rem 2rem;
}

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

.contact-container h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.contact-container p {
    color: var(--charcoal);
    opacity: 0.8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.contact-form {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--stone-gray);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
    color: var(--charcoal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(122, 157, 155, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background: var(--accent-teal);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(122, 157, 155, 0.3);
}

.submit-button:disabled {
    background: var(--stone-gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.submit-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ===================================
   WhatsApp Section - On Page
   =================================== */
.whatsapp-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.whatsapp-content {
    background: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25d366 0%, #1fbd58 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5); 
    }
}

.whatsapp-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.whatsapp-content p {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25d366;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    background: #1fbd58;
}

.whatsapp-icon-small {
    font-size: 1.5rem;
}

/* ===================================
   WhatsApp Floating Button - Simple
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: float-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #1fbd58;
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #1a2332;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6cada7;
}

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

/* ===================================
   Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Modal Styles
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    margin: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    padding: 30px 40px 20px;
    border-bottom: 3px solid var(--accent-teal);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px 16px 0 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    z-index: 1;
}

.modal-close:hover {
    background: #ff4444;
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px 40px 40px;
    line-height: 1.8;
    color: #333;
}

.modal-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin: 30px 0 15px 0;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.modal-body h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.modal-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin: 20px 0 10px 0;
}

.modal-body p {
    margin: 12px 0;
    color: #555;
    line-height: 1.8;
}

.modal-body a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.modal-body a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.modal-body strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Scrollbar styling for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-teal);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    /* Responsive button texts */
    .cta-text-desktop,
    .whatsapp-text-desktop {
        display: none;
    }
    
    .cta-text-mobile,
    .whatsapp-text-mobile {
        display: inline;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 0.5rem 1rem 1rem;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .hero-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .scroll-indicator {
        bottom: 0.5rem;
    }
    
    /* Reduce section padding mobile */
    .problem-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .problem-image {
        height: 350px;
    }
    
    .features-section {
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        margin: 1.5rem auto 0;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 2rem 1.5rem;
    }
    
    .about-section .subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    /* About Intro - Vertical Stacking on Mobile */
    .about-intro-hero {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem auto 2.5rem;
    }
    
    .intro-statement {
        padding: 2rem 1.5rem;
    }
    
    .statement-number {
        font-size: 2.5rem;
        top: 0.75rem;
        right: 1rem;
    }
    
    .intro-statement h3 {
        font-size: 1.2rem;
    }
    
    .intro-statement p {
        font-size: 1rem;
    }
    
    /* About Cards as Horizontal Slider on Mobile */
    .about-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 0.5rem;
        margin: 0 -1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .about-grid::-webkit-scrollbar {
        display: none;
    }
    
    .about-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 2rem;
    }
    
    .about-card-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .about-card li {
        font-size: 1rem;
        padding: 0.6rem 0;
        padding-left: 2rem;
    }
    
    .about-mission {
        padding: 2rem;
        margin: 2rem auto 0;
        font-size: 1rem;
    }
    
    .about-mission strong {
        font-size: 1.1rem;
    }
    
    /* Image Gallery - Horizontal Slider Mobile */
    .image-gallery {
        padding: 2rem 0;
    }
    
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 1.5rem;
        margin: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .gallery-grid::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 350px;
        overflow: hidden;
    }
    
    /* Program Section Mobile */
    .program-section {
        padding: 2rem 1.5rem;
    }
    
    .program-header {
        margin-bottom: 2rem;
    }
    
    /* Program Timeline - Horizontal Slider on Mobile */
    .program-timeline {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 0.5rem;
        margin: 0 -1.5rem 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .program-timeline::-webkit-scrollbar {
        display: none;
    }
    
    .timeline-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    /* Pricing Section Mobile - Better Spacing */
    .pricing-section {
        padding: 2rem 1.5rem;
    }
    
    .pricing-header {
        margin-bottom: 1.5rem;
    }
    
    .pricing-comparison {
        grid-template-columns: 1fr;
        gap: 2.5rem; /* Increased spacing between cards */
        max-width: 100%;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin: 0; /* Remove any margin */
    }
    
    .pricing-card.featured {
        transform: scale(1); /* Remove scale on mobile */
        margin: 0;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px); /* Keep only translateY on hover */
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }

    .pricing-original {
    font-size: 1.5rem;
    }
  
.pricing-sale {
    font-size: 2.5rem;
}
    
    .pricing-features {
        margin-bottom: 1.5rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 2rem;
        display: flex;
        align-items: flex-start;
    }
    
    .pricing-features li::before {
        position: absolute;
        left: 0;
        top: 0.6rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    /* WhatsApp Section Mobile */
    .whatsapp-section {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-content {
        padding: 2.5rem 1.5rem;
    }
    
    .whatsapp-content h2 {
        font-size: 1.5rem;
    }
    
    .whatsapp-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-cta {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .whatsapp-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 1.5rem 2rem;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Modal Mobile Responsiveness */
    .modal-overlay {
        padding: 0;
        align-items: flex-start;
    }
    
    .modal-content {
        border-radius: 0;
        max-height: 100vh;
        min-height: 100vh;
        margin: 0;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
        padding: 25px 20px 15px;
        border-radius: 0;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body h3 {
        font-size: 1.2rem;
        margin: 25px 0 12px 0;
    }
    
    .modal-body h4 {
        font-size: 1rem;
    }
    
    .modal-body p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-content h2 {
        font-size: 1.3rem;
        padding: 20px 15px 12px;
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 22px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-body h3 {
        font-size: 1.1rem;
    }
}
