/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #000;
    color: #fff;
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
}

.logo img {
    height: 100px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.nav-contact {
    background: #0080ff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-contact i {
    color: #000;
    font-size: 18px;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: visible;
    padding-bottom: 60px;
}


.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.slide.active {
    opacity: 1;
}

/* ================= HERO CONTENT ================= */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 140px 15px 0;
}

@media (min-width: 768px) {
    .hero-content {
        max-width: 720px;
        padding: 160px 60px 0;
    }
}

.service-box h1 {
    font-size: clamp(20px, 4vw, 32px);
}


/* SERVICE BOX */
.service-box {
    border: 2px solid rgba(255,255,255,0.6);
    padding: 18px 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-box i {
    font-size: 26px;
}

.service-box h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

/* TEXT */
.hero-text {
    font-size: 14px;
    color: #ddd;
    margin: 15px 0 25px;
    max-width: 600px;
}

/* BUTTON */
.btn {
    display: inline-block;
    background: #0080ff;
    color: #000;
    padding: 13px 26px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 35px;
}

/* ================= DEVIS BUTTON ================= */
.devis-btn {
    right: 20px;
    padding: 14px 18px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .devis-btn {
        position: relative;
        margin: 30px auto;
        display: inline-flex;
        justify-content: center;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* ================= SOCIALS ================= */
.socials {
    position: absolute;
    bottom: 25px;
    right: 30px;
    display: flex;
    gap: 18px;
    z-index: 2;
}

.socials i {
    font-size: 18px;
    cursor: pointer;
}

/* ================= SERVICES ================= */
.services-section {
    background: radial-gradient(circle at top, #1a1a1a, #000);
}

.service-card {
    position: relative;
    height: 470px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.35)
    );
}

.service-card .content {
    position: absolute;
    bottom: 0;
    padding: 25px;
    color: #fff;
    z-index: 2;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-service {
    background: #0080ff;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
}

/* ================= RESPONSIVE ================= */


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

}

/* SECTION */
.instagram-section {
    padding: 80px 0;
}

/* HEADER */
.insta-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.insta-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
}

.insta-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.insta-title p {
    font-size: 13px;
    color: #bbb;
    margin: 4px 0 0;
}


/* BUTTONS */
.insta-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.btn-dark-custom {
    background: #111;
    color: #fff;
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
}

.btn-instagram {
    background: #0080ff;
    color: #000;
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
}

/* RIGHT BOX */
.quote-box {
    background: #3a3a3a;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
}

.quote-box h3 {
    font-weight: 800;
    margin-bottom: 15px;
}

.quote-box p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 25px;
}

.quote-box a {
    background: #0080ff;
    color: #000;
    padding: 12px 22px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .quote-box {
        text-align: center;
    }
}


/* CARTES DU HAUT */
.top-card {
    background: #3b3b3b;
    padding: 25px;
    height: 120px;
    color: #000;
    position: relative;
    cursor: pointer;
}

.top-card h6 {
    font-weight: 700;
    font-size: 14px;
    margin-top: 15px;
}

.top-card .line {
    width: 40px;
    height: 3px;
    background: #0080ff;
    display: block;
}

.top-card.active {
    background: #ffffff;
}

.top-card:not(.active) {
    color: #000;
    opacity: 0.7;
}

/* SECTION PRINCIPALE */
.main-section {
    background: #fff;
    min-height: 350px;
}

.content-left {
    padding: 50px;
}

.badge-title {
    color: #0080ff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.content-left h2 {
    font-weight: 800;
    margin: 15px 0;
}

.content-left p {
    color: #666;
    max-width: 90%;
}

/* BOUTON */
.btn-article {
    display: inline-flex;
    align-items: center;
    margin-top: 25px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

.btn-article .icon {
    background: #0080ff;
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

/* PARTIE DROITE */
.content-right {
    position: relative;
    background: linear-gradient(180deg, #bfc6cc, #9fa4a8);
}

.abstract-bg {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, #d6d6d6 0 40px, transparent 41px),
        radial-gradient(circle at 60% 20%, #cfcfcf 0 25px, transparent 26px),
        radial-gradient(circle at 70% 70%, #bdbdbd 0 60px, transparent 61px);
}

/* GLOBAL */
.main-wrapper {
    background: #000;
}

/* GAUCHE */
.left-panel {
    background: #000;
    color: #fff;
    padding: 40px;
}

.logo-box img {
    max-width: 180px;
}

.footer-links {
    font-size: 13px;
}

.footer-links a {
    color: #aaa;
    margin-right: 15px;
    text-decoration: none;
}

/* DROITE */
.right-panel {
    background: #fff;
    padding: 20px;
    color: #000;
    position: relative;
    border-radius: 20px;
}

.form-title {
    font-weight: 800;
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
}

.form-label span {
    color: red;
}

.form-control,
.form-select {
    border-radius: 0;
    padding: 10px;
}


/* BOUTON */
.btn-next {
    background: #0080FF;
    color: #000;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 0;
}

/* LIENS RAPIDES */
.quick-links h6 {
    font-weight: 700;
    margin-bottom: 0px;
}

.quick-links p {
    font-size: 14px;
    color: #555;
}

/* RÉSEAUX */
.social-icons {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.social-icons a {
    background: #000;
    color: #fff;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 8px;
}

    /* NAVBAR GLOBAL */
.atf-navbar {
    height: 90px;
    background: linear-gradient(
        90deg,
        #FFF 0%,
        #3a2f08 20%,
        #111 40%,
        #000 100%
    ) !important;
}


/* MENU CENTRÉ AVEC FOND ARRONDI */
.atf-menu {
    background: #000;
    padding: 12px 30px;
    border-radius: 50px;
    gap: 35px;
}

/* LIENS */
.atf-menu .nav-link {
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 0;
}

/* ICÔNE HOME */
.icon-link i {
    font-size: 18px;
}

/* DROPDOWN */
.dropdown-menu {
    background: #000;
    border: none;
}

.dropdown-item {
    color: #fff;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #0080FF;
    color: #000;
}

/* BOUTON MAIL */
.nav-contact {
    background: #0080FF;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-contact i {
    color: #000;
    font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .atf-menu {
        border-radius: 15px;
        padding: 20px;
        gap: 15px;
    }
}


.section-transport {
            background-color: #000;
            color: #fff;
            overflow: hidden;
        }

        .transport-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .badge-title {
            background-color: #0080ff;
            color: #000;
            font-weight: bold;
            padding: 10px 16px;
            display: inline-block;
            border-radius: 4px;
            font-size: 2rem;
            width: 100%;
            margin-top: 10%;
        }

        .btn-gold {
            background-color: #0080ff;
            color: #000;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
        }

        .btn-gold:hover {
            background-color: #a78a32;
            color: #000;
        }

        .social-icons a {
            color: #fff;
            font-size: 1.3rem;
            margin-right: 15px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: #0080ff;
        }

        .atf-section {
            padding: 80px 0;
        }

        .atf-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .atf-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #ddd;
            margin-bottom: 20px;
        }

        .btn-gold {
            background-color: #0080ff;
            color: #000;
            font-weight: 700;
            padding: 14px 30px;
            border-radius: 30px;
            border: none;
        }

        .btn-gold:hover {
            background-color: #a78a32;
        }

        /* GRID IMAGES */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .gallery-grid img {
            width: 80%;
            height: 80%;
            object-fit: cover;
            border-radius: 12px;
        }

        .img-tall {
            grid-row: span 2;
        }

        @media (max-width: 991px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 575px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }