*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px; /* Ajuste la valeur selon la hauteur exacte de ton header */
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #13293D;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

::selection {
    background-color: #E85B12;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* LAYOUT CONTAINERS */
.container-6xl {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container-4xl {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container-3xl {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container-2xl {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.main-content {
    flex: 1 1 0%;
}

/* HEADER */
.site-header {
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    height: 2.25rem;
    max-width: 240px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .site-logo img {
        height: 2.5rem;
        max-width: 280px;
    }
}

.main-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(19, 41, 61, 0.8);
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    transition: color 150ms ease;
}

.nav-link:hover {
    color: #E85B12;
}

.btn-primary-sm {
    flex-shrink: 0;
    background-color: #E85B12;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 150ms ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.btn-primary-sm:hover {
    background-color: #d04f0d;
}

.btn-primary-sm:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #E85B12;
}

/* HERO SECTION */
.hero-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.hero-content > * + * {
    margin-top: 1.5rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 0.95;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
        line-height: 0.95;
    }
}

.text-orange {
    color: #E85B12;
}

.text-navy {
    color: #13293D;
}

.hero-description {
    color: rgba(19, 41, 61, 0.8);
    font-size: 1.125rem;
    max-width: 28rem;
    line-height: 1.5;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 0.875rem;
        line-height: 1.625;
    }
}

.hero-description strong {
    font-weight: 700;
    font-size: 1.15rem;
}

@media (min-width: 768px) {
    .hero-description strong {
        font-size: 1rem;
    }
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #13293D;
}

@media (min-width: 768px) {
    .hero-features {
        font-size: 0.75rem;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.icon-orange {
    width: 0.875rem;
    height: 0.875rem;
    color: #E85B12;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.btn-primary {
    background-color: #E85B12;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    transition: background-color 150ms ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: inline-block;
}

@media (min-width: 768px) {
    .btn-primary {
        font-size: 0.75rem;
        padding: 0.625rem 1.25rem;
    }
}

.btn-primary:hover {
    background-color: #d04f0d;
}

.btn-secondary {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: #13293D;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    transition: background-color 150ms ease;
    display: inline-block;
}

@media (min-width: 768px) {
    .btn-secondary {
        font-size: 0.75rem;
        padding: 0.625rem 1.25rem;
    }
}

.btn-secondary:hover {
    background-color: #f8fafc;
}

.hero-image-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background-color: #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hero-image-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* SECTIONS COMMON */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #f1f5f9;
}

.section-bg-alt {
    background-color: rgba(248, 250, 252, 0.5);
}

.section-tag {
    font-size: 11px;
    font-weight: 800;
    color: #E85B12;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #E85B12;
    margin-bottom: 1rem;
    line-height: 1.0;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.875rem;
        line-height: 1.05;
    }
}

.section-title-dark {
    color: #13293D;
}

.section-intro {
    color: rgba(19, 41, 61, 0.8);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .section-intro {
        font-size: 0.875rem;
        line-height: 1.625;
    }
}

/* SERVICES GRID */
.services-header {
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}



/* SERVICES CARD */
/* 1. Base commune pour toutes les cartes */
.service-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

/* 2. Effets appliqués EXCLUSIVEMENT aux cartes de la page d'accueil (qui ont un lien) */
.service-card:has(.card-footer-link) {
    cursor: pointer;
}

.service-card:has(.card-footer-link):hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* 3. Style du lien et zone de clic globale */
.card-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.25rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #e2e8f0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #E85B12;
    text-decoration: none; /* Supprime le soulignement */
    transition: color 150ms ease;
}

.card-footer-link:hover {
    text-decoration: none;
}

@media (min-width: 768px) {
    .card-footer-link {
        font-size: 0.75rem;
    }
}

/* Élargissement de la zone de clic à toute la carte d'accueil */
.card-footer-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* 4. Animation de la flèche au survol de la carte d'accueil */
.card-footer-link .arrow {
    display: inline-block;
    transition: transform 200ms ease;
}

