
.site-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 700 !important;
	font-family: "Poppins", "Montserrat", Arial, sans-serif;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Bouton principal */
.btn-premium {
    background: linear-gradient(135deg, #000, #000);
    color: #fff;
   
}

/* Bouton secondaire */
.btn-outline {
    background: transparent;
    border: 2px solid #000;
    color: #fff;
}

/* Hover global */
.site-button:hover {
    transform: translateY(-3px);
}

/* Hover bouton principal */
.btn-premium:hover {
    background: linear-gradient(135deg, #f9ca00, #f9ca00);

}



/* Icône animée */
.site-button i {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.site-button:hover i {
    transform: translateX(6px);
}

/* Responsive mobile */
@media (max-width: 768px) {
    .site-button {
       
       
        font-size: 30px;
        padding: 13px 20px;
    }
}

.service-card {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

/* ICÔNE */
.service-icon {
    width: 70px;
    height: 70px;
    background: #f7c600; /* JAUNE */
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.service-card h4 a {
    color: #111;
    text-decoration: none;
}

.service-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}


.cta-taxi {
    width: 80%;
    background: #1a1a1a; /* JAUNE */
    padding: 80px 20px;
    text-align: center;
    border-radius: 18px;
    margin: 60px auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cta-taxi h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-taxi p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f7c600;
    color: #fff;
    padding: 18px 40px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
  
}

.cta-btn:hover {
    background: #111;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-taxi {
        padding: 60px 15px;
    }

    .cta-taxi h2 {
        font-size: 28px;
    }

    .cta-taxi p {
        font-size: 18px;
    }

    .cta-btn {
        font-size: 18px;
        padding: 14px 28px;
    }
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* CONTENEUR IMAGE */
.blog-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENU */
.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 14px;
    color: #f7c600; /* ✅ JAUNE TAXI */
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-date i {
    margin-right: 6px;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.blog-content p {
    flex-grow: 1;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* LIEN LIRE LA SUITE */
.read-more {
    margin-top: auto;
    font-weight: 600;
    color: #f7c600; /* ✅ JAUNE */
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #000;
    text-decoration: underline;
}

/* TITRE SECTION */
.section-head h2 span {
    color: #f7c600; /* ✅ JAUNE */
}

/* DIVIDER */
.section-head .divider {
    width: 80px;
    height: 4px;
    background: #f7c600; /* ✅ JAUNE */
    margin: 15px auto 0;
    border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .blog-content {
        padding: 22px;
    }

    .blog-content h3 {
        font-size: 20px;
    }
}