:root {
    --primary-color: #1a5276;
    --secondary-color: #f39c12;
    --text-color: #444;
    --bg-light: #f9f9f9;
    --footer-bg: #1a252f;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
html { scroll-behavior: smooth; }
body { color: var(--text-color); line-height: 1.6; overflow-x: hidden; background-color: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1300px;
    margin: auto;
    position: relative;
}

.logo img { height: 55px; display: block; }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { font-weight: 600; font-size: 1rem; transition: color 0.3s; color: #333; }
.nav-links a:hover { color: var(--secondary-color); }

.btn {
    background-color: var(--secondary-color);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}
.btn:hover { background-color: #d68910; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(243, 156, 18, 0.4); }
.btn:disabled {
    opacity: .75;
    cursor: wait;
    transform: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    border: 0;
    background: transparent;
}
.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 3px;
}

.hero {
    position: relative;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    animation: zoomBg 20s infinite alternate ease-in-out;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.8), rgba(0, 0, 0, 0.6));
    z-index: -1;
}
@keyframes zoomBg { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
.hero-content {
    z-index: 1;
    animation: fadeInDown 1.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-logo {
    max-width: 250px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.hero h1 { font-size: 4rem; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero p { font-size: 1.3rem; margin-bottom: 35px; max-width: 700px; margin-left: auto; margin-right: auto; text-shadow: 0 1px 5px rgba(0,0,0,0.3); }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }

.intro-section {
    padding: 80px 5% 20px;
    background: #fff;
}
.intro-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 46px;
    align-items: center;
}
.intro-kicker {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .85rem;
    margin-bottom: 12px;
}
.intro-text h2 {
    color: var(--primary-color);
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 22px;
}
.intro-text p {
    font-size: 1.08rem;
    color: #4b5563;
    margin-bottom: 16px;
}
.intro-text p:first-of-type {
    font-weight: 800;
    color: #2f3a45;
    font-size: 1.2rem;
}
.intro-photo {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(26, 82, 118, .14);
    aspect-ratio: 4 / 3;
}
.intro-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 80px 0 40px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.services { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; padding: 0 5%; max-width: 1200px; margin: auto; }
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1 1 300px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-color: var(--secondary-color); }
.service-card h3 { margin-bottom: 15px; color: var(--primary-color); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
.service-card h3 i { color: var(--secondary-color); }

.galerie { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; padding: 0 5%; max-width: 1200px; margin: auto auto 80px; }
.galerie-item { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 4/3; }
.galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; cursor: zoom-in; }
.galerie-item:hover img { transform: scale(1.1); }
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); display: flex; justify-content: center; align-items: center; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 5px; transform: scale(0.8); transition: transform 0.3s; box-shadow: 0 0 30px rgba(0,0,0,0.5); }
.lightbox.active img { transform: scale(1); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; }

