/* =========================
   GLOBAL
========================= */
:root {

    --primary:
        linear-gradient(135deg, #ff385c, #ff7a59);

    --primary-solid: #ff385c;

    --secondary: #00a699;

    --dark: #111827;

    --text: #6b7280;

    --light: #f9fafb;

    --border: #ececec;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {

    font-family: "Inter", sans-serif;

    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);

    color: var(--dark);

    min-height: 100vh;

    position: relative;
}

a {
    text-decoration: none  !important;
    color: rgb(255 109 90) !important;
}

.section-title{
    color: #ff455c !important;
    text-transform: uppercase;
}


/* ================= TOPBAR ================= */
.topbar{
    background:#0f172a;
    color:#cbd5e1;
    font-size:13px;
    padding:8px 0;
}

.top-link{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.top-link:hover{
    color:#fff;
}

.btn-favorite-navbar{
    position: relative;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff7e6;
    color: #fea814;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.btn-favorite-navbar i{
    font-size: 18px;
}

.btn-favorite-navbar:hover{
    background: #fea814;
    color: #fff;
    transform: translateY(-2px);
}

.favorite-count{
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 20px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

 .btn-review {
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Bouton Annuler */
.btn-cancel {
    background: #f1f3f5;
    color: #495057;
    border: 1px solid transparent;
}

.btn-cancel:hover {
    background: #e9ecef;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Bouton Submit (principal) */

.btn-submit {
    background: linear-gradient(135deg, #fea01c, #ff7254);
    color: #fff;
    border: none;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ff7254, #fea01c);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(13,110,253,0.35);
}

.btn-review i {
    font-size: 1.1rem;
}

.request-section{
    background:#fafafa;
    border:1px solid #f1f1f1;
    border-radius:16px;
    padding:20px;
    margin-bottom:20px;
}

.section-title{
    font-weight:700;
    margin-bottom:18px;
    color:#333;
}

.request-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    border:4px solid #fea814;
    color:#fea814;
    background:#fffaf0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}


.my-modal {
    border-radius: 18px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

.my-modal .modal-header {
    background: linear-gradient(135deg, #fea814, #ff6d5a);
    color: #fff;
}

.my-modal .btn-close {
    filter: invert(1);
}

.my-modal .modal-body {
    padding: 30px 20px;
}
/* ================= LOGO ================= */
.logo-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    background:linear-gradient(135deg,#ff6b35,#ffb703);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
}

.logo-main{
    font-weight:800;
    font-size:18px;
    color:#0f172a;
}

.logo-sub{
    font-size:11px;
    letter-spacing:2px;
    color:#ff6b35;
}

.navbar-logo{
    max-height: 70px !important;
}

/* ================= MENU ================= */
.premium-menu .nav-link{
    font-weight:500;
    color:#334155 !important;
    margin:0 8px;
    position:relative;
    text-transform: uppercase;
}

.premium-menu .nav-link:hover{
    color:#ff6b35;
}

.premium-menu .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#ff6b35;
    transition:.3s;
}

.premium-menu .nav-link:hover::after{
    width:100%;
}

.reviews-badge{
    background: rgba(255, 107, 0, 0.08);
    color: #ff6b00;
    font-size: 12px;
    font-weight: 600;
    transition: .25s;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.reviews-badge:hover{
    background: #ff6b00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
}

.reviews-badge.badge-xs{
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 107, 0, 0.08);
    color: #ff6b00;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 0, 0.2);
    line-height: 1.2;
    transition: .2s ease;
}

.reviews-badge.badge-xs i{
    font-size: 10px;
}

.reviews-badge.badge-xs:hover{
    background: #ff6b00;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.25);
}

.contact-premium{
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* HEADER BADGE */
.contact-badge{
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,166,153,0.1);
    color: #00a699;
    font-weight: 600;
}

/* ROW ITEM */
.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 5px 12px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: .25s ease;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-row:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* ICON */
.contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff385c, #ff7a59);
    color: white;
    font-size: 16px;
}


/* TEXT */
.contact-info .label{
    display:block;
    font-size: 11px;
    color: #9ca3af;
}

.contact-info .value{
    display:block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* WHATSAPP SPECIAL */
.contact-row.whatsapp .contact-icon{
    background: linear-gradient(135deg,#25D366,#128C7E);
}

/* SOCIAL */
.social-row{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.social-pill{
    width: 38px;
    height: 38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius: 12px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.05);

    color: #111827;
    transition:.25s;
}

.social-pill:hover{
    background: #ff6b00;
    color:white !important;
    transform: translateY(-3px);
}

@me

* {
    max-width: 100%;
}

.main-content {
  /*  padding-top: 100px !important;*/
}
/* =========================
   BACKGROUND SHAPES
========================= */
.bg-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    opacity: .18;

    z-index: 0;
}

.shape-1 {

    width: 350px;
    height: 350px;

    background: #ff385c;

    top: -100px;
    left: -120px;
}

.shape-2 {

    width: 300px;
    height: 300px;

    background: #00a699;

    bottom: -80px;
    right: -80px;
}

/* ================= TOPBAR (FIXED TOP) ================= */
.topbar{
    /*position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;

    background:#0f172a;
    color:white;
    font-size:11px;
    padding:8px 0;

    z-index: 100000;
}

.topbar a{
    color:#cbd5e1 !important;
    text-decoration:none;
    transition:.2s;
}

.topbar a:hover{
    color:#fff;
}

.topbar-item{
    display:flex;
    align-items:center;
    gap:6px;
    color:#cbd5e1;
    background:transparent;
    border:none;
}

/* ================= NAVBAR (STICKY UNDER TOPBAR) ================= */

/* sticky state JS */
.premium-navbar.is-sticky{
    position: fixed;
    top: 0px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 6px 0;
}

.premium-navbar{
    z-index: 1000;
}

.premium-navbar {
    left: 0;
    width: 100%;
    padding:14px 0;

    position:relative;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid #eee;

    transition: all .25s ease;
}

/* shrink effect */
.premium-navbar.shrink {
    padding: 6px 0;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
/* ================= LOGO ================= */
.logo-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    background:linear-gradient(135deg,#ff385c,#ff7a59);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
}

.logo-main{
    font-weight:900;
    font-size:18px;
    color: #262525 !important;
}

.logo-sub{
    font-size:11px;
    color:#ff385c;
    letter-spacing:1px;
}

/* ================= MENU ================= */
.premium-menu .nav-link{
    font-weight:600;
    color:#374151;
    padding:10px 14px;
    border-radius:999px;
    transition:.25s;
}

.premium-menu .nav-link:hover{
    background:#f3f4f6;
    color:#ff385c;
}

/* ================= BUTTON ================= */
.action-btn{
    border:1px solid #eee;
    background:white;
    padding:8px 14px;
    border-radius:999px;
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
}

.action-btn:hover{
    background:#ff6b35;
    color:#fff !important;
    border-color:#ff6b35;
}

/* ================= USER ================= */
.user-btn{
    border:none;
    background:#fff;
    display:flex;
    align-items:center;
    gap:8px;
    padding:6px 10px;
    border-radius:50px;
    border:1px solid rgba(0,0,0,.08);
}

.avatar{
    width:32px;
    height:32px;
    border-radius:50%;
    background:linear-gradient(135deg,#ff6b35,#ffb703);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:700;
}

/* ================= DROPDOWN FIX ================= */
.dropdown{
    position: relative;
    z-index: 200000;
}

.dropdown-menu{
    z-index: 200000 !important;
}

.premium-dropdown{
    border:none;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    padding:10px;
}

/* ================= MOBILE ================= */
@media(max-width:991px){
    body{
       /* padding-top: 100px;*/
    }

    .premium-menu{
        text-align:center;
    }
}
    .listing-header {
        background: linear-gradient(135deg, rgb(255 81 91 / 8%), rgba(13, 110, 253, 0.03));
        border: 1px solid rgba(13, 110, 253, 0.03);
        border-radius: 20px;

        padding: 30px;
        margin-bottom: 25px;
    }

    .listing-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgb(255 102 90);
        color: #fff;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
    }

    .listing-title {
        font-size: 2rem;
        font-weight: 800;
        color: #212529;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .listing-title span {
        color: #ff6d5a;
    }

    .breadcrumb-item{
        color: #7b7a7a !important;
    }

   .breadcrumb-item.active{
        color: #bebcbc !important;
    }

    @media(max-width:768px){

        .listing-header{
            padding:20px;
        }

        .listing-title{
            font-size:1.5rem;
        }

        .listing-description{
            font-size:14px;
        }

    }

    @media (max-width: 768px) {
        .company-card h5,
        .company-card h3 {
            text-align: center;
        }

        .main-content {
            padding-top: 0 !important;
        }
    }

    @media (max-width: 767.98px) {
        .breadcrumb {
            justify-content: center;
            text-align: center;
            flex-wrap: wrap;
        }
    }

/* =========================
   HERO
========================= */
.hero {

    padding-top: 60px;

    padding-bottom: 80px;

    position: relative;
}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border-radius: 999px;

    background:
        rgba(255, 56, 92, .08);

    color: var(--primary-solid);

    font-weight: 700;

    margin-bottom: 30px;
}

.hero-title {

    font-size: 60px;

    font-weight: 900;

    line-height: 1.05;

    letter-spacing: -3px;

    max-width: 950px;

    margin: auto;
}

.gradient-text {

    background:
        linear-gradient(135deg, #ff385c, #ff7a59, #00a699);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-subtitle {

    max-width: 760px;

    margin: 25px auto;

    color: var(--text);

    font-size: 20px;

    line-height: 1.8;
}

/* =========================
   SEARCH BAR
========================= */
.search-wrapper {

    max-width: 1150px;

    margin: 0 auto 0;

    background: white;

    border-radius: 999px;

    padding: 12px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .08);

    border:
        1px solid rgba(0, 0, 0, .04);
}

.search-item {

    flex: 1;

    min-width: 180px;

    padding: 10px 20px;

    border-right: 1px solid #eee;
}

.search-item:last-child {
    border-right: none;
}

.search-label {

    font-size: 12px;

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 4px;
}

.search-input {

    border: none;

    outline: none;

    width: 100%;

    font-size: 15px;

    color: var(--text);

    background: transparent;
}

.search-btn {

    width: 64px;
    height: 64px;

    border-radius: 50%;

    border: none;

    background: var(--primary) !important;

    color: rgb(198, 197, 197) !important;

    font-size: 20px;

    transition: .3s ease;
}

.search-btn{
    transition: all .25s ease !important;
}

.search-btn:hover{
    background: linear-gradient(135deg, #fa5742 0%, #ff8f3d 100%) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(192, 191, 190, 0.35) !important;
    transform: translateY(-2px) !important;
}

.breadcrumb-item{
    text-transform: capitalize !important;
}
/* =========================
   AUTH
========================= */
.auth-section {

    min-height: calc(100vh - 90px);

    display: flex;

    align-items: center;

    position: relative;

    z-index: 5;

    padding: 40px 0;
}

.auth-card {

    background:
        rgba(255, 255, 255, .85);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .5);

    border-radius: 36px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .08);
}

.auth-left {

    padding: 70px;

    background:
        linear-gradient(135deg, #111827, #1f2937);

    color: white;

    position: relative;

    overflow: hidden;
}

.auth-left::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    background:
        radial-gradient(circle,
            rgba(255, 56, 92, .35),
            transparent 70%);

    top: -180px;
    right: -180px;
}

.auth-title {

    font-size: 52px;

    font-weight: 900;

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.auth-description {

    color: rgba(255, 255, 255, .75);

    font-size: 17px;

    line-height: 1.8;

    max-width: 500px;
}

.auth-right {
    padding: 70px;
}

.form-title {

    font-size: 34px;

    font-weight: 800;

    letter-spacing: -1px;
}

.form-subtitle {

    color: var(--text);

    margin-bottom: 35px;
}

/* =========================
   INPUTS
========================= */
.input-group-premium {

    background: #f9fafb;

    border: 1px solid transparent;

    border-radius: 22px;

    padding: 0 18px;

    height: 64px;

    transition: .25s ease;

    margin-bottom: 18px;
}

.input-group-premium:focus-within {

    background: white;

    border-color: #ffccd6;

    box-shadow:
        0 10px 25px rgba(255, 56, 92, .08);
}

.input-icon {

    font-size: 20px;

    color: #9ca3af;
}

.form-control-premium {

    border: none;

    background: transparent;

    width: 100%;

    outline: none;

    padding: 0 15px;

    font-size: 15px;

    color: var(--dark);
}

.form-control-premium::placeholder {
    color: #9ca3af;
}

/* =========================
   SOCIAL BUTTON
========================= */
.social-btn {

    width: 58px;
    height: 58px;

    border-radius: 20px;

    border: 1px solid var(--border);

    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    color: var(--dark);

    transition: .25s ease;
}

.social-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .06);
}

/* =========================
   LOCATION MODAL
========================= */
.location-modal {

    border-radius: 28px;

    border: none;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .15);
}

.pac-container {
    z-index: 20000 !important;
}

/* =========================
   FOOTER
========================= */
footer {

    background: white;

    border-top: 1px solid #eee;

    padding-top: 80px;

    /*margin-top: 100px;*/
}

/* =========================
   MOBILE
========================= */
@media(max-width:991px) {

    .hero-title {

        font-size: 38px;

        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .search-wrapper {

        border-radius: 28px;

        width: 100%;
    }

    .search-item {

        min-width: 100%;

        border-right: none;

        border-bottom: 1px solid #eee;

        padding: 16px;
    }

    .search-btn {

        width: 100%;

        border-radius: 18px;

        height: 56px;
    }

    .auth-left {
        padding: 50px 35px;
    }

    .auth-right {
        padding: 50px 28px;
    }

    .auth-title {
        font-size: 38px;
    }

    .form-title {
        font-size: 28px;
    }

    .premium-actions {

        flex-direction: column;

        align-items: stretch !important;
    }

    .premium-login-btn,
    .action-btn {

        width: 100%;
    }
}

/* =========================
   AUTH PREMIUM EXTRA
========================= */

.auth-card {
    overflow: hidden;
}

.auth-left {
    min-height: 750px;
}

.hero-mobile-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.form-title {
    font-size: 42px;
    font-weight: 900;
}

.form-subtitle {
    font-size: 16px;
    line-height: 1.7;
}

.social-btn {
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(255, 56, 92, .04),
            rgba(0, 166, 153, .04));

    opacity: 0;

    transition: .3s ease;
}

.social-btn:hover::before {
    opacity: 1;
}

.login-btn {
    position: relative;
    overflow: hidden;
}

.login-btn::after {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .25),
            transparent);

    transition: .7s;
}

.login-btn:hover::after {
    left: 120%;
}

/* MOBILE */
@media(max-width:991px) {

    .auth-section {
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .auth-card {
        border-radius: 28px;
    }

    .auth-right {
        padding: 40px 24px;
    }

    .form-title {
        font-size: 34px;
    }

    .hero-mobile-title {
        font-size: 30px;
    }
}

.premium-pagination .page-link {
        border-radius: 10px !important;
        margin: 0 4px;
        border: none;
        color: #a4a3a3 !important;
        background: #f8f9fa;
        transition: all 0.25s ease;
        font-weight: 500;
    }
    
    .premium-pagination .page-link:hover {
        background: #ff695a;
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(13,110,253,0.25);
    }
    
    .premium-pagination .active .page-link {
        background: linear-gradient(135deg, #ff695a, #fa8e79);
        color: white !important;;
        border: none;
        box-shadow: 0 8px 20px rgb(253 124 106 / 30%);
    }
    
    .premium-pagination .disabled .page-link {
        opacity: 0.4;
    }
    
    .btn-map-premium {
        width: 42px;
        height: 42px;
    
        display: flex;
        align-items: center;
        justify-content: center;
    
        border-radius: 50%;
        border: none;
    
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(10px);
    
        color: #ff695a;
        font-size: 16px;
    
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    
        transition: all 0.25s ease;
    }
    
    .btn-map-premium:hover {
        background: #ff695a;
        color: #fff;
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgb(253 124 106 / 30%);
    }
    
    /* effet clic mobile */
    .btn-map-premium:active {
        transform: scale(0.95);
    }
    
    .btn-map-premium {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #ff695a;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

/*** Testimonial Start ***/
.premium-stars i {
    font-size: 1.8rem;
    cursor: pointer;
    color: #dee2e6; /* gris par défaut */
    transition: all 0.2s ease-in-out;
}

.premium-stars i.active {
    color: #ffc107 !important; /* jaune Bootstrap warning */
    transform: scale(1.1);
}

.premium-stars i:hover {
    transform: scale(1.15) !important;
}

.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #ff645a;
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid #ff645a;
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: #ff645a;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid #ff645a;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid #ff645a;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: #ff645a;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: #f8f9fa !important;
    color: #ff575a;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white);
    border-style: dotted;
    transition: 0.5s;
}
 
.review-date {
    position: absolute;
    bottom: 8px;
    right: 10px;
        
    font-size: 10px;          /* 🔥 plus petit */
    font-weight: 500;
    color: #8a8f98;
        
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 12px;
        
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
        
    letter-spacing: 0.2px;
    line-height: 1;
}

.testimonial-img img {
    object-fit: cover !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important;
    border: 3px solid #fff !important;
}

.avatar-offset {
    position: relative !important;
    left: 70px !important;
}
        
.stars i {
    font-size: 14px;
}

.testimonial-comment {
    height: 180px; /* 🔥 ajuste selon ton design */
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* ⭐ shadow premium */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    /* ⭐ optionnel mais recommandé */
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    transition: all 0.3s ease;
}

/* hover effet doux */
.testimonial-comment:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}
 
    .owl-carousel.owl-drag .owl-item {
        height: 262px !important;
    }
        
    .review-text {
        overflow: hidden;
    }

    /* IMPORTANT: enlève l'espace inutile */
    .testimonial-carousel .owl-stage-outer {
        margin-bottom: 5px; /* 🔥 réduit l’espace */
    }
        
    .owl-carousel .owl-nav {
        display: none !important;
    }

/*** Testimonial End ***/

/* =========================
   GLOBAL THEME
========================= */

.text-gradient{
    background: linear-gradient(90deg,#ff6b35,#ffb703,#06b6d4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =========================
   BADGE
========================= */

.feature-badge,
.activity-badge{
    background:#fff;
    border:1px solid rgba(255,107,53,.15);
    color:#ff6b35;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    font-weight:600;
}

/* =========================
   PREMIUM CARD (FEATURES)
========================= */

.premium-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    transition:.35s ease;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;
}

.premium-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ff6b35,#ffb703,#06b6d4);
}

.premium-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.premium-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff6b35,#ffb703);
    color:#fff;
    font-size:34px;
    box-shadow:0 15px 30px rgba(255,107,53,.3);
}

.feature-number{
    margin-top:20px;
    font-size:28px;
    font-weight:800;
    color:#ff6b35;
}

/* =========================
   ACTIVITY CARD (LOISIRS)
========================= */

.activity-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    text-align:center;
    transition:.35s ease;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    position:relative;
    overflow:hidden;
}

.activity-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.activity-image{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff6b35,#ffb703);
    color:#fff;
    font-size:34px;
    box-shadow:0 15px 30px rgba(255,107,53,.3);
}

.activity-meta{
    font-size:14px;
    color:#6b7280;
    margin-top:8px;
}

.activity-btn{
    border-radius:50px;
    padding:6px 18px;
    border:1px solid #ff6b35;
    color:#ff6b35;
    background:transparent;
    transition:.3s ease;
}

.activity-btn:hover{
    background:#ff6b35;
    color:#fff;
}

/* =========================
   CTA PREMIUM
========================= */

.premium-cta{
    background: linear-gradient(135deg,#0f172a 0%,#1e3a8a 45%,#0ea5e9 100%);
    border-radius:32px;
    padding:60px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    position:relative;
    overflow:hidden;
    color:#fff;
}

.cta-glow{
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-150px;
    right:-120px;
    filter:blur(10px);
}

.cta-badge{
    display:inline-block;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    font-weight:600;
}

.cta-icon{
    width:140px;
    height:140px;
    margin:auto;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
}

.cta-icon i{
    font-size:70px;
    color:#fff;
}

/* =========================
   GLASS CARD (RECOMMENDED)
========================= */

.glass-card{
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(12px);
    border-radius:24px;
    padding:28px;
    text-align:center;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.glass-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.glass-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.glass-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#06b6d4,#ffb703);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.glass-badge{
    font-size:12px;
    font-weight:600;
    padding:6px 12px;
    border-radius:50px;
    background:rgba(99,102,241,.1);
    color:#6366f1;
}

.glass-meta{
    font-size:14px;
    color:#6b7280;
}
