/* --- VARIABLES & RESET --- */
:root {
    --primary-orange: #f57b55;     /* Orange corail */
    --primary-purple: #743a96;     /* Violet profond */
    --bg-light: #fdfdfd;
    --text-dark: #222;
    --text-grey: #666;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --dark-overlay: rgba(0,0,0,0.3);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #000;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-intro {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-grey);
    line-height: 1.8;
}

/* --- NAVBAR --- */
.navbar {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 100px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-phone { 
    position: relative; 
    font-size: 1.2rem; 
    cursor: pointer;
    color: var(--primary-orange);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-purple);
    border-radius: 3px;
    transition: all 0.3s;
}

/* --- OFFCANVAS MENU --- */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: white;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.offcanvas-header img {
    max-height: 40px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-purple);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-btn:hover {
    background: rgba(116, 58, 150, 0.1);
}

.offcanvas-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.offcanvas-links li {
    margin-bottom: 5px;
}

.offcanvas-link {
    display: block;
    padding: 15px 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.3s;
}

.offcanvas-link:hover {
    background: rgba(245, 123, 85, 0.1);
    color: var(--primary-orange);
    padding-left: 20px;
}

.offcanvas-contact {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-purple), rgba(116, 58, 150, 0.9));
    border-radius: 15px;
    color: white;
}

.offcanvas-contact h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
}

.offcanvas-contact p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas-contact i {
    color: var(--primary-orange);
}

/* --- HERO SECTION --- */
.hero {
    background-image: linear-gradient(rgba(116, 58, 150, 0.7), rgba(245, 123, 85, 0.6)), url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%; 
    height: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    position: relative;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.star {
    color: var(--primary-orange);
    font-size: 2rem;
    position: absolute;
}
.star-1 { top: -40px; left: 10%; transform: rotate(-15deg); }
.star-2 { bottom: -40px; right: 20%; transform: rotate(15deg); }

/* --- FEATURES BAR --- */
.features-bar {
    background: white;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.feature-item i { 
    font-size: 1.2rem;
    color: var(--primary-purple);
}

/* --- ACTIVITIES SECTION --- */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.activity-card {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    background-color: #ddd;
}

.activity-card:hover { transform: translateY(-5px); }

.activity-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    background: rgba(116, 58, 150, 0.8);
    padding: 8px 15px;
    border-radius: 8px;
}

/* --- STORY SECTION --- */
.story-row {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.story-row.reverse { flex-direction: row-reverse; }

.story-image {
    flex: 1;
    position: relative;
}

.story-image img { 
    border-radius: 20px; 
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    background-color: #ddd;
}

.bg-yellow::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    background-color: rgba(245, 123, 85, 0.15);
    z-index: -1;
    border-radius: 20px;
}

.story-text { flex: 1; }
.story-text .subtitle { text-align: left; }
.story-text h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.1; }

.text-block {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-star { 
    color: var(--primary-orange); 
    margin-top: 5px; 
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-top: 20px;
}

/* --- PRODUCTS / SERVICES --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    text-align: center;
}

.product-icon {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 15px;
    transition: 0.3s;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon i {
    font-size: 4rem;
    color: var(--primary-purple);
    transition: color 0.3s;
}

.product-icon:hover { 
    background: var(--primary-purple);
    transform: translateY(-5px);
}

.product-icon:hover i {
    color: white;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    color: var(--primary-purple);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- MESSAGE SECTION --- */
.message-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, rgba(116, 58, 150, 0.95) 100%);
    padding: 80px 0;
    position: relative;
}

.message-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.message-content h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.message-content p {
    font-size: 1.3rem;
    color: var(--primary-orange);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- VOYAGE SECTION --- */
.voyage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.voyage-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.voyage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(116, 58, 150, 0.15);
}

.voyage-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.voyage-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.voyage-card p {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- TESTIMONIALS / ENGAGEMENTS --- */
.testimonials {
    background: linear-gradient(135deg, var(--primary-purple) 0%, rgba(116, 58, 150, 0.9) 100%);
    padding: 80px 0 120px;
    color: white;
    position: relative;
}

.testimonials-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.testi-left { flex: 1; }
.subtitle-white {
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    opacity: 0.9; 
    display: block; 
    margin-bottom: 10px;
    color: var(--primary-orange);
    font-weight: 600;
}

.testi-left h2 { 
    color: white; 
    margin-bottom: 20px; 
    font-size: 2.5rem; 
    line-height: 1.2; 
}
.testi-left p { margin-bottom: 30px; opacity: 0.95; }

.btn-salmon {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: inline-block;
    transition: all 0.3s;
}

.btn-salmon:hover {
    background-color: #ff8f6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.testi-right-card {
    flex: 1;
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 15px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    line-height: 0;
    margin-bottom: 20px;
    font-family: serif;
}

.engagement-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.engagement-list {
    list-style: none;
    padding: 0;
}

.engagement-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.engagement-list i {
    color: var(--primary-orange);
    margin-top: 3px;
    font-size: 1.1rem;
}

/* --- TRUST / POURQUOI --- */
.trust-content {
    text-align: center;
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-purple);
}

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

