/* ===================================
   HK PLOMBERIE - CSS PAGES SECONDAIRES
   =================================== */

:root {
    --blue-deep: #0a2540;
    --navy: #0a2540;
    --blue-water: #00a8e8;
    --blue-logo: #1e5f99;
    --cyan-cool: #00d4ff;
    --orange-heat: #ff6b35;
    --red-hot: #ef4444;
    --green: #22c55e;
    --purple: #8b5cf6;
    --whatsapp: #25D366;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #0a2540;
    --text-secondary: #64748b;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --shadow-sm: 0 2px 8px rgba(10,37,64,.1);
    --shadow-md: 0 4px 20px rgba(10,37,64,.1);
    --transition-normal: .3s cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"] {
    --navy: #0a1628;
    --blue-deep: #0a1628;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --gray-100: #334155;
    --gray-200: #475569;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* HEADER */
.header {
    background: var(--blue-deep);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,.15);
    transition: var(--transition-normal);
}
[data-theme="dark"] .header { background: rgba(15,23,42,.98); }
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.25); }

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: opacity .3s;
}

.logo:hover { opacity: .9; }

.logo span {
    color: var(--blue-water);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header nav {
    display: flex;
    gap: .25rem;
}

.header nav a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    padding: .5rem 1rem;
    font-weight: 500;
    transition: all .3s;
    border-radius: 8px;
}

.header nav a:hover {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    text-decoration: none;
    background: var(--orange-heat);
    padding: .65rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s;
    white-space: nowrap;
}

.header-phone:hover {
    background: #ff8c5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,53,.4);
}

.header-ctas { display: flex; gap: .4rem; align-items: center; }

.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}
.header-icon-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.header-icon-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.header-icon-btn.whatsapp { background: var(--whatsapp); }

.theme-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--blue-deep);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}
.theme-toggle:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
[data-theme="dark"] .theme-toggle { background: var(--orange-heat); }

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all .3s;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blue-deep);
    z-index: 999;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.mobile-menu nav a {
    color: #fff;
    text-decoration: none;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus {
    background: rgba(255,255,255,.1);
}

.mobile-menu nav a i {
    width: 24px;
    text-align: center;
    color: var(--blue-water);
}

.mobile-ctas {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-ctas a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1.1rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
    transition: all .3s ease;
}
.mobile-ctas .phone-cta { background: linear-gradient(135deg, var(--blue-logo), var(--blue-water)); }
.mobile-ctas .whatsapp-cta { background: var(--whatsapp); }
.mobile-ctas .instagram-cta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.mobile-ctas a:hover { box-shadow: 0 12px 35px rgba(0,0,0,.3); }

[data-theme="dark"] .mobile-menu { background: rgba(15,23,42,.99); }
[data-theme="dark"] .mobile-toggle span { background: #fff; }

/* FLOATING CTAS */
.floating-ctas {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.floating-cta {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 1.5rem;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0,0,0,.3);
    transition: var(--transition-normal);
}
.floating-cta:hover { transform: scale(1.05); }
.floating-cta.phone { background: linear-gradient(135deg, var(--blue-logo), var(--blue-water)); animation: floatCta 2s ease-in-out infinite; }
.floating-cta.whatsapp { background: var(--whatsapp); }
.floating-cta.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.floating-cta i { font-size: 1.5rem; }
.floating-cta .cta-text { display: flex; flex-direction: column; line-height: 1.2; }
.floating-cta .cta-label { font-size: .65rem; opacity: .9; }
.floating-cta .cta-number { font-size: 1rem; }
@keyframes floatCta { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* MODALS */
body.modal-open { overflow: hidden; }
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: var(--transition-normal);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    z-index: 1;
}
.modal-header h3 { font-size: 1.5rem; color: var(--blue-deep); }
.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    color: var(--blue-deep);
    font-size: 1.5rem;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover { background: var(--gray-200); }
.modal-body { padding: 1.5rem; }
.modal-body h4 { color: var(--blue-deep); font-family: 'Outfit', sans-serif; font-weight: 700; margin: 1.5rem 0 .5rem; }
.modal-body h4:first-child { margin-top: 0; }
.modal-body p, .modal-body li { color: var(--text-secondary); font-size: .9rem; line-height: 1.7; }
[data-theme="dark"] .modal-header h3 { color: var(--text-primary); }
[data-theme="dark"] .modal-close { background: var(--bg-secondary); color: var(--text-primary); }

/* HERO SECTIONS */
.hero-service,
.hero-zone {
    padding: 5rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-service::before,
.hero-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-service .container,
.hero-zone .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2rem;
    font-size: .9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--cyan-cool);
}

.breadcrumb span {
    color: var(--cyan-cool);
}

.hero-service h1,
.hero-zone h1,
.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-service h1 i,
.hero-zone h1 i {
    margin-right: .5rem;
}

.hero-service p,
.hero-zone p {
    font-size: 1.2rem;
    opacity: .9;
    max-width: 700px;
    margin-bottom: 2rem;
}

.location {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.2rem;
    opacity: .9;
    margin-bottom: 1rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-heat), #ff8c5a);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,.4);
}

