/* =====================================================
   VARIABLES
===================================================== */
:root {
    --primary: #355d93;
    --secondary: #4178c0;
    --dark: #1f2933;
    --light: #ffffff;
    --gray: #f3f5f7;
    --text: #2e2e2e;
}

/* =====================================================
   RESET & BASE
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

i {
    font-size: 0.9em;
}

/* =====================================================
   CONTAINER
===================================================== */
/* .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
} */

/* =====================================================
   TOP BAR
===================================================== */
/* .topbar {
    background: var(--dark);
    color: #e5e7eb;
    font-size: 13px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.topbar-left span {
    margin-right: 18px;
}

.topbar-left i {
    color: var(--secondary);
    margin-right: 6px;
}

.topbar-right a {
    margin-left: 18px;
    transition: color 0.3s;
}

.topbar-right a:hover {
    color: #ffffff;
} */

/* =====================================================
   HEADER
===================================================== */
/* .header {
    background: var(--light);
    border-bottom: 1px solid #e5e7eb;
    position: relative; 
    z-index: 1000;
} */

/* .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
} */

/* =====================================================
   LOGO
===================================================== */
/* .logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary);
} */

/* =====================================================
   MENU TOGGLE (BURGER)
===================================================== */
/* .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--primary);
} */

/* =====================================================
   NAVIGATION
===================================================== */
/* .nav {
    display: flex;
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s;
}

.menu > li > a:hover {
    color: var(--primary);
} */

/* =====================================================
   DROPDOWN
===================================================== */
/* .dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 230px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    display: none;
    padding: 8px 0;
}

.dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #444;
    transition: background 0.3s, color 0.3s;
}

.dropdown li a:hover {
    background: var(--gray);
    color: var(--primary);
}

/* Desktop hover */
/* .has-dropdown:hover .dropdown {
    display: block;
} */ */

/* =====================================================
   RESPONSIVE (MOBILE & TABLET)
===================================================== */
@media (max-width: 900px) {
    /* Topbar */
    .topbar .container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    /* Burger */
    .menu-toggle {
        display: block;
    }

    /* Nav container */
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: none;
        border-top: 1px solid #e5e7eb;
    }

    .nav.active {
        display: block;
    }

    /* Menu vertical */
    .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .menu > li {
        border-bottom: 1px solid #f0f0f0;
    }

    .menu > li > a {
        padding: 14px 18px;
        justify-content: space-between;
    }

    /* Dropdown mobile */
    .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: #f9fafb;
        display: none;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .dropdown li a {
        padding-left: 32px;
        font-size: 14px;
    }
    .has-dropdown a i {
        display: none;
    }
}

/* =====================================================
   NEWSLETTER
===================================================== */
.newsletter {
    background: var(--primary);
    color: #ffffff;
    padding: 40px 0;
}

.newsletter-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.newsletter h3 {
    font-size: 22px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px 14px;
    border-radius: 4px;
    border: none;
    min-width: 240px;
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--secondary);
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.newsletter-form button:hover {
    opacity: 0.9;
}
/* =====================================================
   FOOTER – INSPIRE DU HEADER
===================================================== */

/* Top footer (newsletter) */
.footer-top {
    background: var(--primary);
    color: #ffffff;
}

.footer-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    gap: 20px;
}

.footer-top h3 {
    font-size: 20px;
    font-weight: 600;
}

/* Newsletter */
.footer-newsletter {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    padding: 11px 14px;
    border: none;
    border-radius: 4px;
    min-width: 240px;
}