.why-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(116, 58, 150, 0.15);
}

.why-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--primary-purple);
    color: white;
    padding-top: 60px;
}

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

.footer-col h4 { 
    color: white; 
    font-size: 1rem; 
    margin-bottom: 20px; 
    font-family: var(--font-body); 
    font-weight: 700; 
}

.footer-col p { 
    font-size: 0.85rem; 
    margin-bottom: 10px; 
    opacity: 0.9; 
}

.footer-col a.underline { text-decoration: underline; }

.big-phone { 
    font-size: 1rem; 
    font-weight: 600; 
    margin-top: 5px; 
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-orange);
}

.social-icons a {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    width: 35px; 
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 5px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding: 20px 0;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* ==========================================================
   RESPONSIVE — Refonte complète
   ========================================================== */

/* ---- Correction globale débordement horizontal ---- */
html, body {
    overflow-x: hidden;
    width: 100%;
}

*, *::before, *::after {
    max-width: 100%;
}

/* ---- Tablette large (≤ 1024px) ---- */
@media (max-width: 1024px) {

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

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

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

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

    .hero h1 { font-size: 2.8rem; }
}

/* ---- Tablette (≤ 900px) ---- */
@media (max-width: 900px) {

    /* Navbar */
    .nav-links  { display: none; }
    .burger-menu { display: flex; }

    /* Hero */
    .hero { height: auto; padding: 60px 15px; }
    .hero h1 { font-size: 2rem; }
    .hero-content { padding: 0 10px; }

    /* Features bar */
    .features-bar { padding: 18px 0; }
    .features-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }
    .feature-item { font-size: 0.8rem; }

    /* Section padding */
    .section-padding { padding: 45px 0; }

    /* Titres sections */
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 1.8rem; }

    /* Activities */
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* Story */
    .story-row,
    .story-row.reverse {
        flex-direction: column;
        gap: 25px;
    }
    .story-text h2 { font-size: 1.8rem; }
    .story-image img { min-height: 200px; }

    /* Products & services */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .product-icon  { padding: 25px; min-height: 130px; }
    .product-icon i { font-size: 2.8rem; }

    /* Voyage */
    .voyage-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    /* Message section */
    .message-section { padding: 50px 0; }
    .message-content h2 { font-size: 1.8rem; }
    .message-content p  { font-size: 1rem; }

    /* Testimonials / Engagements */
    .testimonials { padding: 50px 0 60px; }
    .testimonials-content {
        flex-direction: column;
        gap: 30px;
    }
    .testi-left h2 { font-size: 1.8rem; }
    .testi-right-card { padding: 25px 20px; }

    /* Why / Pourquoi */
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .trust-content h3 { font-size: 1.6rem; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    /* Formulaire */
    .contact-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .form-header h2 { font-size: 1.8rem; }
    .form-info {
        grid-template-columns: 1fr;
    }
}

