/* ----------------------------------------------
    RESET & BASE
---------------------------------------------- */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family:"Poppins", system-ui, sans-serif;
    background:#f7f2f8;
    color:#2f2434;
    line-height:1.6;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
.container { width:90%; max-width:1200px; margin:0 auto; }

/* ----------------------------------------------
    COOKIE BANNER
---------------------------------------------- */
.cookie-banner {
    position:fixed;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    background:#24182a;
    color:#fff;
    padding:10px 18px;
    border-radius:999px;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:.85rem;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.28);
}
.cookie-banner a {
    color:#d8b4f8;
    text-decoration:underline;
}
.cookie-banner button {
    border:none;
    background:#6f4b8b;
    color:#fff;
    border-radius:999px;
    padding:6px 12px;
    font-size:.8rem;
    cursor:pointer;
}
.cookie-banner button:hover {
    background:#5b3c73;
}

/* ----------------------------------------------
    NAVBAR
---------------------------------------------- */
.navbar {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(33,22,39,.88);
    backdrop-filter:blur(10px);
    padding:10px 0;
    z-index:999;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-container {
    width:90%;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.nav-logo-text {
    color:#fff;
    font-size:1.2rem;
    font-weight:600;
    letter-spacing:.4px;
}

/* LINKS */
.nav-links {
    list-style:none;
    display:flex;
    align-items:center;
    gap:18px;
}
.nav-links a {
    color:#f7f1fb;
    font-size:.95rem;
    font-weight:500;
    position:relative;
    padding-bottom:3px;
}
.nav-links a::after {
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#caa6ff;
    transition:width .25s ease-out;
}
.nav-links a:hover::after {
    width:100%;
}

/* CTA button */
.nav-cta {
    background:linear-gradient(135deg,#7a4ba0,#5c6bc0);
    padding:8px 16px;
    border-radius:999px;
    font-weight:600;
    color:#fff !important;
    box-shadow:0 8px 20px rgba(92,107,192,.25);
}
.nav-cta::after { display:none; }

/* SMS CTA */
.nav-phone {
    border:1px solid rgba(202,166,255,.55);
    border-radius:999px;
    padding:7px 14px;
    display:flex;
    align-items:center;
    gap:6px;
    font-size:.9rem;
}

/* BURGER */
.nav-toggle {
    display:none;
    flex-direction:column;
    gap:4px;
    background:none;
    border:none;
    cursor:pointer;
}
.nav-toggle span {
    width:22px;
    height:2px;
    background:white;
    border-radius:999px;
    transition:.25s;
}

/* ----------------------------------------------
    HERO
---------------------------------------------- */
.hero {
    height:100vh;
    background:url('/assets/img/hero.jpg') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-top:70px;
}
.hero .overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(28,16,36,.78), rgba(62,40,84,.52));
}
.hero-inner {
    position:relative;
    text-align:center;
    color:white;
    padding:20px;
    max-width:760px;
}
.hero-inner h1 {
    font-size:3.1rem;
    font-weight:600;
    margin-bottom:12px;
    text-shadow:0 4px 18px rgba(0,0,0,.25);
}
.hero-inner p {
    font-size:1.15rem;
    opacity:.96;
    margin-bottom:18px;
}
.btn-hero {
    display:inline-block;
    background:linear-gradient(135deg,#7a4ba0,#5c6bc0);
    color:white;
    padding:12px 28px;
    border-radius:999px;
    font-weight:600;
    transition:.25s;
    box-shadow:0 10px 25px rgba(92,107,192,.25);
}
.btn-hero:hover {
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(92,107,192,.32);
}

/* ----------------------------------------------
    SECTIONS
---------------------------------------------- */
.section {
    padding:90px 0;
}
.section-title {
    font-size:2.2rem;
    text-align:center;
    margin-bottom:50px;
    color:#5a3775;
}

/* ----------------------------------------------
    ABOUT
---------------------------------------------- */
.about {
    background:linear-gradient(135deg,#4b2f5e,#6f4b8b);
    color:white;
    text-align:center;
}
.about .section-title {
    color:white;
}
.about p {
    max-width:800px;
    margin:0 auto 20px auto;
    font-size:1.05rem;
}

/* ----------------------------------------------
    ZONE
---------------------------------------------- */
.zone {
    background:#f7f2f8;
}
.zone p {
    max-width:860px;
    margin:0 auto 18px auto;
    text-align:center;
}
.zone .seo {
    color:#5f4b68;
}

/* ----------------------------------------------
    SERVICES
---------------------------------------------- */
.services {
    background:#fbf8fc;
}
.cards {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}
.card {
    background:white;
    border-radius:18px;
    padding:24px;
    box-shadow:0 12px 30px rgba(70,40,90,.08);
    transition:.25s;
    border:1px solid rgba(111,75,139,.08);
}
.card h3 {
    margin-bottom:10px;
    color:#5a3775;
}
.card p {
    font-size:.95rem;
}
.card:hover {
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(70,40,90,.14);
}

/* ----------------------------------------------
    GALLERY
---------------------------------------------- */
.gallery {
    background:#f3edf5;
}
.gallery-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
}
.gallery-item {
    aspect-ratio:4/3;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(40,20,50,.14);
    transition:.25s;
    background:#fff;
}
.gallery-item img {
    width:100%;
    height:100%;
    object-fit:cover;
}
.gallery-item:hover {
    transform:translateY(-4px);
    box-shadow:0 16px 40px rgba(40,20,50,.2);
}

/* ----------------------------------------------
    CONTACT
---------------------------------------------- */
.contact {
    background:#fcfbfd;
}
.contact-form {
    max-width:700px;
    margin:0 auto;
    background:white;
    padding:28px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(70,40,90,.1);
    border:1px solid rgba(111,75,139,.08);
}
.field-row {
    display:flex;
    gap:15px;
    margin-bottom:14px;
}
.field-row input {
    flex:1;
}
.contact-form input,
.contact-form textarea {
    width:100%;
    padding:13px;
    border-radius:12px;
    border:1px solid #dccfe4;
    font-size:.95rem;
    background:#fff;
    color:#2f2434;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline:none;
    border-color:#8a63a8;
    box-shadow:0 0 0 3px rgba(138,99,168,.12);
}
textarea {
    min-height:150px;
    resize:vertical;
}
.btn-submit {
    margin-top:8px;
    background:linear-gradient(135deg,#5a3775,#7a4ba0);
    color:white;
    padding:12px 26px;
    border:none;
    border-radius:999px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}
.btn-submit:hover {
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(90,55,117,.22);
}

/* ----------------------------------------------
    FOOTER
---------------------------------------------- */
footer {
    background:#1d1422;
    color:#eee;
    padding:60px 0 20px 0;
}
.footer-top {
    width:90%;
    max-width:1300px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    gap:40px;
}
.footer-col {
    flex:1;
}
.footer-col h4 {
    font-size:1.1rem;
    margin-bottom:12px;
    color:#f0dfff;
}
.footer-col p {
    margin-bottom:8px;
    opacity:.92;
    line-height:1.5;
}
.footer-col ul {
    list-style:none;
}
.footer-col ul li {
    margin-bottom:8px;
}
.footer-col ul li a {
    color:#d9cde2;
}
.footer-col ul li a:hover {
    color:white;
}
.footer-bottom {
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:30px;
    padding-top:15px;
    text-align:center;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    font-size:.9rem;
    opacity:.9;
}
.footer-bottom a {
    color:#d8b4f8;
}
.footer-bottom a:hover {
    color:#fff;
}
.footer-sep {
    opacity:.5;
}

/* ----------------------------------------------
    HERO TEXT DETAILS
---------------------------------------------- */
.hero-subtitle {
    font-size:1.25rem;
    font-weight:400;
    opacity:.95;
    margin-bottom:15px;
}
.hero-zone {
    font-size:1.1rem;
    margin-bottom:12px;
    opacity:.9;
}
.hero-assurance {
    font-size:1rem;
    opacity:.88;
    margin-bottom:25px;
}

/* ----------------------------------------------
    LEGAL
---------------------------------------------- */
.legal {
    padding-top:140px;
    padding-bottom:80px;
}
.legal h1 {
    font-size:2.3rem;
    margin-bottom:30px;
    color:#5a3775;
}
.legal h2,
.legal h3,
.legal h4 {
    margin-top:28px;
    margin-bottom:12px;
    color:#4b2f5e;
}
.legal p {
    margin-bottom:14px;
}

/* ----------------------------------------------
    RESPONSIVE
---------------------------------------------- */
@media(max-width:900px){
    .footer-top {
        flex-direction:column;
        text-align:center;
    }
    .footer-col {
        text-align:center;
    }
}

@media(max-width:780px){
    .nav-toggle {
        display:flex;
    }

    .nav-links {
        position:absolute;
        top:100%;
        right:0;
        background:#2c1d35;
        flex-direction:column;
        align-items:flex-start;
        padding:12px 18px;
        gap:10px;
        min-width:220px;
        display:none;
        border-radius:0 0 0 16px;
        box-shadow:0 14px 30px rgba(0,0,0,.22);
    }

    .navbar.nav-open .nav-links {
        display:flex;
    }

    .hero-inner h1 {
        font-size:2.4rem;
    }
}

@media(max-width:600px){
    .section {
        padding:70px 0;
    }

    .field-row {
        flex-direction:column;
    }

    .cookie-banner {
        width:calc(100% - 20px);
        border-radius:18px;
        padding:12px 14px;
        left:10px;
        transform:none;
        bottom:10px;
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-inner h1 {
        font-size:2rem;
    }

    .hero-inner p {
        font-size:1rem;
    }
}

.contact-infos {
    max-width:700px;
    margin:30px auto 0 auto;
    background:white;
    padding:24px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(70,40,90,.1);
    border:1px solid rgba(111,75,139,.08);
    text-align:left;
}

.contact-infos h3 {
    margin-bottom:15px;
    color:#5a3775;
}

.contact-infos p {
    margin-bottom:10px;
}