        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --white: #FFFFFF;
            --black: #000000;
            --gold: #FFD700;
            --gold-dark: #E6C200;
            --gold-light: #FFE44D;
            --gray-100: #F7F7F7;
            --gray-200: #E5E5E5;
            --gray-300: #D4D4D4;
            --gray-600: #666666;
            --gray-800: #333333;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            padding-top: 100px;

        }
/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;        /* ← FOND BLANC */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);  /* ← OMBRE */
}

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            padding: 0.75rem 2rem;
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            transition: all 0.3s ease;
        }

        .logo:hover .logo-icon {
            box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
            transform: rotate(5deg);
        }

        .logo-icon svg {
            width: 28px;
            height: 28px;
            color: var(--black);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            list-style: none;
        }

        .nav-links a {
            position: relative;
            padding: 0.75rem 1.25rem;
            color: var(--black);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-dark));
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            width: 60%;
        }

        .nav-links a:hover {
            color: var(--gold-dark);
            background: rgba(255, 215, 0, 0.1);
        }

        .nav-links a.active {
            color: var(--gold-dark);
            font-weight: 600;
        }

        .nav-cta {
            padding: 0.75rem 1.75rem !important;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
            color: var(--black) !important;
            font-weight: 600 !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            transition: all 0.3s ease !important;
        }

        .nav-cta::before {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--black);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 999;
            padding: 100px 2rem 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-nav-links a {
            display: block;
            padding: 1.25rem 1.5rem;
            color: var(--black);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            background: var(--gray-100);
            margin-bottom: 0.5rem;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, #2d2d2d 100%);
        }

        /* Animated Background */
        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
            animation: bgPulse 8s ease-in-out infinite;
        }

        .grid-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: gridMove 20s linear infinite;
        }

        /* Floating Shapes */
        .floating-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: rgba(255, 215, 0, 0.2);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: rgba(255, 215, 0, 0.15);
            bottom: 20%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: rgba(255, 215, 0, 0.25);
            top: 50%;
            left: 60%;
            animation-delay: 4s;
        }

        /* Particles */
        .particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.6;
            animation: particleFloat 15s linear infinite;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 19s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 21s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 23s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 1.5s; animation-duration: 20s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 4.5s; animation-duration: 18s; }
        .particle:nth-child(10) { left: 15%; animation-delay: 3.5s; animation-duration: 24s; }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 50px;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .hero-badge-dot {
            width: 10px;
            height: 10px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }



        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
            opacity: 0;
        }

        .hero-title-line {
            display: block;
        }

        .hero-title-highlight {
            color: var(--gold);
            position: relative;
            display: inline-block;
        }

        .hero-title-highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 215, 0, 0.3);
            border-radius: 4px;
            z-index: -1;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.35rem);
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
            opacity: 0;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
            opacity: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--black);
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
            color: var(--gold);
        }

        .btn svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .btn:hover svg {
            transform: translateX(4px);
        }

        /* Stats */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease-out 0.8s forwards;
            opacity: 0;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.4s ease;
        }

        .stat-card:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: rgba(255, 215, 0, 0.3);
            transform: translateY(-5px);
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .stat-icon svg {
            width: 24px;
            height: 24px;
            color: var(--black);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            text-decoration: none;
        }

        .scroll-indicator svg {
            width: 24px;
            height: 24px;
        }

        /* ========== ANIMATIONS ========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bgPulse {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
            50% {
                transform: scale(1.1) rotate(5deg);
                opacity: 0.8;
            }
        }

        @keyframes gridMove {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(80px, 80px);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-30px) scale(1.05);
            }
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .mobile-nav {
                display: block;
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0.75rem 1rem;
            }

            .logo-icon {
                width: 42px;
                height: 42px;
            }

            .logo-text {
                font-size: 1.25rem;
            }

            .hero-stats {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

            .stat-card {
                padding: 1.5rem 1rem;
            }

            .stat-value {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                grid-template-columns: 1fr;
            }
        }


        /*////////////////////section universiteeeeeeeeeeeeeeeeeee//////////////*
/* SECTION */
.universite-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

/* TITLE */
.universite-big-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

/* COLORS */
.line-black {
    color: #000;
}

.line-gold {
    color: #FFD700;
}

/* TEXT */
.universite-text {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* BUTTON */
.btn-universite {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #FFD700, #E6C200);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-universite:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}
/*////////////////////////fin universteeeee-----------------------*/

/* a propos sectionnnnnnnnn///////////////////////////////*/
/* SECTION */
.apropos-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
    background: #fff;
}

/* CONTAINER */
.apropos-container {
    max-width: 800px;
}

/* TITLE */
.apropos-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
}