.btn-secondary {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* CONTENT */
.content {
    padding: 5rem 0;
}

.content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.main-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--blue-deep);
    margin: 2rem 0 1rem;
    letter-spacing: 1px;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.main-content ul {
    margin: 1rem 0 2rem 1.5rem;
    color: var(--text-secondary);
}

.main-content li {
    margin-bottom: .5rem;
}

/* SERVICES LIST */
.services-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all .3s;
}

.service-item:hover {
    border-color: var(--blue-water);
    transform: translateX(5px);
}

.service-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue-water), var(--cyan-cool));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-item h3 {
    font-size: 1.1rem;
    margin-bottom: .25rem;
    color: var(--blue-deep);
}

.service-item p {
    font-size: .9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.service-card {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all .3s;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    border-color: var(--blue-water);
    transform: translateY(-3px);
}

.service-card i {
    font-size: 2rem;
    color: var(--blue-water);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1rem;
    color: var(--blue-deep);
    margin-bottom: .5rem;
}

.service-card p {
    font-size: .85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* SIDEBAR */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e5e7eb;
}

.sidebar-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blue-deep);
}

.sidebar-card.urgent,
.sidebar-card.contact {
    color: #fff;
    border: none;
}

.sidebar-card.urgent h3,
.sidebar-card.contact h3 {
    color: #fff;
}

.sidebar-card.urgent p,
.sidebar-card.contact p {
    opacity: .9;
}

.sidebar-card .phone {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    margin: 1rem 0;
}

.sidebar-card.urgent .phone,
.sidebar-card.contact .phone {
    color: #fff;
}

.sidebar-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.sidebar-card .address {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
}

.sidebar-card .address i {
    color: var(--blue-water);
    margin-top: .25rem;
}

/* ZONE LIST */
.zone-list,
.nearby-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.zone-tag,
.nearby-tag {
    padding: .4rem .8rem;
    background: rgba(0,168,232,.1);
    color: var(--blue-water);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
}

.zone-tag:hover,
.nearby-tag:hover {
    background: var(--blue-water);
    color: #fff;
}

/* GALLERY */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform .3s;
}

.gallery-preview img:hover {
    transform: scale(1.05);
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--blue-deep), #0d3b66);
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: .9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
#site-footer {
    background: var(--blue-deep);
    padding: 4rem 0 2rem;
    color: #fff;
}
#site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo-img {
    height: 60px;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    padding: 5px;
}
.footer-brand p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.footer-payment h5 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .9rem; margin-bottom: .75rem; }
.payment-methods { display: flex; flex-wrap: wrap; gap: .5rem; }
.payment-method {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .6rem;
    background: rgba(255,255,255,.05);
    border-radius: 6px;
    font-size: .8rem;
    color: rgba(255,255,255,.8);
}
.payment-method i { color: var(--cyan-cool); font-size: .75rem; }
.footer-section h4 { font-family: 'Outfit', sans-serif; font-weight: 700; margin-bottom: 1.25rem; font-size: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .75rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition-normal); text-decoration: none; }
.footer-links a:hover { color: var(--cyan-cool); padding-left: 5px; }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
}
.footer-contact-item i { color: var(--cyan-cool); width: 18px; text-align: center; }
.footer-contact-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-contact-item a:hover { color: var(--cyan-cool); }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-link.whatsapp { background: var(--whatsapp); color: #fff; }
.social-link:hover { transform: translateY(-3px) scale(1.1); }
.footer-seo {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 2rem;
    text-align: center;
}
.footer-seo h4 { font-family: 'Outfit', sans-serif; font-size: .85rem; margin-bottom: 1rem; color: rgba(255,255,255,.5); }
.seo-zones { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.seo-zones a {
    display: inline-block;
    padding: .35rem .75rem;
    font-size: .75rem;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 4px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: all .3s ease;
}
.seo-zones a:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); }
.seo-more { display: inline-block; margin-top: 1rem; font-size: .8rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .3s ease; }
.seo-more:hover { color: var(--cyan-cool); }
.seo-more i { margin-left: .25rem; font-size: .7rem; }
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.5);
    text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--cyan-cool); }

.footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    margin-top: .75rem;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}
.footer-credit a {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: rgba(255,255,255,.45);
    text-decoration: none !important;
    transition: color .3s ease;
}
.footer-credit a:hover { color: rgba(255,255,255,.8); }
.footer-credit img {
    height: 16px;
    opacity: .5;
    transition: opacity .3s ease;
}
.footer-credit a:hover img { opacity: .85; }

/* GALLERY PAGE */
.gallery-section {
    padding: 4rem 0;
}

.gallery-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: .7rem 1.4rem;
    border: 2px solid rgba(0,168,232,.3);
    background: transparent;
    color: var(--text-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.filter-btn:hover {
    border-color: var(--blue-water);
    background: rgba(0,168,232,.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--blue-water), var(--cyan-cool));
    color: #fff;
    border-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: 2px solid #e5e7eb;
    transition: all .3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gallery-item:hover {
    border-color: var(--blue-water);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(10,37,64,.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,37,64,.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
}

.gallery-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: .25rem;
}

.gallery-desc {
    color: rgba(255,255,255,.8);
    font-size: .9rem;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item.show {
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(.9); }
    to { opacity: 1; transform: scale(1); }
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all .3s;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--blue-water);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all .3s;
}

.lightbox-nav:hover {
    background: var(--blue-water);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0,0,0,.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    background: rgba(0,0,0,.7);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
}

.lightbox-caption h4 {
    font-size: 1.2rem;
    margin-bottom: .25rem;
}

.lightbox-caption p {
    font-size: .9rem;
    opacity: .8;
}

/* HERO SIMPLE */
.hero {
    background: linear-gradient(135deg, var(--blue-deep) 0%, #0d3b66 100%);
    padding: 4rem 0;
    color: #fff;
    text-align: center;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    opacity: .85;
    max-width: 600px;
    margin: 0 auto;
}

/* URGENCE SPECIFIC */
.urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(255,255,255,.2);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .7; }
}

.phone-big {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin: 1rem 0;
    color: #fff;
    text-decoration: none;
}

.phone-big:hover {
    color: #fef08a;
}

.urgency-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--red-hot);
}

.urgency-item i {
    font-size: 1.5rem;
    color: var(--red-hot);
}

.urgency-item span {
    font-weight: 600;
    color: var(--blue-deep);
}

.process {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.process-step .number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--red-hot), var(--orange-heat));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: .25rem;
    color: var(--blue-deep);
}