.service-card:has(.card-footer-link):hover .card-footer-link .arrow {
    transform: translateX(5px);
}

.service-card:has(.card-footer-link):hover .card-footer-link {
    color: #d04f0d;
    text-decoration: none;
}






.service-icon-box {
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #E85B12;
}

.service-icon {
    width: 1rem;
    height: 1rem;
}

.service-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #13293D;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .service-title {
        font-size: 1rem;
    }
}

.service-subtitle {
    font-size: 0.9375rem;
    color: rgba(19, 41, 61, 0.7);
    margin-bottom: 0.75rem;
    font-style: italic;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .service-subtitle {
        font-size: 0.75rem;
    }
}

.service-list {
    font-size: 1rem;
    color: rgba(19, 41, 61, 0.8);
    font-weight: 500;
    line-height: 1.5;
    flex-grow: 1;
}

.service-list > * + * {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .service-list {
        font-size: 0.75rem;
    }
}

.card-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1.25rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #e2e8f0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #E85B12;
    transition: color 150ms ease;
}

@media (min-width: 768px) {
    .card-footer-link {
        font-size: 0.75rem;
    }
}

.card-footer-link:hover {
    color: #d04f0d;
    text-decoration: underline;
}

.badge-danger {
    font-size: 0.75rem;
    color: #dc2626;
    font-weight: 400;
    margin-left: 0.375rem;
}

/* EXPERTISE SECTION */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.expertise-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: inline-block;
    max-width: 42rem;
}

.expertise-text {
    font-size: 1rem;
    color: rgba(19, 41, 61, 0.8);
    font-weight: 500;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .expertise-text {
        font-size: 0.875rem;
        line-height: 1.625;
    }
}

.expertise-text + .expertise-text {
    margin-top: 1rem;
}

/* SECTEURS SECTION */
.secteurs-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .secteurs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.secteurs-image-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background-color: #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.secteurs-image-wrapper img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.secteurs-content > * + * {
    margin-top: 1.5rem;
}

.text-emerald {
    color: #047857;
    font-weight: 700;
}

.cities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city-tag {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #13293D;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
    display: inline-block;
}

.city-tag:hover {
    border-color: #cbd5e1;
    background-color: #e2e8f0;
    color: #E85B12;
}

@media (min-width: 768px) {
    .city-tag {
        font-size: 0.75rem;
    }
}

.info-box-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background-color: rgba(232, 91, 18, 0.1);
    border: 1px solid rgba(232, 91, 18, 0.2);
    color: #E85B12;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .info-box-orange {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

.info-box-orange svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

/* FAQ SECTION */
.faq-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #13293D;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.05;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 1.875rem;
    }
}

.faq-list > * + * {
    margin-top: 1rem;
}

.faq-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: 700;
    font-size: 1rem;
    color: #13293D;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 0.875rem;
    }
}

.faq-answer {
    font-size: 1rem;
    color: rgba(19, 41, 61, 0.8);
    font-weight: 500;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .faq-answer {
        font-size: 0.75rem;
        line-height: 1.625;
    }
}

/* MAILLAGE INTERNE */
.service-links-section {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    text-align: center;
}

.service-links-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #E85B12;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

@media (min-width: 768px) {
    .service-links-title {
        font-size: 1.875rem;
    }
}

.service-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.service-tag {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: #13293D;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
    display: inline-block;
}

.service-tag:hover {
    border-color: #E85B12;
    background-color: #fff7ed;
    color: #E85B12;
}

@media (min-width: 768px) {
    .service-tag {
        font-size: 0.75rem;
    }
}

/* SECTION CONTACT */
.contact-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

.contact-card {
    background: linear-gradient(to bottom right, #13293D, #0d1c2a);
    color: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .contact-card {
        padding: 3.5rem;
    }
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    color: #ffffff;
    line-height: 1.0;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 1.875rem;
        line-height: 1.05;
    }
}

.contact-subtitle {
    color: #cbd5e1;
    font-size: 1rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .contact-subtitle {
        font-size: 0.75rem;
    }
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

.btn-call {
    background-color: #E85B12;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    transition: background-color 150ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .btn-call {
        font-size: 0.75rem;
    }
}

