@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Roboto:wght@300;400;500;700&family=Roboto+Slab:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --primary-red: #e31e24;
    --dark-red: #c41217;
    --black: #111111;
    --white: #ffffff;
    --light-grey: #f8f9fa;
    --grey: #69727d;
    --border-color: #e2e2e2;
    --transition: all 0.3s ease;

    --font-main: 'Roboto',
        sans-serif;
    --font-heading: 'Inter',
        sans-serif;
    --font-accent: 'Roboto Slab',
        serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-red);
    transform: scale(0.98);
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

/* Top Bar */
.top-bar {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info i {
    color: var(--primary-red);
}

/* Navigation */
header {
    background: var(--black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    text-decoration: none;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary-red);
}

.header-call-mobile {
    display: none;
}

.header-devis-btn .devis-short {
    display: none;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding-top: 50px;
    color: var(--white);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    animation: kenburns 10s infinite alternate;
}

@keyframes kenburns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.text-red {
    color: var(--primary-red);
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-subdesc {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #e0e0e0;
    max-width: 600px;
}

.hero-small-title {
    color: var(--primary-red);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    line-height: 0.9;
    font-weight: 800;
}

.hero-branding {
    flex: 1.1;
    margin-top: -60px;
    margin-bottom: 0;
    max-width: 700px;
    animation: fadeInScale 1s ease-out forwards;
    opacity: 0;
}

.hero-branding img {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-branding img:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Google Reviews Section */
.reviews {
    background-color: #f8f9fa;
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.google-reviews-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.g-logo {
    width: 32px;
    height: 32px;
}

.google-rating {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3c4043;
}

.google-rating span {
    color: #fbbc05;
}

.google-review-card {
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 24px;
    transition: box-shadow 0.2s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.google-review-card:hover {
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.review-user-info {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 4px;
    /* Reduced gap as date follows name */
}

.google-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.user-details .name {
    font-weight: 600;
    color: #202124;
    /* Darker, like reference */
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-badge {
    color: #1a73e8;
    /* Google blue */
    font-size: 14px;
}

.review-date {
    font-size: 12px;
    color: #70757a;
    margin-left: 56px;
    /* Offset to align under name, after avatar */
    margin-top: -8px;
    margin-bottom: 12px;
}

.google-stars {
    color: #fbbc05;
    font-size: 14px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 15px;
    color: #3c4043;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Pushes footer to bottom */
}

.google-review-footer {
    border-top: 1px solid #f1f3f4;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.footer-source {
    font-size: 12px;
    font-weight: 600;
    color: #5f6368;
}

.footer-logo {
    width: 16px;
    height: 16px;
}

.google-btn {
    background-color: #fff;
    border: 1px solid #dadce0;
    color: #1a73e8;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    transition: background-color 0.2s;
}

.google-btn:hover {
    background-color: #f8f9fa;
}

/* Partners Bar */
.partners-bar {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partners-logos img {
    height: 40px;
    filter: none;
    transition: var(--transition);
}

.partners-logos img:hover {
    filter: grayscale(0);
}

/* About Section */
.about {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--black);
}

.about-content h2 span {
    color: var(--primary-red);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--grey);
}

.about-image img {
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--primary-red);
}

/* Services Section */
.services {
    background-color: var(--light-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--grey);
}

/* Consultation Form Section */
.consultation {
    background-color: var(--black);
    color: var(--white);
}

.consultation h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.consultation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid var(--grey);
    background: #222;
    color: var(--white);
}

.form-group.full-width {
    grid-column: span 2;
}

.btn-cta-large {
    font-size: 1.4rem !important;
    padding: 20px 40px !important;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    width: auto;
    min-width: 300px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.btn-cta-large:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}


/* Service Area Section */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.area-grid li {
    background: var(--light-grey);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.area-grid li:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.05);
}

/* Zone Reassurance Block */
.zone-reassurance {
    margin-top: 50px;
    padding: 35px 40px;
    background: var(--light-grey);
    border-radius: 12px;
    border-left: 5px solid var(--primary-red);
    text-align: center;
    position: relative;
}

.zone-reassurance-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.zone-reassurance h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--black);
    text-transform: none;
}

.zone-reassurance p {
    color: var(--grey);
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.zone-reassurance .btn {
    font-size: 0.95rem;
    padding: 12px 28px;
}

/* Reviews Section */
.reviews {
    background: #fdfdfd;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 85px;
    height: 85px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-phone 2s infinite;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    background-color: var(--dark-red);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(227, 30, 36, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(227, 30, 36, 0);
    }
}

/* Footer Styles */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links li {
    margin-bottom: 15px;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
    color: #888;
}

/* ===== Avant/Après ===== */
.aa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 30px;
}

.aa-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.aa-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.aa-side {
    position: relative;
}

.aa-side img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: none !important;
}

.aa-label {
    position: absolute;
    bottom: 10px;
    padding: 4px 12px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    color: #fff;
}

.aa-label.avant {
    left: 10px;
    background: #111;
}

.aa-label.apres {
    right: 10px;
    background: var(--primary-red);
}

/* ==========================================================
   MOBILE — UN SEUL BLOC, TOUT ICI
   ========================================================== */
