/* ===== THÈME CLAIR OPTIONNEL ===== */
body.theme-light {
    --bg-dark: #ffffff;
    --bg-darker: #f5f7ff;
    --card-bg: #ffffff;
    --card-border: #e0e6ff;
    --text-primary: #1a1f3a;
    --text-secondary: #5a6b82;
    --text-light: #8a96ab;
    --shadow-color: rgba(0, 52, 204, 0.08);
}

body.theme-light nav {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e0e6ff;
}

/* ===== ANIMATIONS 3D ===== */
@keyframes rotate-3d {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes float-3d {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    50% {
        transform: translateY(-20px) rotateZ(5deg);
    }
}

@keyframes pulse-3d {
    0%, 100% {
        transform: scale(1) rotateZ(0deg);
    }
    50% {
        transform: scale(1.05) rotateZ(2deg);
    }
}

.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.card-3d:hover {
    transform: rotateX(5deg) rotateY(10deg) translateZ(20px);
}

.float-element {
    animation: float-3d 4s ease-in-out infinite;
}

.pulse-3d-element {
    animation: pulse-3d 3s ease-in-out infinite;
}

:root {
    /* Palette Bleue Cohérente */
    --primary-blue: #0052cc;
    --secondary-blue: #0066ff;
    --light-blue: #0080ff;
    --dark-blue: #003d99;
    --very-dark-blue: #001f4d;
    
    /* Fond et Cards - THÈME NOIR */
    --bg-dark: #0a0a0e;
    --bg-darker: #141419;
    --card-bg: #1a1a22;
    --card-border: #2a2a35;
    
    /* Texte */
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0c0;
    --text-light: #7a7a8a;
    
    /* Accents */
    --accent-blue: #0052cc;
    --accent-light: #1a2a4d;
    --hover-blue: #0066ff;
    --shadow-color: rgba(0, 82, 204, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVIGATION PRINCIPALE ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: var(--bg-darker);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 2px 12px var(--shadow-color);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== BOUTONS ===== */
.btn {
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    box-shadow: 0 8px 20px var(--shadow-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--shadow-color);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--secondary-blue) 100%);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    border-color: var(--light-blue);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.btn-glow:hover::after {
    opacity: 0.4;
}

/* ===== SECTION HÉRO ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--accent-light);
    border: 1px solid var(--primary-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 600;
    animation: pulse-badge 2s infinite;
}

.badge-icon {
    width: 8px;
    height: 8px;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(0, 82, 204, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===== SECTION STATISTIQUES ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== SECTIONS GÉNÉRALES ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== SECTION FORMATIONS ===== */
.courses-section {
    padding: 5rem 5%;
    background: var(--bg-dark);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.course-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-color);
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: pulse-3d-element 3s ease-in-out infinite;
}

.course-card:hover {
    box-shadow: 0 12px 30px var(--shadow-color);
    transform: translateY(-8px);
}

.course-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    overflow: hidden;
}

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

.course-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: white;
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-content {
    padding: 2rem;
}

.course-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.course-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.course-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.course-price span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* ===== SECTION FONCTIONNALITÉS ===== */
.features-section {
    padding: 5rem 5%;
    background: var(--card-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.feature-card:hover {
    box-shadow: 0 8px 20px var(--shadow-color);
    transform: translateY(-4px) rotateX(5deg);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== SECTION TÉMOIGNAGES ===== */
.testimonials-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px var(--shadow-color);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    gap: 0.8rem;
    flex-wrap: nowrap;
    align-items: center;
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-info h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.testimonial-info p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.stars {
    color: var(--primary-blue);
    font-size: 0.9rem;
    letter-spacing: 0.2rem;
    flex-shrink: 0;
    display: flex;
    gap: 0.2rem;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

/* ===== SECTION TARIFICATION ===== */
.pricing-section {
    padding: 5rem 5%;
    background: var(--card-bg);
}

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

.pricing-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 12px 30px var(--shadow-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    box-shadow: 0 8px 24px var(--shadow-color);
}

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

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.pricing-price span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features li svg {
    flex-shrink: 0;
}

/* ===== SECTION CONTACT ===== */
.contact-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-blue);
}

.modal-content h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input {
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.modal-content input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.modal-content button {
    width: 100%;
    margin-top: 1rem;
}

/* ===== PARTICULES ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-blue);
    opacity: 0.2;
    border-radius: 50%;
    animation: float-up linear infinite;
}

@keyframes float-up {
    to {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

/* ===== ANIMATIONS AU SCROLL ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 0.8s ease forwards;
}

.animate-on-scroll.visible {
    animation: fade-in-up 0.8s ease forwards;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--very-dark-blue) 100%);
    color: var(--text-secondary);
    padding: 4rem 5%;
    border-top: 1px solid var(--card-border);
}

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

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
    transform: translateX(4px);
}

/* ===== RÉSEAUX SOCIAUX ===== */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid var(--card-border);
    color: var(--text-secondary);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: white;
}

.social-icon.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #cc2366;
}

.social-icon.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-icon.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-icon.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .testimonial-header {
        justify-content: center;
        width: 100%;
    }
    
    .testimonial-text {
        white-space: normal;
        text-overflow: clip;
        overflow: visible;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.8rem 3%;
    }

    .logo {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 70px 3% 30px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 1.4rem;
    }
    
    .testimonial-card {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-info h4 {
        font-size: 0.9rem;
    }
    
    .testimonial-info p {
        font-size: 0.75rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-name {
        font-size: 1.1rem;
    }
    
    .pricing-price {
        font-size: 1.8rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
        gap: 0.6rem;
    }
    
    .stats {
        padding: 2.5rem 3%;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-desc {
        font-size: 0.8rem;
    }
    
    .contact-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-content p {
        font-size: 0.95rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}