.btn-call:hover {
    background-color: #d04f0d;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 0.375rem;
    transition: background-color 150ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .btn-whatsapp {
        font-size: 0.75rem;
    }
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
}

.contact-btn-icon {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

/* FOOTER */
.site-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(19, 41, 61, 0.7);
}

@media (min-width: 768px) {
    .site-footer {
        font-size: 0.75rem;
    }
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 2.25rem;
    max-width: 260px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .footer-logo img {
        height: 2.5rem;
    }
}

/* Tarifs */
.pricing-card {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    max-width: 38rem;
    margin: 2rem auto 0 auto;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

/* En-tête de carte et prix principal */
.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
}

.pricing-badge {
    display: inline-block;
    background-color: rgba(232, 91, 18, 0.1);
    color: var(--color-orange, #E85B12);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.pricing-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-amount {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--color-navy, #13293D);
    line-height: 1;
}

.pricing-period {
    font-size: 1.25rem;
    color: var(--color-navy, #13293D);
    font-weight: 700;
}

.pricing-detail {
    font-size: 0.9375rem;
    color: rgba(19, 41, 61, 0.75);
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.pricing-detail2 {
    font-size: 0.6375rem;
    color: rgba(19, 41, 61, 0.75);
    margin-top: 0.25rem;
}

/* Bloc d'explication au bas */
.pricing-footer {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1.75rem;
    padding: 1rem 1.25rem;
    background-color: var(--color-bg-alt, #f8fafc);
    border-radius: 0.75rem;
    text-align: left;
}

.pricing-footer-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange, #E85B12);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-footer-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pricing-footer-text {
    font-size: 0.875rem;
    color: var(--color-navy, #13293D);
    line-height: 1.45;
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.75rem 1.25rem;
    }
    .pricing-amount {
        font-size: 3rem;
    }
}


/* GOOGLE REVIEWS SECTION */
.google-reviews-section {
    padding-top: 1rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
    border: none;
    text-align: center;
}

.google-badge-card {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.875rem 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
    text-decoration: none;
    color: #13293D;
    max-width: 100%;
}

.google-badge-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

.google-icon-wrapper {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-svg {
    width: 100%;
    height: 100%;
}

.google-badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.google-badge-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
}

.google-rating-score {
    font-size: 1.125rem;
    font-weight: 800;
    color: #13293D;
}

.google-stars {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    color: #fbbf24;
}

.star-icon {
    width: 1rem;
    height: 1rem;
}

.google-badge-label {
    font-size: 0.8125rem;
    color: rgba(19, 41, 61, 0.75);
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.google-badge-label strong {
    color: #13293D;
    font-weight: 700;
}

.google-badge-arrow {
    color: #94a3b8;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: color 150ms ease, transform 150ms ease;
    display: flex;
    align-items: center;
}

.google-badge-arrow svg {
    width: 100%;
    height: 100%;
}

.google-badge-card:hover .google-badge-arrow {
    color: #E85B12;
    transform: translate(2px, -2px);
}

@media (max-width: 640px) {
    .google-badge-card {
        padding: 0.75rem 1rem;
        gap: 0.875rem;
    }
    
    .google-icon-wrapper {
        width: 1.875rem;
        height: 1.875rem;
    }
    
    .google-badge-label {
        font-size: 0.75rem;
    }
}


/* GOOGLE TOAST REVIEWS */
.google-toast-wrapper {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    transition: opacity 300ms ease, transform 300ms ease;
    opacity: 1;
    transform: translateY(0);
}

.google-toast-wrapper.hidden {
    opacity: 0;
    transform: translateY(1rem);
    pointer-events: none;
}

.google-toast-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #13293D;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Ajustement ombre carte pour le mode flottant */
.google-toast-wrapper .google-badge-card {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 640px) {
    .google-toast-wrapper {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    .google-toast-wrapper .google-badge-card {
        width: 100%;
        justify-content: center;
    }
}