/* ============================================
DGROWW MENTORSHIP PROGRAM - PREMIUM CSS
   ============================================ */

/* ---- BACK BUTTON ---- */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.back-button:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateX(-3px);
}

/* ---- MENTORSHIP HERO SECTION ---- */
.mentorship-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, var(--light-bg) 50%, #fffbeb 100%);
    position: relative;
    overflow: hidden;
}

.mentorship-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mentorship-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mentorship-hero-text h1 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.mentorship-hero-text .hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    font-size: 1.1rem;
    color: var(--accent-green);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Mentorship Visual */
.mentorship-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mentor-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mentor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    min-width: 150px;
    animation: float 3s ease-in-out infinite;
    border: 2px solid var(--primary-blue);
}

.mentor-card:nth-child(3) {
    animation-delay: 0.2s;
}

.mentor-card:nth-child(5) {
    animation-delay: 0.4s;
}

.mentor-card:nth-child(7) {
    animation-delay: 0.6s;
}

.mentor-icon {
    font-size: 2.5rem;
    display: inline-block;
}

.mentor-card p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.arrow-down {
    font-size: 1.8rem;
    color: var(--accent-green);
    opacity: 0.7;
}

/* ---- MENTORSHIP OVERVIEW SECTION ---- */
.mentorship-overview {
    padding: 80px 0;
    background: var(--white);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.overview-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    text-align: center;
    margin-bottom: 3rem;
}

.mentor-roles {
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(240, 249, 255, 0.8) 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.role-title {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.role-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary-blue);
    text-align: center;
}

.role-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-green);
}

.role-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.role-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.role-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- MENTOR BENEFITS SECTION ---- */
.mentor-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 50%, #f0f9ff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-blue);
}

.benefit-1 {
    border-top-color: var(--primary-blue);
}

.benefit-2 {
    border-top-color: var(--accent-green);
}

.benefit-3 {
    border-top-color: #f59e0b;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.benefit-list {
    list-style: none;
    position: relative;
    z-index: 1;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ---- FOCUS AREAS SECTION ---- */
.focus-areas {
    padding: 80px 0;
    background: var(--white);
}

.focus-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.focus-item {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 2px solid var(--border-light);
}

.focus-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
    background: linear-gradient(135deg, #f0f9ff 0%, var(--light-bg) 100%);
}

.focus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.focus-item h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin: 0;
}

/* ---- RECOGNITION & REWARDS SECTION ---- */
.recognition-rewards {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 50%, #f0f9ff 100%);
}

.recognition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.recognition-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.recognition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
}

.recognition-item:nth-child(2)::before {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
}

.recognition-item:nth-child(3)::before {
    background: linear-gradient(90deg, var(--accent-green), #f59e0b);
}

.recognition-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.rec-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.recognition-item:nth-child(2) .rec-number {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
}

.recognition-item:nth-child(3) .rec-number {
    background: linear-gradient(135deg, var(--accent-green) 0%, #f59e0b 100%);
}

.recognition-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.recognition-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.rec-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.rec-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(240, 249, 255, 0.8) 100%);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    border: 1px solid var(--border-light);
}

/* ---- MENTORSHIP JOURNEY SECTION ---- */
.mentorship-journey {
    padding: 80px 0;
    background: var(--white);
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: center;
    margin-top: 3rem;
}

.journey-step {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 2px solid var(--border-light);
    position: relative;
}

.journey-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.journey-step h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.journey-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.journey-arrow {
    font-size: 2rem;
    color: var(--accent-green);
    opacity: 0.7;
    text-align: center;
    display: none;
}

/* Show arrows on larger screens */
@media (min-width: 1024px) {
    .journey-timeline {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        gap: 0;
    }
    
    .journey-arrow {
        display: block;
        text-align: center;
    }
}

/* ---- MENTOR PROFILES SECTION ---- */
.mentor-profiles {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 50%, #f0f9ff 100%);
}

.profiles-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.profile-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.profile-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.profile-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.profile-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- HIGHLIGHT SECTION ---- */
.highlight-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
}

.highlight-content {
    text-align: center;
}

.highlight-line {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* ---- MENTORSHIP CTA SECTION ---- */
.mentorship-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 50%, var(--primary-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mentorship-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mentorship-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.mentorship-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.mentorship-cta .cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-subtext {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.btn-secondary-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-lg:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

/* ---- FAQ SECTION ---- */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 50%, #f0f9ff 100%);
}

.faq-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    overflow: visible;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    border-radius: 14px 0 0 14px;
    opacity: 0;
    transition: opacity var(--transition);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.faq-item.active {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, var(--white) 100%);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.8rem;
    cursor: default;
    transition: var(--transition);
    background: transparent;
    gap: 1.5rem;
}

.faq-header {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question h4 {
    color: var(--primary-dark);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.faq-question:hover .faq-header h4 {
    color: var(--accent-green);
}

.faq-toggle {
    display: none;
}

.faq-toggle:hover {
    transform: scale(1.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg) scale(1.15);
    background: linear-gradient(135deg, var(--accent-green) 0%, #f59e0b 100%);
}

.faq-answer {
    background: rgba(240, 249, 255, 0.5);
    opacity: 1;
    visibility: visible;
    max-height: none;
    overflow: visible;
    transition: none;
}

.faq-item.active .faq-answer {
    max-height: none;
    opacity: 1;
    visibility: visible;
    transition: none;
}

.faq-answer p {
    padding: 0 1.8rem 1.8rem 1.8rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}


/* ---- MENTORSHIP CONTACT SECTION ---- */
.mentorship-contact {
    padding: 80px 0;
    background: var(--white);
}

.mentorship-contact .contact-content {
    max-width: 700px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-item strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-item p {
    margin: 0.5rem 0;
}

.contact-item a {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--accent-green);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-column h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-tagline {
    color: var(--accent-green);
    font-size: 0.95rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-green);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- ANIMATIONS ---- */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .vision-mission-content {
        grid-template-columns: 1fr;
    }

    .gradient-box {
        width: 250px;
        height: 250px;
    }

    .ecosystem-layers {
        grid-template-columns: 1fr;
    }

    .layer-arrow {
        display: block;
        text-align: center;
        rotate: 90deg;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-diagram {
        gap: 0.5rem;
    }

    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .flow-arrow {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-content {
        gap: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.65rem;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-value {
        font-size: 0.9rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .problem-card {
        padding: 1.5rem;
    }

    .problem-icon {
        font-size: 2.5rem;
    }

    .flow-diagram {
        flex-direction: column;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .positioning-points {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .impact-number {
        font-size: 2rem;
    }
}

/* ---- UTILITY CLASSES ---- */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}
/* ---- CONTACT SECTION ---- */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-card .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-card .card-label {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-card .card-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-card .card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.contact-card .card-micro {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 16px;
}

.contact-card .card-cta {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin-top: auto;
}

.contact-card .card-cta:hover {
    color: var(--accent-green);
    transform: translateX(4px);
}

.contact-card .card-btn {
    margin-top: auto;
    width: 100%;
}

/* ---- RESPONSIVE CONTACT SECTION ---- */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}


