/* ============================================================
   SHALOM SERVICES - STYLE GLOBAL
   Palette : Vert (#2E7D32) | Blanc (#FFFFFF) | Gris clair (#F5F5F5)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
html, body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1A1A1A;
    background-color: #FFFFFF;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ---------- BOUTONS GÉNÉRIQUES ---------- */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: #2E7D32;
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #2E7D32;
    border: 2px solid #2E7D32;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2E7D32;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-whatsapp img {
    width: 20px;
    height: 20px;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-large:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* ============================================================
   NAVBAR - VERSION FINALE PROFESSIONNELLE
   ============================================================ */

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
}

/* ---------- Logo ---------- */
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2E7D32;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* ---------- Menu desktop ---------- */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-menu ul li a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2E7D32;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

.nav-menu ul li a.active {
    color: #2E7D32;
}

/* ---------- Actions ---------- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ---------- Bouton WhatsApp ---------- */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse-whatsapp 2s infinite;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: none;
}

.btn-whatsapp:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

.whatsapp-text {
    display: inline;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

/* ---------- Menu Hamburger ---------- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1A1A1A;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animation hamburger → croix */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Overlay ---------- */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 80px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.hero-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-logo {
    height: 50px;
    width: auto;
}

.hero-badge h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2E7D32;
}

.hero-sub {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1A1A1A;
    margin: 12px 0 20px;
}

.hero-desc {
    font-size: 1.15rem;
    color: #555;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================================
   POURQUOI NOUS CHOISIR
   ============================================================ */
.why-us {
    padding: 80px 0;
    background: #F9FAFB;
}

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

.why-card {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.why-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================================
   PRESTATIONS
   ============================================================ */
.services-preview {
    padding: 80px 0;
}

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

.service-card {
    background: #F5F5F5;
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    color: #1A1A1A;
    transition: all 0.4s ease;
    cursor: default;
    border: 1px solid transparent;
}

.service-card:hover {
    background: #2E7D32;
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25);
}

.services-cta {
    text-align: center;
}

/* ============================================================
   AVIS CLIENTS
   ============================================================ */
.testimonials {
    padding: 80px 0;
    background: #F9FAFB;
}

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

.testimonial-card {
    background: #FFFFFF;
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.stars {
    color: #F5B342;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-style: italic;
    color: #333;
    margin-bottom: 16px;
}

.client-name {
    font-weight: 700;
    color: #2E7D32;
}

/* ============================================================
   PAGE HEADER (INTERNES)
   ============================================================ */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.page-header p {
    font-size: 1.15rem;
    color: #666;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.about-text p {
    color: #444;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-image img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Mission - Vision - Valeurs */
.mission-vision {
    padding: 60px 0;
    background: #F9FAFB;
}

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

.mv-card {
    background: #FFFFFF;
    padding: 32px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.mv-card h3 {
    font-size: 1.3rem;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.mv-card p {
    color: #555;
}

/* Historique */
.history {
    padding: 60px 0;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #EEEEEE;
}

.timeline-item:last-child {
    border-bottom: none;
}

.year {
    font-weight: 800;
    color: #2E7D32;
    font-size: 1.2rem;
    min-width: 80px;
}

.timeline-item p {
    color: #444;
}

/* Trust */
.trust {
    padding: 60px 0;
    background: #F9FAFB;
}

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

.trust-item {
    background: #FFFFFF;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 500;
    color: #1A1A1A;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list {
    padding: 60px 0;
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-item {
    background: #F5F5F5;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #2E7D32;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Tableau des tarifs */
.pricing-table {
    padding: 60px 0;
    background: #F9FAFB;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
}

thead {
    background: #2E7D32;
    color: #FFFFFF;
}

th, td {
    padding: 14px 24px;
    text-align: left;
}

th {
    font-weight: 600;
    font-size: 1rem;
}

td {
    border-bottom: 1px solid #EEEEEE;
    color: #333;
}

tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background: #F5F8F5;
}

.pricing-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info {
    padding: 60px 0;
}

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

.contact-card {
    background: #FFFFFF;
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.contact-card h2 {
    font-size: 1.4rem;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.contact-card p {
    color: #444;
    margin-bottom: 4px;
}

.contact-actions {
    padding: 40px 0 60px;
    background: #F9FAFB;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 44px;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.action-btn span {
    font-size: 1.8rem;
}

.whatsapp-btn {
    background: #25D366;
    color: #FFFFFF;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
}

.email-btn {
    background: #1A1A1A;
    color: #FFFFFF;
}

.email-btn:hover {
    background: #333;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.email-hint {
    text-align: center;
    margin-top: 24px;
    color: #888;
    font-size: 0.95rem;
}

.email-hint strong {
    color: #1A1A1A;
}

.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #1A1A1A;
    color: #CCCCCC;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.footer h4 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav ul li a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #FFFFFF;
}

.footer-contact p {
    margin-bottom: 6px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #2E7D32;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2E7D32;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1B5E20;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablettes */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

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

/* ============================================================
   MOBILE - MENU AVEC TRANSFORM + OVERLAY
   ============================================================ */
@media (max-width: 768px) {
    /* ---------- Hamburger visible ---------- */
    .menu-toggle {
        display: flex;
    }

    /* ---------- Menu mobile ---------- */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 80vw;
        height: 100dvh;
        background: #FFFFFF;
        padding: 90px 32px 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
    }

    .nav-menu ul li a {
        font-size: 1.2rem;
        display: block;
        padding: 8px 0;
    }

    /* ---------- Hero ---------- */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image img {
        height: 350px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badge {
        justify-content: center;
    }

    /* ---------- Sections ---------- */
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

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

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

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .table-responsive table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 10px 14px;
    }

    /* ---------- Version mobile du bouton WhatsApp ---------- */
    .btn-whatsapp {
        padding: 10px 12px;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        justify-content: center;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
        margin: 0;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-logo img {
        height: 38px;
    }
}

/* ---------- Très petits écrans ---------- */
@media (max-width: 480px) {
    .nav-logo span {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 16px 12px;
        font-size: 0.85rem;
    }

    .services-grid-full {
        grid-template-columns: 1fr 1fr;
    }

    .service-item {
        font-size: 0.85rem;
        padding: 12px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-whatsapp-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .btn-whatsapp {
        width: 40px;
        height: 40px;
        padding: 8px 10px;
    }

    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }

    .logo-text {
        font-size: 0.85rem;
    }

    .nav-logo img {
        height: 32px;
    }

    .nav-menu {
        width: 280px;
        padding: 80px 24px 40px;
    }
}

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

/* ============================================================
   TRANSITION PAGE
   ============================================================ */
body {
    opacity: 1;
    transform: translateY(0);
    transition: .45s ease;
}

body.fade-out {
    opacity: 0;
    transform: translateY(15px);
}