/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   FONT
========================= */
@font-face {
    font-family: 'Momcake';
    src: url('Asset/FONT/MomcakeBold-WyonA.otf') format('opentype');
}

/* =========================
   BODY
========================= */
body {
    min-height: 100vh;
    background: #050b23;
    overflow-x: hidden;
    overflow-y: auto;

    color: white;
    position: relative;
    font-family: 'Momcake', sans-serif;
}

/* 🌌 HALO */
body::before,
body::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.18), transparent 60%);
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}

body::before {
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}

body::after {
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
}

/* =========================
   ✨ STARS
========================= */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.stars span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.7;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

/* =========================
   HEADER
========================= */
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 45px;

    background: rgba(8, 12, 35, 0.65);
    backdrop-filter: blur(12px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(0, 132, 255, 0.12);

    border-bottom: 1px solid rgba(0, 162, 255, 0.08);
}
.header a {
    font-family: 'Momcake', sans-serif;
    font-size: 18px !important;
}

/* =========================
   LOGO
========================= */
.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;

    box-shadow:
        0 0 18px rgba(0, 162, 255, 0.35),
        0 0 40px rgba(0, 162, 255, 0.12);

    transition: 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.06);
}

.burger {
    display: none;

    width: 30px;
    height: 22px;

    position: relative;

    cursor: pointer;

    z-index: 2000;
}

.burger span {
    position: absolute;

    width: 100%;
    height: 3px;

    background: white;

    border-radius: 20px;

    transition: 0.3s ease;
}

/* POSITIONS */
.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: 9px;
}

.burger span:nth-child(3) {
    top: 18px;
}

/* ANIMATION */
.burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* =========================
   MENU
========================= */
.right-menu ul {
    display: flex;
    align-items: center;
    gap: 35px;

    list-style: none;
}

.right-menu ul li a {
    position: relative;

    color: white;
    text-decoration: none;

    font-size: 13px;
    letter-spacing: 1px;

    display: flex;
    align-items: center;
    gap: 8px;

    transition: 0.3s ease;
}

/* Hover Glow */
.right-menu ul li a:hover {
    color: #00a2ff;
    text-shadow: 0 0 12px rgba(0, 162, 255, 0.7);
}

/* Underline Animation */
.right-menu ul li a::after {
    content: "";
    position: absolute;

    bottom: -7px;
    left: 0;

    width: 0%;
    height: 2px;

    background: #00a2ff;
    border-radius: 10px;

    box-shadow: 0 0 10px rgba(0, 162, 255, 0.8);

    transition: 0.3s ease;
}

.right-menu ul li a:hover::after {
    width: 100%;
}

/* ICON */
.right-menu ul li a i {
    font-size: 20px;
}

/* =========================================
   PAGE SERVICES
========================================= */

/* HERO */
.services-hero {
    width: 100%;
    min-height: 0vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 180px 8% 100px;

    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 950px;
}

.hero-content h1 {
    font-size: 42px;

    line-height: 1;

    text-transform: uppercase;

    color: white;

    margin-bottom: 30px;

    text-shadow:
        0 0 25px rgba(0,162,255,0.2);
}

.hero-content h1 span {
    background:
        linear-gradient(
            90deg,
            #00a2ff,
            #9333ea
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;

    color: rgba(255,255,255,0.72);

    line-height: 1.9;
}

.hero-line {
    width: 140px;
    height: 4px;

    margin: 40px auto 0;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #00a2ff,
            #9333ea
        );

    box-shadow:
        0 0 25px rgba(147,51,234,0.4);
}

/* GRID */
.services-grid-section {
    width: 100%;

    padding: 0 8% 140px;

    position: relative;
    z-index: 2;
}

.services-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));

    gap: 40px;

    margin-top: 80px;

    align-items: stretch;
}

/* SERVICE CARD */
.service-card {
    min-height: 340px;

    padding: 50px 45px;

    border-radius: 35px;

    background:
        linear-gradient(
            180deg,
            rgba(18, 28, 75, 0.78),
            rgba(8, 14, 40, 0.96)
        );

    border: 1px solid rgba(0,162,255,0.15);

    box-shadow:
        0 0 60px rgba(0,162,255,0.08),
        inset 0 0 25px rgba(255,255,255,0.02);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-12px);

    border-color: rgba(0,162,255,0.35);

    box-shadow:
        0 0 80px rgba(0,162,255,0.16),
        0 0 140px rgba(147,51,234,0.08);
}