.process-step p {
    font-size: .9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* CERTIFICATION BADGE */
.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: linear-gradient(135deg, var(--green), #16a34a);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    margin: 1rem 0;
}


/* ============================================
   RESPONSIVE - PAGES SECONDAIRES
   ============================================ */

/* --- ANIMATIONS --- */
.fade-in{opacity:0;transform:translateY(20px);animation:fadeInUp .6s cubic-bezier(.4,0,.2,1) forwards}
@keyframes fadeInUp{to{opacity:1;transform:translateY(0)}}

/* --- LARGE DESKTOP (1200px+) --- */
@media (min-width: 1200px) {
    .content .container { max-width: 1140px; }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- DESKTOP (992px - 1199px) --- */
@media (max-width: 1199px) {
    .header nav a { padding: .5rem .75rem; font-size: .9rem; }
    .header-phone { width: 34px; height: 34px; padding: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .header-phone span { display: none; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-content { gap: 2.5rem; }
}

/* --- TABLET LANDSCAPE (768px - 991px) --- */
@media (max-width: 991px) {
    /* Header - Show mobile menu */
    .header nav { display: none; }
    .header-ctas .header-icon-btn,
    .header-ctas .header-phone { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-menu { display: block; }
    .header .header-content { height: 65px; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-section { display: flex; flex-direction: column; align-items: center; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; }
    .footer-links li { margin: 0; }
    .footer-contact-item { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: .75rem; }

    /* Floating CTAs */
    .floating-ctas { bottom: 15px; right: 15px; gap: .6rem; }
    .floating-cta { padding: .875rem; width: 54px; height: 54px; border-radius: 50%; justify-content: center; }
    .floating-cta i { font-size: 1.3rem; }
    .floating-cta .cta-text { display: none; }

    /* Modal */
    .modal-overlay { padding: 1rem; }
    .modal { max-height: 90vh; border-radius: var(--radius-lg); }

    /* Content Grid */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Sidebar */
    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .sidebar-card { margin-bottom: 0; }
    
    /* Grids */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .services-list { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- TABLET PORTRAIT (576px - 767px) --- */
@media (max-width: 767px) {
    .header .container { padding: 0 1rem; }
    .header-phone { width: 40px; height: 40px; }
    .logo { font-size: 1.75rem; }
    .mobile-menu { top: 68px; }
    
    /* Hero */
    .hero-service,
    .hero-zone {
        padding: 3.5rem 0;
        text-align: center;
    }
    
    .hero-service h1,
    .hero-zone h1,
    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        letter-spacing: 1px;
    }
    
    .hero-service p,
    .hero-zone p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .breadcrumb {
        font-size: .85rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .location {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Content */
    .content { padding: 2.5rem 0; }
    .content .container { padding: 0 1rem; }
    .main-content h2 { font-size: 1.5rem; }
    
    /* Sidebar */
    .sidebar { grid-template-columns: 1fr; }
    .sidebar-card { padding: 1.5rem; }
    .sidebar-card .phone { font-size: 1.6rem; }
    
    /* Services */
    .services-list { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; gap: .875rem; }
    .service-item { padding: 1.25rem; }
    .service-item i { width: 45px; height: 45px; font-size: 1rem; }
    .service-card { padding: 1.25rem; }
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    /* Sidebar */
    .sidebar {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .sidebar-card .phone {
        font-size: 1.5rem;
    }
    
    /* Gallery */
    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }
    
    .gallery-preview img {
        height: 120px;
    }
    
    /* Zone */
    .zone-list,
    .nearby-list {
        gap: .4rem;
    }
    
    .zone-tag,
    .nearby-tag {
        padding: .35rem .7rem;
        font-size: .8rem;
    }
    
    /* Urgence */
    .urgency-list {
        grid-template-columns: 1fr;
        gap: .75rem;
    }
    
    .urgency-item {
        padding: 1rem;
    }
    
    .phone-big {
        font-size: 1.75rem;
    }
    
    .process-step {
        padding: 1.25rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Footer */
    #site-footer { padding: 2.5rem 0 1.5rem; }

    /* Floating */
    .floating-ctas { gap: .5rem; }
    .floating-cta { width: 52px; height: 52px; }
    .floating-cta i { font-size: 1.25rem; }
}

/* --- MOBILE (max-width: 480px) --- */
@media (max-width: 480px) {
    /* Hero */
    .hero-service,
    .hero-zone {
        padding: 2.5rem 0;
    }
    
    .hero-service h1,
    .hero-zone h1,
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-service p,
    .hero-zone p {
        font-size: .95rem;
        margin-bottom: 1.5rem;
    }
    
    .location {
        font-size: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Content */
    .content {
        padding: 2.5rem 0;
    }
    
    .main-content h2 {
        font-size: 1.35rem;
    }
    
    .main-content p,
    .main-content li {
        font-size: .95rem;
    }
    
    /* Services */
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: .75rem;
    }
    
    .service-item i {
        margin: 0 auto;
    }
    
    /* Sidebar */
    .sidebar-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .sidebar-card h3 {
        font-size: 1.25rem;
    }
    
    .sidebar-card .phone {
        font-size: 1.4rem;
    }
    
    /* Gallery */
    .gallery-preview {
        grid-template-columns: 1fr;
    }
    
    .gallery-preview img {
        height: 180px;
    }
    
    /* Gallery page */
    .gallery-section {
        padding: 2.5rem 0;
    }
    
    .gallery-filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem;
    }
    
    .filter-btn {
        padding: .6rem .75rem;
        font-size: .8rem;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: .875rem;
        max-width: 100%;
    }
    
    .gallery-item {
        border-radius: 12px;
    }
    
    .gallery-tag {
        padding: .35rem .65rem;
        font-size: .7rem;
    }
    
    .gallery-title {
        font-size: 1rem;
    }
    
    .gallery-desc {
        font-size: .8rem;
    }
    
    /* Lightbox */
    .lightbox {
        padding: .5rem;
    }
    
    .lightbox img {
        max-width: 100%;
        max-height: 65vh;
        border-radius: 8px;
    }
    
    .lightbox-close {
        top: .5rem;
        right: .5rem;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: .5rem;
    }
    
    .lightbox-next {
        right: .5rem;
    }
    
    .lightbox-caption {
        padding: .6rem 1rem;
        border-radius: 8px;
        max-width: 95%;
    }
    
    .lightbox-caption h4 {
        font-size: .95rem;
    }
    
    .lightbox-caption p {
        font-size: .8rem;
    }
    
    /* Urgence */
    .urgent-badge {
        font-size: .85rem;
        padding: .4rem .875rem;
    }
    
    .phone-big {
        font-size: 1.5rem;
    }
    
    .urgency-item {
        padding: .875rem;
    }
    
    .urgency-item i {
        font-size: 1.25rem;
    }
    
    .urgency-item span {
        font-size: .9rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .process-step .number {
        width: 35px;
        height: 35px;
        font-size: .9rem;
    }
    
    .process-step h3 {
        font-size: 1rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: .95rem;
    }
    
    /* Footer */
    .footer-bottom p { font-size: .85rem; }
}

/* --- VERY SMALL (max-width: 360px) --- */
@media (max-width: 360px) {
    .hero-service h1,
    .hero-zone h1,
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: .875rem 1rem;
        font-size: .9rem;
    }
    
    .sidebar-card .phone {
        font-size: 1.25rem;
    }
    
    .gallery-filters {
        grid-template-columns: 1fr;
    }
    
    .urgency-item {
        flex-direction: column;
        text-align: center;
        gap: .5rem;
    }
}

/* --- HOVER EFFECTS (desktop) --- */
@media (hover: hover) and (pointer: fine) {
    .service-item:hover {
        transform: translateX(8px);
        border-color: var(--blue-water);
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        border-color: var(--blue-water);
    }
    
    .gallery-item:hover {
        transform: translateY(-8px);
    }
    
    .gallery-item:hover img {
        transform: scale(1.1);
    }
    
    .zone-tag:hover,
    .nearby-tag:hover {
        transform: translateY(-2px);
    }
    
    .btn:hover {
        transform: translateY(-3px);
    }
    
    .sidebar-card:hover {
        border-color: var(--blue-water);
    }
}

/* --- TOUCH DEVICES --- */
@media (pointer: coarse) {
    .btn {
        min-height: 48px;
    }
    
    .filter-btn {
        min-height: 44px;
    }
    
    .zone-tag,
    .nearby-tag {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }
    
    .lightbox-close,
    .lightbox-nav {
        min-width: 48px;
        min-height: 48px;
    }
    
    .service-item,
    .service-card {
        cursor: default;
    }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* --- PRINT --- */
@media print {
    .header,
    .lightbox,
    .sidebar-card.urgent,
    .cta-section {
        display: none !important;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-service,
    .hero-zone,
    .hero {
        background: #f5f5f5 !important;
        color: #000 !important;
        padding: 1rem 0;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}
