/* ============================================
   MODERN A-LEVEL PAGE STYLES
   Add these to your existing style-alevel.css
   ============================================ */

/* === MODERN HERO SECTION === */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #065f46 0%, #0f766e 50%, #115e59 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&q=80&w=1920') center/cover;
    opacity: 0.08;
    mix-blend-mode: overlay;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
}

.hero-badges-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge-modern:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-title-modern {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-description-modern {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.hero-buttons-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.hero-buttons-modern .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-buttons-modern .btn-primary {
    background: var(--primary-green);
    border: none;
}

.hero-buttons-modern .btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.hero-buttons-modern .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-buttons-modern .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-features-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

.hero-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.feature-icon-modern {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-title-modern {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-text-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* === MODERN HERO PANEL === */
.hero-panel-modern {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.panel-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.panel-title-modern {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.panel-subtitle-modern {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.badge-secure-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--light-green);
    color: var(--dark-green);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* === MODERN FORM STYLES === */
.modern-form {
    margin-top: 32px;
}

.form-group-modern {
    margin-bottom: 24px;
}

.form-label-modern {
    display: block;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control-modern {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-control-modern::placeholder {
    color: #9ca3af;
}

.btn-submit-modern {
    width: 100%;
    padding: 16px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-modern:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.panel-divider-modern {
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb, transparent);
    margin: 32px 0;
}

.panel-footer-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-title-modern {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.footer-text-modern {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-whatsapp-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #25D366;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-whatsapp-modern:hover {
    background: #20ba5a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* === MODERN TRUST STRIP === */
.trust-strip-modern {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9fafb, white);
}

.trust-card-modern {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 20px;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    height: 100%;
}

.trust-card-modern:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
}

.trust-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.trust-card-modern:hover .trust-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.trust-title-modern {
    font-weight: 800;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-text-modern {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* === SECTION HEADERS (MODERN) === */
.section-header-modern {
    margin-bottom: 60px;
}

.section-label-modern {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-green);
    color: var(--dark-green);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title-modern {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description-modern {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
}

.badge-premium-modern {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* === MODERN SUBJECTS SECTION === */
.subjects-modern-section {
    padding: 100px 0;
    background: white;
}

.subject-card-modern {
    background: white;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 2px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.subject-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.subject-card-modern:hover::before {
    transform: scaleX(1);
}

.subject-card-modern:hover {
    border-color: var(--primary-green);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}

.subject-icon-wrapper-modern {
    margin-bottom: 24px;
}

.subject-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.biology-icon {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #065f46;
}

.chemistry-icon {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #831843;
}

.maths-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e3a8a;
}

.subject-card-modern:hover .subject-icon-modern {
    transform: scale(1.1) rotate(-5deg);
}

.subject-title-modern {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.subject-intro-modern {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.subject-details-modern {
    margin: 32px 0;
}

.detail-section-modern {
    margin-bottom: 24px;
}

.detail-heading-modern {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.detail-heading-modern i {
    color: var(--primary-green);
}

.detail-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list-modern li {
    padding: 8px 0 8px 28px;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
}

.detail-list-modern li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.subject-actions-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.btn-subject-primary-modern {
    padding: 14px 24px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-subject-primary-modern:hover {
    background: var(--dark-green);
    color: white;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-subject-secondary-modern {
    padding: 14px 24px;
    background: transparent;
    color: var(--primary-green);
    text-decoration: none;
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-subject-secondary-modern:hover {
    background: var(--light-green);
    transform: translateX(4px);
}

/* === HOW IT WORKS (MODERN) === */
.how-it-works-modern-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f9fafb, white);
}

.process-timeline-modern {
    margin: 60px 0;
}

.process-card-modern {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid #f3f4f6;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
}

.process-card-modern::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.3;
}

.process-card-modern:last-child::after {
    display: none;
}

.process-card-modern:hover {
    border-color: var(--primary-green);
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.2);
}

.process-number-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--light-green);
    color: var(--dark-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.process-icon-modern {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.process-card-modern:hover .process-icon-modern {
    transform: scale(1.15) rotate(360deg);
}

.process-title-modern {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.process-description-modern {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.info-card-modern {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid #f3f4f6;
    height: 100%;
    transition: all 0.3s ease;
}

.info-card-modern:hover {
    border-color: var(--primary-green);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
}

.info-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.info-title-modern {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
}

.info-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list-modern li {
    padding: 10px 0 10px 32px;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
}

.info-list-modern li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.info-text-modern {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* === PRICING (MODERN) === */
.pricing-modern-section {
    padding: 100px 0;
    background: white;
}

.pricing-card-modern {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid #f3f4f6;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card-modern:hover {
    border-color: var(--primary-green);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}

.pricing-card-popular-modern {
    border-color: var(--primary-green);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

.pricing-card-popular-modern:hover {
    transform: scale(1.05) translateY(-12px);
}

.popular-badge-modern {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.pricing-header-modern {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-badge-top-modern {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-green);
    color: var(--dark-green);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.premium-badge {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    color: #831843;
}

.pricing-name-modern {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.pricing-subtitle-modern {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-price-modern {
    text-align: center;
    margin: 32px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.price-currency-modern {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-top: 8px;
}

.price-amount-modern {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.price-period-modern {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: 24px;
}

.pricing-note-modern {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.pricing-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-features-modern li {
    padding: 14px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f3f4f6;
}

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

.pricing-features-modern i {
    color: var(--primary-green);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.btn-pricing-modern,
.btn-pricing-popular-modern {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-pricing-modern {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-pricing-modern:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-pricing-popular-modern {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
}

.btn-pricing-popular-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.pricing-help-text-modern {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-help-link-modern {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-green);
    transition: all 0.3s ease;
}

.pricing-help-link-modern:hover {
    color: var(--dark-green);
    border-bottom-color: var(--dark-green);
}

/* === TIMETABLE (MODERN) === */
.timetable-modern-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f9fafb, white);
}

.timetable-wrapper-modern {
    margin: 60px 0;
}

.timetable-card-modern {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 2px solid #f3f4f6;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
}

.timetable-card-modern:hover {
    border-color: var(--primary-green);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}

.timetable-badge-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.free-badge {
    background: #dcfce7;
    color: #065f46;
}

.enrolling-badge {
    background: #dbeafe;
    color: #1e3a8a;
}

.coming-badge {
    background: #fef3c7;
    color: #92400e;
}

.timetable-day-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.timetable-time-modern {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.timetable-subject-modern {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
}

.timetable-note-modern {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-timetable-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-timetable-modern:hover {
    background: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.timetable-footer-modern {
    margin-top: 60px;
}

.alert-info-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #fffbeb;
    border: 2px solid #fef3c7;
    border-radius: 12px;
    color: #92400e;
    font-weight: 600;
}

.badge-info-modern {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #fffbeb;
    border: 2px solid #fef3c7;
    color: #92400e;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* === FAQ (MODERN) === */
.faq-modern-section {
    padding: 100px 0;
    background: white;
}

.accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item-modern {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-modern:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.accordion-header-modern {
    margin: 0;
}

.accordion-button-modern {
    width: 100%;
    padding: 24px 28px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.accordion-button-modern:hover {
    background: #f9fafb;
}

.accordion-button-modern.collapsed .accordion-icon-modern i {
    color: var(--text-muted);
}

.accordion-button-modern:not(.collapsed) {
    background: var(--light-green);
    color: var(--dark-green);
}

.accordion-button-modern:not(.collapsed) .accordion-icon-modern i {
    color: var(--primary-green);
}

.accordion-icon-modern {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.accordion-button-modern:not(.collapsed) .accordion-icon-modern {
    transform: rotate(45deg);
}

.accordion-body-modern {
    padding: 0 28px 24px 68px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* === CTA (MODERN) === */
.cta-modern-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, white 100%);
}

.cta-wrapper-modern {
    background: white;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.1);
}

.cta-content-modern {
    position: relative;
}

.cta-label-modern {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-green);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.cta-title-modern {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.cta-description-modern {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

.cta-buttons-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-cta-primary-modern,
.btn-cta-secondary-modern {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-primary-modern {
    background: var(--primary-green);
    color: white;
    border: 2px solid var(--primary-green);
}

.btn-cta-primary-modern:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-cta-secondary-modern {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-cta-secondary-modern:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

/* Contact Card */
.contact-card-modern {
    background: linear-gradient(135deg, var(--light-green), white);
    border-radius: 24px;
    padding: 40px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    height: 100%;
}

.contact-title-modern {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
}

.contact-subtitle-modern {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-list-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-modern {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.contact-label-modern {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-value-modern {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value-modern:hover {
    color: var(--primary-green);
}

.contact-tip-modern {
    padding: 16px;
    background: white;
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-tip-modern i {
    color: #fbbf24;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

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

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .hero-modern {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-title-modern {
        text-align: center;
    }
    
    .hero-description-modern {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons-modern {
        justify-content: center;
    }
    
    .hero-features-modern {
        grid-template-columns: 1fr;
    }
    
    .hero-panel-modern {
        margin-top: 40px;
    }
    
    .panel-header-modern {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .panel-footer-modern {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-whatsapp-modern {
        width: 100%;
        justify-content: center;
    }
    
    .process-card-modern::after {
        display: none;
    }
    
    .cta-wrapper-modern {
        padding: 40px 24px;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
    }
    
    .btn-cta-primary-modern,
    .btn-cta-secondary-modern {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-modern {
        padding: 60px 0 40px;
    }
    
    .hero-panel-modern {
        padding: 28px 20px;
    }
    
    .trust-card-modern {
        padding: 24px 16px;
    }
    
    .trust-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .subject-card-modern {
        padding: 28px 20px;
    }
    
    .process-card-modern {
        padding: 28px 20px;
    }
    
    .pricing-card-modern {
        padding: 28px 20px;
    }
    
    .timetable-card-modern {
        padding: 28px 20px;
    }
    
    .accordion-button-modern {
        padding: 20px;
        font-size: 1rem;
    }
    
    .accordion-body-modern {
        padding: 0 20px 20px 56px;
    }
    
    .cta-wrapper-modern {
        padding: 32px 20px;
    }
    
    .contact-card-modern {
        padding: 28px 20px;
    }
}