.avis-section { background-color: var(--primary-color); padding: 80px 0; overflow: hidden; }
.avis-section .section-title { color: #fff; }
.avis-section .section-title::after { background-color: #fff; }
.avis-container { display: flex; width: 200%; animation: scrollAvis 25s linear infinite; }
.avis-container:hover { animation-play-state: paused; }
.avis-card { width: 50%; display: flex; justify-content: space-around; padding: 0 20px; }
.avis-item { background: rgba(255, 255, 255, 0.08); padding: 30px; border-radius: 12px; width: 31%; backdrop-filter: blur(10px); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.avis-item p { font-style: italic; margin-bottom: 15px; font-size: 0.95rem; }
.avis-item strong { color: var(--secondary-color); }
@keyframes scrollAvis { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.contact-section { padding: 0 5% 80px; max-width: 800px; margin: auto; }
.contact-container { background: #fff; padding: 50px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 22px;
    font-weight: 700;
}
.contact-alert.success { background: #e8f8ef; color: #17643a; border: 1px solid #bce8cf; }
.contact-alert.error { background: #fdecec; color: #9f1d1d; border: 1px solid #f5b8b8; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--primary-color); font-size: 0.9rem; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 1px solid #e1e1e1; border-radius: 8px; font-size: 1rem; background: var(--bg-light); transition: all 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary-color); background: #fff; box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.1); }
.btn-submit { width: 100%; margin-top: 20px; padding: 18px; font-size: 1.1rem; }

.page-header {
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 80px 20px 60px;
    text-align: center;
}
.page-header h1 {
    font-size: 3rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.page-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}
.page-header p {
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 1.08rem;
    color: rgba(255,255,255,.92);
}
.legal-content {
    max-width: 900px;
    margin: -30px auto 80px;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
.legal-content h2 { color: var(--primary-color); font-size: 1.5rem; margin-top: 35px; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content ul { margin-bottom: 15px; color: #555; font-size: 1.05rem; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content strong { color: #333; }
.page-content img { max-width: 100%; height: auto; border-radius: 8px; }
.page-content h2, .page-content h3 { color: var(--primary-color); margin: 24px 0 12px; }
.page-content a { color: var(--primary-color); font-weight: 700; }
.content-band {
    padding: 60px 5% 80px;
}
.content-intro {
    max-width: 900px;
    margin: 0 auto 44px;
    text-align: center;
}
.content-intro h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 14px;
}
.content-intro p {
    color: #5b6673;
    font-size: 1.1rem;
}
.services-page {
    padding: 0;
    margin-bottom: 54px;
}
.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.process-grid article {
    border: 1px solid #edf0f4;
    border-radius: 10px;
    padding: 26px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(26, 82, 118, .06);
}
.process-grid strong {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    margin-bottom: 14px;
}
.process-grid h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}
.contact-page {
    padding: 60px 5% 80px;
}
.contact-info-panel {
    max-width: 1200px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
    gap: 30px;
    align-items: start;
}
.contact-info-panel h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 12px;
}
.contact-details {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 24px;
}
.contact-details p {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    color: #2f3a45;
    font-weight: 700;
}
.contact-details i {
    color: var(--secondary-color);
}
.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
    gap: 30px;
    align-items: stretch;
}
.map-wrap {
    min-height: 460px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.split-section {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
    gap: 30px;
    align-items: center;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 34px;
}
.split-section h2,
.local-zone h2,
.faq-section h2,
.cta-band h2 {
    color: var(--primary-color);
    line-height: 1.2;
}
.split-section p {
    color: #4b5563;
    margin-bottom: 12px;
}
.feature-list {
    background: #fff;
    border-radius: 10px;
    padding: 22px;
    border: 1px solid #edf0f4;
}
.feature-list p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #2f3a45;
    font-weight: 700;
}
.feature-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}
.faq-section {
    max-width: 1200px;
    margin: 58px auto 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.faq-item {
    border: 1px solid #edf0f4;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(26, 82, 118, .05);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: #fff;
    color: var(--primary-color);
    padding: 22px 24px;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 800;
}
.faq-question i {
    color: var(--secondary-color);
    transition: transform .25s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
}
.faq-answer p {
    color: #4b5563;
    padding: 0 24px 22px;
}
.faq-item.active .faq-answer {
    max-height: 220px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.cta-band {
    max-width: 1200px;
    margin: 42px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    padding: 28px;
}
.cta-band h2 {
    color: #fff;
    margin-bottom: 6px;
}
.cta-band p {
    color: rgba(255,255,255,.86);
}
.local-zone {
    max-width: 1200px;
    margin: 0 auto 30px;
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 28px rgba(26, 82, 118, .05);
}
.local-zone p {
    color: #4b5563;
    margin: 10px 0 18px;
}
.zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.zone-tags span {
    background: var(--bg-light);
    border: 1px solid #e2e8f0;
    color: var(--primary-color);
    border-radius: 999px;
    padding: 8px 13px;
    font-weight: 800;
    font-size: .92rem;
}
.local-home-section {
    padding: 40px 5% 10px;
}
.local-home-content {
    max-width: 1200px;
    margin: auto;
    border-left: 5px solid var(--secondary-color);
    background: var(--bg-light);
    border-radius: 10px;
    padding: 28px;
}
.local-home-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 12px;
}
.local-home-content p {
    max-width: 900px;
    color: #4b5563;
    margin-bottom: 18px;
}

.site-footer { background-color: var(--footer-bg); color: #ecf0f1; padding: 60px 5% 20px; font-size: 0.9rem; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; max-width: 1200px; margin: auto; gap: 40px; margin-bottom: 40px; }
.footer-col { flex: 1; min-width: 250px; }
.footer-logo { max-height: 60px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-col h4 { color: var(--secondary-color); font-size: 1.2rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--secondary-color); }
.footer-col p { margin-bottom: 12px; color: #bdc3c7; display: flex; align-items: center; gap: 10px; }
.footer-col p i { color: var(--secondary-color); font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #bdc3c7; transition: color 0.3s, padding-left 0.3s; }
.footer-col ul li a:hover { color: var(--secondary-color); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: center; max-width: 1200px; margin: auto; color: #95a5a6; }
.legal-links a { margin-left: 15px; transition: color 0.3s; }
.legal-links a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 850px) {
    .hero h1 { font-size: 2.8rem; }
    .form-row { flex-direction: column; gap: 0; }
    .intro-content { grid-template-columns: 1fr; }
    .intro-text h2 { font-size: 2.2rem; }
    .process-grid, .contact-info-panel, .contact-layout { grid-template-columns: 1fr; }
    .split-section, .faq-grid { grid-template-columns: 1fr; }
    .cta-band { align-items: flex-start; flex-direction: column; }
    .map-wrap { min-height: 340px; }
}

@media (max-width: 768px) {
    .hero-logo { max-width: 180px; }
    .menu-toggle { display: block; position: absolute; right: 5%; top: 50%; transform: translateY(-50%); }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
    .avis-card { width: 100%; flex-direction: column; gap: 20px; }
    .avis-item { width: 100%; }
    .avis-container { animation: none; width: 100%; flex-direction: column; }
    .page-header h1 { font-size: 2.2rem; }
    .legal-content { padding: 30px 20px; margin: -20px 15px 50px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .legal-links a { margin: 0 10px; }
}