/* ---- Mobile (≤ 600px) ---- */
@media (max-width: 600px) {

    /* Conteneur */
    .container { padding: 0 15px; }

    /* Navbar logo */
    .logo img { max-height: 65px; }

    /* Hero */
    .hero { padding: 50px 10px; height: auto; }
    .hero h1 { font-size: 1.55rem; line-height: 1.25; }
    .star { display: none; }

    /* Section header */
    .section-header h2 { font-size: 1.5rem; }
    .section-intro      { font-size: 0.88rem; }
    .section-padding    { padding: 35px 0; }

    /* Features bar */
    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        text-align: center;
    }
    .feature-item {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-size: 0.75rem;
    }
    .feature-item i { font-size: 1.1rem; }

    /* Activities */
    .activities-grid { grid-template-columns: 1fr; gap: 12px; }
    .activity-card   { height: 170px; }

    /* Story */
    .story-text h2      { font-size: 1.5rem; }
    .highlight-text     { font-size: 0.95rem; }
    .story-image img    { min-height: 180px; border-radius: 12px; }

    /* Products */
    .products-grid  { grid-template-columns: 1fr; gap: 18px; }
    .product-icon   { padding: 22px; min-height: 110px; }
    .product-icon i { font-size: 2.4rem; }
    .product-card h3 { font-size: 1.05rem; }

    /* Message section */
    .message-section  { padding: 40px 15px; }
    .message-content h2 { font-size: 1.45rem; }
    .message-content p  { font-size: 0.9rem; }

    /* Voyage */
    .voyage-grid  { grid-template-columns: 1fr; gap: 14px; }
    .voyage-card  { padding: 22px 18px; }
    .voyage-card i { font-size: 2rem; margin-bottom: 12px; }

    /* Testimonials */
    .testimonials { padding: 40px 0 50px; }
    .testi-left h2 { font-size: 1.5rem; }
    .testi-right-card { padding: 22px 16px; }
    .engagement-list li { font-size: 0.88rem; gap: 10px; }

    /* Why */
    .why-grid       { grid-template-columns: 1fr; gap: 14px; }
    .why-item       { padding: 22px 15px; }
    .why-item i     { font-size: 2rem; margin-bottom: 12px; }
    .trust-content h3 { font-size: 1.4rem; margin-bottom: 25px; }

    /* Footer */
    .footer-grid    { grid-template-columns: 1fr; gap: 20px; }
    .main-footer    { padding-top: 40px; }

    /* ---- FORMULAIRE — correction débordement ---- */
    .contact-form-section { padding: 40px 0; }

    .contact-form-container {
        width: 100%;
        margin: 0;
        padding: 25px 15px;
        border-radius: 12px;
        box-shadow: none;
    }

    .form-header h2 { font-size: 1.45rem; }
    .form-header p  { font-size: 0.88rem; }

    .contact-form { gap: 14px; }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        max-width: 100%;
        padding: 12px 14px;
        font-size: 0.9rem;
        box-sizing: border-box;
    }

    .form-group textarea { min-height: 110px; }

    .submit-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .form-info { margin-top: 25px; padding-top: 25px; }
    .info-item  { gap: 12px; }
    .info-item i { font-size: 1.2rem; }
    .info-item div p { font-size: 0.85rem; }

    /* Popup */
    .popup-content { max-width: 95%; }
    .popup-close {
        top: -10px; right: -10px;
        width: 32px; height: 32px; font-size: 18px;
    }

    /* Offcanvas */
    .offcanvas-menu { width: 280px; }

    /* Pages internes */
    .page-hero h1 { font-size: 1.5rem !important; }
    .page-hero p  { font-size: 0.85rem !important; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .offre-speciale h2 { font-size: 1.35rem; }
    .section-cta h2    { font-size: 1.4rem; }
}

/* ---- Très petits écrans (≤ 380px) ---- */
@media (max-width: 380px) {
    .hero h1 { font-size: 1.35rem; }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.85rem;
        padding: 11px 12px;
    }

    .submit-btn { font-size: 0.88rem; }

    .contact-form-container { padding: 20px 12px; }

    .section-header h2 { font-size: 1.35rem; }
    .message-content h2 { font-size: 1.25rem; }
    .testi-left h2      { font-size: 1.3rem; }
    .trust-content h3   { font-size: 1.2rem; }

    .btn-salmon {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* --- POPUP IMAGE --- */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: slideIn 0.4s ease;
}

.popup-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.popup-close:hover {
    background-color: #ff5252;
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- FORMULAIRE DE CONTACT --- */
.contact-form-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: #667eea;
}

.info-item div h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1rem;
}

.info-item div p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* --- Tablette intermédiaire pour le formulaire (768px) --- */
@media (max-width: 768px) {
    .contact-form-container { padding: 28px 18px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   STYLES COMPLÉMENTAIRES — Pages internes
   (Qui sommes-nous, Immobilier, Voyage, Contact)
   ============================================================ */

/* --- Lien actif dans la navbar --- */
.nav-links a.active {
    color: var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 2px;
}

.offcanvas-link.active {
    background: rgba(245, 123, 85, 0.12);
    color: var(--primary-orange);
}

/* --- Hero bannière pages internes --- */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* --- Grille coordonnées page contact --- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    text-align: center;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(116, 58, 150, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(116, 58, 150, 0.15);
}

.contact-info-card i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.contact-info-card h4 {
    color: var(--primary-purple);
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-info-card p,
.contact-info-card a {
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.6;
}

.contact-info-card a:hover {
    color: var(--primary-orange);
}

/* --- Section CTA claire --- */
.section-cta {
    background: #f9f5ff;
    padding: 60px 0;
    text-align: center;
}

.section-cta h2 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-size: 2rem;
}

.section-cta p {
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Offre spéciale (bloc coloré voyage) --- */
.offre-speciale {
    background: linear-gradient(135deg, #f57b55 0%, #e74c3c 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.offre-speciale h2 {
    margin: 10px 0 15px;
    font-size: 2rem;
    color: #fff;
}

.offre-speciale p {
    max-width: 560px;
    margin: 0 auto 25px;
    opacity: .9;
}

.btn-white {
    background: #fff;
    color: var(--primary-orange);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-white:hover {
    background: var(--primary-purple);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Valeurs (section message interne) --- */
.section-valeurs {
    background: linear-gradient(135deg, var(--primary-purple) 0%, rgba(116, 58, 150, 0.95) 100%);
    padding: 80px 0;
}

.section-valeurs .message-content h2,
.section-valeurs .message-content p {
    color: #fff;
}

/* Les règles responsive des pages internes sont dans le bloc principal ci-dessus */