/* ICON */
.service-icon {
    width: 110px;
    height: 110px;

    margin: 0 auto 35px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle,
            rgba(0,162,255,0.12),
            transparent 70%
        );

    border: 1px solid rgba(0,162,255,0.25);

    box-shadow:
        0 0 30px rgba(0,162,255,0.12);
}

.service-icon i {
    font-size: 52px;

    color: #00a2ff;

    text-shadow:
        0 0 25px rgba(0,162,255,0.55);
}

/* TEXT */


.service-card h2 {
    font-size: 32px;

    line-height: 1.15;

    margin-bottom: 20px;
}

.service-card p {
    font-size: 18px;

    line-height: 1.8;

    max-width: 100%;
}
/* LINE */
.service-line {
    width: 90px;
    height: 4px;

    margin: 35px auto 0;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #00a2ff,
            #9333ea
        );
}

/* CTA */
.service-cta {
    width: 100%;

    padding: 0 8% 140px;

    position: relative;
    z-index: 2;
}

.cta-box {
    width: 100%;

    padding: 70px;

    border-radius: 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 50px;

    background:
        linear-gradient(
            180deg,
            rgba(10,16,45,0.85),
            rgba(7,12,35,0.96)
        );

    border: 1px solid rgba(147,51,234,0.2);

    box-shadow:
        0 0 60px rgba(147,51,234,0.08);
}

.cta-left img {
    width: 230px;

    animation: float 5s ease-in-out infinite;
}

.cta-center {
    flex: 1;
}

.cta-center h2 {
    font-size: 32px;

    margin-bottom: 25px;

    text-transform: uppercase;
}

.cta-center h2 span {
    background:
        linear-gradient(
            90deg,
            #00a2ff,
            #9333ea
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-center p {
    font-size: 20px;

    line-height: 1.9;

    color: rgba(255,255,255,0.72);
}

/* BTN */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 22px 42px;

    border-radius: 18px;

    text-decoration: none;

    color: white;

    font-size: 18px;
    font-weight: 600;

    background:
        linear-gradient(
            90deg,
            #4f46e5,
            #9333ea
        );

    box-shadow:
        0 0 30px rgba(147,51,234,0.25);

    transition: 0.35s ease;
}

.service-btn:hover {
    transform: translateY(-5px);

    box-shadow:
        0 0 45px rgba(147,51,234,0.4);
}

/* RESPONSIVE */
@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        flex-direction: column;

        text-align: center;
    }
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-center h2 {
        font-size: 42px;
    }

    .cta-center p {
        font-size: 17px;
    }

    .cta-left img {
        width: 170px;
    }
}

/* =========================
   MOBILE
========================= */
/* =========================
   MOBILE MENU
========================= */
@media (max-width: 900px) {

    .burger {
        display: block;
    }

    /* MENU FULLSCREEN */
    .right-menu {
        position: fixed;

        top: 0;
        left: 0;

        width: 100%;
        height: 100vh;

        display: flex;
        justify-content: center;
        align-items: center;

        opacity: 0;
        visibility: hidden;

        transition: 0.4s ease;

        z-index: 1500;

        /* FOND TRANSPARENT */
        background: rgba(5, 10, 35, 0.35);

        backdrop-filter: blur(14px);
    }

    /* ACTIVE */
    .right-menu.active {
        opacity: 1;
        visibility: visible;
    }

    /* MENU */
    .right-menu ul {
        flex-direction: column;

        gap: 45px;

        text-align: center;
    }

    /* LIENS */
    .right-menu ul li a {
        font-size: 30px;

        color: white;

        text-transform: uppercase;

        letter-spacing: 2px;

        font-family: 'Momcake', sans-serif;

        text-shadow:
            0 0 20px rgba(0,162,255,0.25);
    }

    /* BURGER */
    .burger {
        position: relative;
        z-index: 2000;
    }
}