@media (max-width: 768px) {

    /* --- Top bar & Nav --- */
    .top-bar {
        display: none !important;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        height: 70px;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .logo {
        align-items: flex-start;
        text-align: left;
        margin: 0;
    }

    .logo .logo-main {
        font-size: 1.6rem !important;
    }

    .logo .logo-sub {
        font-size: 0.85rem !important;
    }

    .logo img {
        height: 52px !important;
        width: auto !important;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    nav {
        display: none !important;
    }

    .nav-menu {
        display: none !important;
    }

    .header-devis-btn {
        background: linear-gradient(135deg, #e31e24 0%, #c41217 100%) !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 1px !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow:
            0 4px 15px rgba(196, 18, 23, 0.4),
            inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
        height: auto !important;
        width: auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative;
        overflow: hidden;
    }

    .header-devis-btn::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -60%;
        width: 20%;
        height: 200%;
        background: rgba(255, 255, 255, 0.4);
        transform: rotate(30deg);
        transition: none;
        animation: shine-sweep 4s infinite ease-in-out;
    }

    @keyframes shine-sweep {
        0% { left: -60%; }
        20% { left: 140%; }
        100% { left: 140%; }
    }

    .header-devis-btn:active {
        transform: scale(0.96) translateY(1px);
        box-shadow: 0 2px 8px rgba(196, 18, 23, 0.3) !important;
    }

    .header-devis-btn .devis-text {
        display: none;
    }

    .header-devis-btn .devis-short {
        display: inline;
    }

    .header-devis-btn i {
        display: inline-block !important;
        font-size: 12px;
        opacity: 0.9;
    }

    /* --- HERO MOBILE (CSS Grid) --- */

    /* Slides : aucun mouvement */
    .hero-slide,
    .hero-slide.active {
        animation: none !important;
        transform: none !important;
        background-size: cover;
        background-position: center;
    }

    .hero {
        position: relative;
        height: calc(100vh - 70px);  /* fallback, JS override en px */
        padding-top: 40px;
        padding-bottom: 0;
        box-sizing: border-box;
        overflow: hidden;
        align-items: stretch !important;
        z-index: 1;
    }

    /* 3. Container = flex column, prend toute la hauteur */
    .hero .container {
        flex: 1;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* 4. hero-content = CSS GRID, pas flex
       Rangée 1 (auto) = texte, taille naturelle
       Rangée 2 (1fr)  = image, remplit le reste
       Gap = 14px entre les deux */
    .hero-content {
        display: grid !important;
        grid-template-rows: auto 1fr;
        grid-template-columns: 1fr;
        gap: 23px;
        height: 100%;
        flex: 1;
        padding: 0;
        max-width: none;
        width: 100%;
        /* Reset des propriétés flex du base */
        align-items: stretch;
        justify-content: stretch;
    }

    /* 5. Texte */
    .hero-text {
        display: flex;
        flex-direction: column;
        gap: 18px;
        max-width: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin: 0;
        line-height: 1.1;
    }

    .hero-desc {
        font-size: 1.05rem;
        margin: 0;
        line-height: 1.4;
    }

    .hero-subdesc {
        display: none;
    }

    .hero-content .btn {
        display: none;
    }

    .hero-branding {
        position: relative;
        margin: 0 -20px;
        margin-bottom: clamp(60px, 15vh, 130px);
        padding: 0;
        width: calc(100% + 40px);
        max-width: none;
        min-height: 40vh;
        overflow: hidden;
        flex: unset;
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .hero-branding::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 0;
        right: 0;
        bottom: 0;
        border: 3px solid var(--primary-red);
        z-index: 2;
        pointer-events: none;
    }

    .hero-branding img {
        position: absolute;
        top: 3px;
        left: 0;
        width: 100%;
        height: calc(100% - 6px);
        object-fit: cover;
        object-position: center 65%;
        display: block;
        max-height: none;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .hero-branding img:hover {
        transform: none;
    }

    #services {
        position: relative;
        z-index: 2;
        margin-top: 0;
    }

    /* --- Global mobile --- */
    .section-padding {
        padding: 50px 0;
    }

    h2 {
        font-size: 1.8rem;
    }

    /* About */
    .about {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-image img {
        box-shadow: 10px 10px 0 var(--primary-red);
        max-width: 90%;
    }

    /* Services */
    .service-card {
        padding: 30px 20px;
    }

    /* Consultation */
    .consultation-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-group input,
    .form-group textarea {
        font-size: 17px;
    }

    /* Partners */
    .partners-logos {
        gap: 20px;
    }

    .partners-logos img {
        height: 30px;
    }

    /* Avant/Après */
    .aa-grid {
        grid-template-columns: 1fr;
    }

    .aa-pair {
        grid-template-columns: 1fr;
    }

    .aa-side img {
        height: 220px;
    }

    /* Zone reassurance */
    .zone-reassurance {
        padding: 25px 20px;
        margin-top: 35px;
    }

    .zone-reassurance h3 {
        font-size: 1.1rem;
    }

    /* Floating call button */
    .floating-call-btn {
        bottom: 25px;
        right: 25px;
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

}

/* Modal */
.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000 !important;
    padding: 20px;
}

.modal-overlay.active {
    display: flex !important;
}

.modal-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)) !important;
    backdrop-filter: blur(40px) !important;
    -webkit-backdrop-filter: blur(40px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 50px 30px !important;
    border-radius: 40px !important;
    text-align: center !important;
    max-width: 480px !important;
    width: 100% !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7) !important;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.modal-overlay.active .modal-card {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.modal-icon {
    font-size: 90px !important;
    color: #4cd137 !important;
    margin-bottom: 30px !important;
    filter: drop-shadow(0 0 20px rgba(76, 209, 55, 0.4)) !important;
}

.modal-card h2 {
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
    letter-spacing: -1px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
}

.modal-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 12px !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
}

.modal-card button {
    margin-top: 35px !important;
    min-width: 180px !important;
    font-size: 1.1rem !important;
    padding: 18px 40px !important;
}