.apropos-title span {
    color: #FFD700;
}

/* TEXT */
.apropos-text {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #666;
}

/* BUTTON */
.btn-apropos {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #FFD700, #E6C200);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-apropos:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

/*fin a propos section-----------------------------------------*/

/*section evenement------------------------------------------/*
/* SECTION */
.evenement-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: var(--gray-100);
    text-align: center;
}

/* CONTAINER */
.evenement-container {
    max-width: 800px;
}

/* TITLE */
.evenement-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
}

.evenement-title span {
    color: var(--gold);
}

/* TEXT */
.evenement-text {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--gray-600);
}

/* BUTTON */
.btn-evenement {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #FFD700, #E6C200);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-evenement:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

/*    fin   section evenement------------------------------------------/*

/* ========== FOOTER SECTION ========== */
.footer {
    position: relative;
    background: #000000 !important;
    color: #FFFFFF !important;
    padding: 120px 2rem 2rem;
    overflow: hidden;
    margin-top: 100px;
}

.footer * {
    color: inherit;
}

.footer h2, .footer h3 {
    color: #FFFFFF !important;
}

.footer-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.footer-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 20s linear infinite;
}

.footer-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero .shape{
    position:absolute;
    border-radius:50%;
    filter:blur(60px);
    opacity:.6;
}

.hero .shape-1{
    width:300px;
    height:300px;
    background:#FED700;
    top:10%;
    left:-5%;
}

.hero .shape-2{
    width:250px;
    height:250px;
    background:#5B6CFF;
    right:-5%;
    top:35%;
}

.hero .shape-3{
    width:220px;
    height:220px;
    background:#111;
    bottom:10%;
    left:40%;
}
.footer-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(60px);
    opacity:.2;
}

.footer-shape-1{
    width:250px;
    height:250px;
    background:#FED700;
    left:-80px;
    top:50px;
}

.footer-shape-2{
    width:220px;
    height:220px;
    background:#FED700;
    right:-50px;
    bottom:80px;
}

.footer-shape-3{
    width:180px;
    height:180px;
    background:#FED700;
    right:20%;
    top:20%;
}

/* CTA Section */
.footer-cta {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 2rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.footer-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF !important;
}

.gold-highlight {
    color: #FFD700 !important;
}

.footer-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    color: inherit;
}

.btn-contact.primary {
    background: linear-gradient(135deg, #FFD700 0%, #E6C200 100%);
    color: #000000 !important;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.btn-contact.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
}

.btn-contact.secondary {
    background: transparent;
    color: #FFFFFF !important;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.btn-contact.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    color: #FFD700 !important;
}

.btn-contact svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-contact:hover svg {
    transform: translateX(4px);
}

/* Footer Container */
.footer-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Column */
.footer-column {
    animation: fadeInUp 0.8s ease-out backwards;
}

.footer-column:nth-child(1) { animation-delay: 0.2s; }
.footer-column:nth-child(2) { animation-delay: 0.3s; }
.footer-column:nth-child(3) { animation-delay: 0.4s; }
.footer-column:nth-child(4) { animation-delay: 0.5s; }

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo .logo-icon svg {
    width: 28px;
    height: 28px;
    color: var(--black);
}

/* Footer Description */
.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 1.2rem;
}

/* Footer Column Title */
.footer-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF !important;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFD700 !important;
    transform: translateX(5px);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

.info-item svg {
    width: 24px;
    height: 24px;
    color: #FFD700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 10;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 1rem;
}

.footer-bottom-links a:first-child {
    padding-left: 0;
}

.footer-bottom-links a:hover {
    color: #FFD700 !important;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ========== FOOTER RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-contact {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 80px 1.5rem 1.5rem;
    }

    .footer-cta {
        padding: 40px 1.5rem;
        margin-bottom: 60px;
    }

    .footer-title {
        font-size: 2rem;
    }

    .footer-subtitle {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .copyright {
        order: 2;
    }

    .footer-bottom-links {
        order: 1;
        justify-content: center;
    }

    .footer-bottom-links a {
        padding: 0 0.75rem;
    }

    .footer-bottom-links a:first-child {
        padding-left: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 60px 1rem 1rem;
    }

    .footer-logo {
        font-size: 1.1rem;
    }

    .footer-title {
        font-size: 1.75rem;
    }

    .btn-contact {
        width: 100%;
        max-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom-links a {
        padding: 0;
    }

    .divider {
        display: none;
    }
}