.footer-newsletter button {
    background: var(--secondary);
    border: none;
    color: #fff;
    padding: 11px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.footer-newsletter button:hover {
    opacity: 0.9;
}

/* Main footer */
.footer-main {
    background: var(--dark);
    color: #d1d5db;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Columns */
.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col h4 span {
    color: var(--secondary);
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col ul li a {
    color: #d1d5db;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

/* Contact */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Socials */
.footer-socials {
    margin-top: 15px;
}

.footer-socials a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    background: #2a3440;
    color: #ffffff;
    border-radius: 4px; /* carré comme le header */
    margin-right: 8px;
    transition: background 0.3s;
}

.footer-socials a:hover {
    background: var(--secondary);
}

/* Bottom */
.footer-bottom {
    background: #161d26;
    color: #9ca3af;
    text-align: center;
    padding: 14px 0;
    font-size: 13px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
    .footer-top-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        flex-direction: column;
        width: 100%;
    }

    .footer-newsletter input,
    .footer-newsletter button {
        width: 100%;
    }
}

/* =====================================================
   WHATSAPP FLOATING BUTTON
===================================================== */
.whatsapp-float {
    position: fixed;
    right: 12px; /* proche de la scrollbar */
    bottom: 90px; /* au-dessus du bas */
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 2000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
.whatsapp-float {
    opacity: 0;
}

/* Mobile adjustment */
@media (max-width: 600px) {
    .whatsapp-float {
        right: 10px;
        bottom: 70px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* ===============================
   DOMAINES – STYLE PROFESSIONNEL
================================= */ /* ==================== Layout général ==================== */
.domain-section {
    padding: 80px 15px;
    background-color: #f8f9fa;
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.domain-card {
    max-width: 650px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.domain-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #212529;
    text-align: center;
}

/* ==================== Formulaire ==================== */
.domain-card form .input-group,
.domain-card form .mb-3 {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 15px;
}

.domain-card input.form-control,
.domain-card select.form-select {
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ced4da;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.domain-card input.form-control:focus,
.domain-card select.form-select:focus {
    border-color: #355d93;
    box-shadow: 0 0 0 2px rgba(53, 93, 147, 0.15);
    outline: none;
}

/* ==================== Boutons ==================== */
.domain-card button {
    width: 100%;
    padding: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}

.domain-card button.btn-primary {
    background-color: #355d93;
    color: #fff;
    border: none;
}

.domain-card button.btn-primary:hover {
    background-color: #4178c0;
    transform: translateY(-2px);
}

.domain-card button.btn-success {
    background-color: #28a745;
    color: #fff;
    border: none;
}

.domain-card button.btn-success:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.domain-card button.btn-warning {
    background-color: #ffc107;
    color: #212529;
    border: none;
}

.domain-card button.btn-warning:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

/* ==================== Feedback ==================== */
.domain-info-box {
    display: none;
    padding: 15px 18px;
    border: 1px solid;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
}

/* Vert pour succès */
.domain-info-box.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/* Rouge pour erreur / indisponible */
.domain-info-box.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Jaune pour info / warning */
.domain-info-box.warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

/* ==================== Pagination simple ==================== */
.pagination {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    list-style: none;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    background: #f1f1f1;
    color: #355d93;
    text-decoration: none;
    transition: background 0.3s;
}

.pagination li a:hover,
.pagination li.active a {
    background: #355d93;
    color: #fff;
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
    .domain-card {
        padding: 30px 20px;
    }
    .domain-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .domain-card {
        padding: 25px 15px;
    }
    .domain-card button {
        font-size: 1rem;
        padding: 10px;
    }
    .domain-card input.form-control,
    .domain-card select.form-select {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
}

/*
=====================================================
   HÉBERGEMENTS – STYLE PROFESSIONNEL

*/
/* HEBERGEMENT Linux */
/* ================== GLOBAL ================== */
h1,
h2,
h3,
h4 {
    font-weight: 700;
}

section {
    padding: 80px 0;
}

/* ================== HERO ================== */
.hero-pricing {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-header h1 span {
    color: #4da3ff;
}

.hero-header p {
    max-width: 700px;
    margin: 15px auto 50px;
    opacity: 0.9;
}

/* ================== PRICING ================== */
.pricing-table {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 20px;
}

.pricing-column {
    background: #fff;
    color: #222;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
}

.pricing-column ul {
    list-style: none;
    padding: 25px;
}

.pricing-column ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.pricing-header {
    padding: 25px;
    background: #f5f7fa;
}

.pricing-header .price {
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
}

.pricing-column.popular {
    transform: scale(1.05);
    border: 2px solid #4da3ff;
}

.btn-pricing {
    display: block;
    margin: 0 25px 25px;
    padding: 12px;
    border-radius: 30px;
    background: #e9edf3;
    font-weight: 600;
}

.btn-pricing.primary {
    background: #4da3ff;
    color: #fff;
}

/* ================== FEATURES ================== */
.features-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card img {
    width: 50px;
    margin-bottom: 15px;
}

/* ================== WHY ================== */
.why-section {
    background: #f7f9fc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-card i {
    font-size: 2rem;
    color: #4da3ff;
    margin-bottom: 15px;
}

.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    background: #4da3ff;
    color: #fff;
}

@media (max-width: 1200px) {
    section {
        padding: 70px 0;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.9rem;
    }
    h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }

    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    p {
        font-size: 0.95rem;
    }
}
@media (max-width: 992px) {
    .hero-pricing {
        background-attachment: scroll;
    }

    .hero-header p {
        padding: 0 15px;
        max-width: 100%;
    }
}
@media (max-width: 1200px) {
    .pricing-table {
        grid-template-columns: 1.2fr repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .pricing-table {
        grid-template-columns: 1fr;
    }

    .pricing-column.specs {
        display: none;
    }

    .pricing-column {
        max-width: 460px;
        margin: 0 auto;
    }

    .pricing-column.popular {
        order: -1;
        transform: none;
        border-width: 2px;
    }
}

@media (max-width: 576px) {
    .pricing-column ul li {
        font-size: 0.9rem;
        padding: 7px 0;
    }

    .pricing-header .price {
        font-size: 1.4rem;
    }
}
@media (max-width: 1200px) {
    .features-layout {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 992px) {
    .features-layout {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-image {
        margin-top: 50px;
        text-align: center;
    }

    .features-image img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px;
    }
}
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 28px;
    }
}
@media (max-width: 576px) {
    .btn-pricing {
        padding: 12px;
        font-size: 1rem;
    }

    .btn-pricing.primary {
        box-shadow: 0 10px 25px rgba(77, 163, 255, 0.4);
    }
}

/* hebergement cloud */
/* ===================== PRICING BANNIÈRE ===================== */
.pricing-with-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pricing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0;
}

/* ===================== FEATURES ===================== */
.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.feature-box img {
    max-width: 70px;
    margin-bottom: 15px;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* ===================== SERVICES ===================== */
.service-box {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.service-box i {
    font-size: 2rem;
    color: #4178c0;
    margin-bottom: 15px;
}

.service-box:hover {
    transform: translateY(-6px);
}

/* ===================== TITRES ===================== */
.section-title h3 span {
    color: #4178c0;
}

.opacity-90 {
    opacity: 0.9;
}

/* HEBERGEMENTS Windows */
/* PRIX WINDOWS */
.pricing-bigger .card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-bigger .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.card-header h5 {
    font-weight: 700;
}
.card-body ul li {
    padding: 0.5rem 0;
}
.btn-block {
    width: 100%;
}

/* HÉBERGEMENTS ET SERVICES */
.hfeatures img {
    max-height: 50px;
    margin-right: 15px;
}
.service-box {
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s;
}
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.service-box i {
    color: #355d93;
}
.bg-light {
    background-color: #f8f9fa;
}

/* Styles spécifiques à la page de commande de service web */

.step-progress {
    max-width: 420px;
    height: 6px;
    border-radius: 50px;
}

.progress-bar {
    background: linear-gradient(90deg, #0d6efd, #4f9cff);
    transition: width 0.4s ease;
}

.ux-form {
    border-radius: 1rem;
}

.ux-step {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.ux-step.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Formulaire multi-étapes avec toggle particulier/entreprise */

/* ======= Form Steps ======= */
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.form-step-active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Progress bar */
.progress-container {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 30px;
}

.progress-bar {
    height: 8px;
    width: 0%;
    background: #355d93;
    border-radius: 4px;
    transition: width 0.5s;
}

/* ====== */
/* Serveur dédié libre */
/* ====== */
/* Configuration Générale */
:root {
    --primary-custom: #0d6efd;
    --dark-bg: #0f141e;
    --primary-light: rgba(13, 110, 253, 0.08);
}

.section-padding {
    padding: 80px 0;
}
.title-main {
    font-weight: 800;
    font-size: 2.5rem;
}
.title-main span {
    color: var(--primary-custom);
}
.title-line {
    width: 60px;
    height: 4px;
    background: var(--primary-custom);
    border-radius: 2px;
}

/* Hero Section */
.hero-server {
    min-height: 500px;
    padding: 120px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.badge-tech {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-custom);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.root-access-tag {
    font-family: "Courier New", monospace;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Server Cards */
.server-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.server-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.server-card.featured {
    border: 2px solid var(--primary-custom);
    transform: scale(1.03);
}

.server-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-custom);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.server-price {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-bg);
}
.server-price .val {
    font-size: 2.8rem;
    font-weight: 800;
}
.server-price .unit {
    line-height: 1;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-custom);
}
.server-price .unit span {
    color: #888;
    font-weight: 400;
}

.server-specs li {
    font-size: 0.95rem;
    color: #555;
}

/* Buttons */
.btn-server-primary {
    background: var(--primary-custom);
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

.btn-server-primary:hover {
    background: #0b5ed7;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
    color: #fff;
}

.btn-server-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #333;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-server-outline:hover {
    border-color: var(--primary-custom);
    color: var(--primary-custom);
}

/* Feature Boxes */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.feature-box-linux:hover .icon-circle {
    background: var(--primary-custom) !important;
    color: #fff !important;
    transform: scale(1.1);
}

/* Accordion */
.linux-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary-custom);
    box-shadow: none;
}

/* Animations */
.animate-up {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}
.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
.delay-3 {
    animation-delay: 0.6s;
}

.animate-card {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}
.animate-card.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* ============================
   WHY TICAFRIQUE SECTION
============================ */

.hosting-why-section {
    padding: 100px 0;
    background: #f8f9fb;
}

/* TITLE */
.hosting-why-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.hosting-why-title h2 span {
    color: #0061ff;
}

.hosting-why-title p {
    max-width: 680px;
    margin: 0 auto 60px;
    color: #6c757d;
    font-size: 1.05rem;
}

/* TABS */
.hosting-why-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hosting-why-tabs .nav-link {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 22px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hosting-why-tabs .nav-link h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #212529;
}

.hosting-why-tabs .nav-link span {
    font-size: 0.9rem;
    color: #6c757d;
}

.hosting-why-tabs .nav-link.active {
    background: linear-gradient(135deg, #0061ff, #60efff);
    color: #fff;
    border: none;
}

.hosting-why-tabs .nav-link.active h5,
.hosting-why-tabs .nav-link.active span {
    color: #fff;
}

.hosting-why-tabs .nav-link:hover {
    transform: translateY(-3px);
}

/* CONTENT */
.hosting-why-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.why-image {
    text-align: center;
}

.why-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hosting-why-content {
        padding: 20px;
    }
}

/* ====== */
/* end Serveur dédié libre */
/* ====== */

/* vps */
:root {
    --vps-blue: #0d6efd;
    --vps-dark: #0a0e17;
    --vps-light: #f4f7fa;
    --vps-gradient: linear-gradient(135deg, #0d6efd 0%, #00d2ff 100%);
}

/* Hero Section */
.vps-hero {
    min-height: 550px;
    padding: 100px 0;
    display: flex;
    align-items: center;
    color: white;
    background-size: cover;
    background-position: center;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.vps-hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
}
.vps-hero h1 span {
    color: #00d2ff;
}
.vps-hero p {
    font-size: 1.25rem;
    margin: 25px 0 40px;
    opacity: 0.9;
}

/* Pricing Cards */
.vps-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.vps-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.vps-card.featured {
    border: 2px solid var(--vps-blue);
    transform: scale(1.05);
    z-index: 2;
}

.badge-featured {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--vps-gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.vps-card-top h4 {
    font-weight: 700;
    color: var(--vps-dark);
    margin-bottom: 20px;
}

.vps-price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.price-val {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--vps-dark);
}
.currency-period {
    font-size: 0.75rem;
    text-align: left;
    margin-left: 10px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--vps-blue);
}

.vps-specs-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    text-align: left;
}
.vps-specs-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
    color: #555;
    font-size: 0.95rem;
}
.vps-specs-list li i {
    color: var(--vps-blue);
    margin-right: 12px;
    font-size: 0.8rem;
}

/* Buttons */
.btn-vps-primary {
    background: var(--vps-gradient);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-vps-outline {
    background: transparent;
    border: 2px solid #eee;
    color: var(--vps-dark);
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-vps-outline:hover {
    border-color: var(--vps-blue);
    color: var(--vps-blue);
}

/* Feature Cards */
.vps-feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
    height: 100%;
}

.vps-feature-card:hover {
    background: var(--vps-dark);
    color: white;
}
.vps-feature-card i {
    font-size: 2.5rem;
    color: var(--vps-blue);
    margin-bottom: 25px;
    display: block;
}
.vps-feature-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Accordion */
.vps-accordion .accordion-item {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.vps-accordion .accordion-button {
    font-weight: 600;
    padding: 20px;
}
.vps-accordion .accordion-button:not(.collapsed) {
    background: #f0f7ff;
    color: var(--vps-blue);
}

/* Responsive */
@media (max-width: 991px) {
    .vps-hero h1 {
        font-size: 2.5rem;
    }
    .vps-card.featured {
        transform: scale(1);
        margin: 30px 0;
    }
}

/* ============================
   WHY VPS TICAFRIQUE
============================ */

.hosting-why-vps-section {
    padding: 100px 0;
    background: #f7f9fc;
}

/* TITRE */
.hosting-why-title h2 {
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.hosting-why-title h2 span {
    color: #0061ff;
}

.hosting-why-title p {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #6c757d;
    font-size: 1.05rem;
}

/* TABS */
.hosting-why-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hosting-why-tabs .nav-link {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 22px;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all .3s ease;
}

.hosting-why-tabs .nav-link h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #212529;
}

.hosting-why-tabs .nav-link span {
    font-size: .9rem;
    color: #6c757d;
}

.hosting-why-tabs .nav-link.active {
    background: linear-gradient(135deg, #0061ff, #60efff);
    color: #fff;
    border: none;
}

.hosting-why-tabs .nav-link.active h5,
.hosting-why-tabs .nav-link.active span {
    color: #fff;
}

.hosting-why-tabs .nav-link:hover {
    transform: translateY(-3px);
}

/* CONTENU */
.hosting-why-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

/* IMAGE */
.why-image {
    text-align: center;
}

.why-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hosting-why-content {
        padding: 20px;
    }
}


/* end vps */

/* infogerence */
:root {
    --primary-blue: #0d6efd;
    --dark-navy: #0a0e17;
    --text-gray: #5e6d77;
    --soft-bg: #f8fafc;
}

/* Hero Optimization */
.info-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 80px 0;
}

.status-badge {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.info-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
}
.info-hero h1 span {
    color: var(--primary-blue);
}
.info-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 20px 0 30px;
}

/* Pricing Cards */
.info-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.info-card.featured {
    border: 2px solid var(--primary-blue);
    background: #fff;
    z-index: 2;
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-header-plan h4 {
    color: var(--dark-navy);
    font-weight: 700;
}

.info-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 25px 0;
    color: var(--dark-navy);
}

.info-price .currency {
    font-size: 1rem;
    vertical-align: top;
    margin-right: 5px;
    color: var(--primary-blue);
}
.info-price .period {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 400;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}
.specs-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    color: var(--text-gray);
    font-size: 0.95rem;
}
.specs-list li i {
    color: #2ecc71;
    margin-right: 10px;
}

/* Feature Boxes */
.info-feature-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
    text-align: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

/* Accordion Customization */
.custom-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}
.custom-accordion .accordion-button {
    font-weight: 600;
    padding: 20px;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(13, 110, 253, 0.05);
    color: var(--primary-blue);
}

/* Buttons */
.btn-primary-custom {
    background: var(--primary-blue);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-primary-custom:hover {
    background: #0b5ed7;
    transform: scale(1.02);
}

/* Animations & Responsive */
@media (max-width: 991px) {
    .info-hero {
        text-align: center;
        padding: 60px 0;
    }
    .info-hero h1 {
        font-size: 2.5rem;
    }
    .info-card.featured {
        transform: scale(1);
    }
}

/* ============================
   WHY MANAGED SERVERS
============================ */

.hosting-why-managed-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f7f9fc, #eef2f7);
}

/* TITRE */
.hosting-why-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hosting-why-title h2 span {
    color: #0061ff;
}

.hosting-why-title p {
    max-width: 760px;
    margin: 0 auto 60px;
    color: #6c757d;
    font-size: 1.05rem;
}

/* TABS (réutilisables avec VPS & Dédié) */
.hosting-why-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hosting-why-tabs .nav-link {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 24px;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all .3s ease;
}

.hosting-why-tabs .nav-link h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #212529;
}

.hosting-why-tabs .nav-link span {
    font-size: .9rem;
    color: #6c757d;
}

.hosting-why-tabs .nav-link.active {
    background: linear-gradient(135deg, #0061ff, #60efff);
    color: #ffffff;
    border: none;
}

.hosting-why-tabs .nav-link.active h5,
.hosting-why-tabs .nav-link.active span {
    color: #ffffff;
}

.hosting-why-tabs .nav-link:hover {
    transform: translateY(-3px);
}

/* CONTENU */
.hosting-why-content {
    background: #ffffff;
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

/* IMAGE */
.why-image {
    text-align: center;
}

.why-image img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hosting-why-content {
        padding: 22px;
    }
}


/* end infogerence */

/* index serveur dédié */
/* --- HERO --- */
.hosting-hero {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
}
.hosting-hero h1 span {
    color: #0d6efd;
}
.badge-tech {
    background: rgba(13, 110, 253, 0.2);
    border: 1px solid #0d6efd;
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SECTION SOLUTIONS --- */
.solutions-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}
.section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 16, 32, 0.785); /* Fond sombre pour contraste */
}
.title-bar {
    width: 50px;
    height: 3px;
    background: #0d6efd;
    margin-top: 15px;
}

/* --- CARTES : TOUTES BLANCHES POUR LA VISIBILITÉ --- */
.hosting-card-clean {
    background: #ffffff; /* Toutes les cartes sont blanches maintenant */
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    transition: 0.3s ease;
    border: 1px solid transparent;
}
.hosting-card-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hosting-card-clean.featured {
    border: 2px solid #0d6efd;
}

.icon-wrap {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}
.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.9rem;
    color: #444;
}
.feature-list li i {
    margin-right: 10px;
    font-weight: bold;
    color: #2ecc71;
}

.btn-action {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
}
.btn-action:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.top-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d6efd;
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* --- ANIMATIONS --- */
.host-animate,
.host-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}
.host-animate.visible,
.host-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.2s;
}
.delay-2 {
    transition-delay: 0.4s;
}
.delay-3 {
    transition-delay: 0.6s;
}
/* end index serveur dédié */
