:root {
    --primary: #0d4f8b;
    --primary-dark: #0a3d6e;
    --primary-light: #1a6bb5;
    --accent: #e8a317;
    --accent-hover: #d49210;
    --text: #1e293b;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-alt: #f1f5f9;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
    --radius: 8px;
    --radius-lg: 12px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-light); }

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

/* Header */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    flex-shrink: 0;
}

.logo:hover { color: var(--text); }

.logo-icon {
    font-size: 28px;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong { font-size: 15px; color: var(--primary); }
.logo-text small { font-size: 11px; color: var(--text-muted); font-weight: 500; }

.main-nav > ul {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.main-nav a {
    display: block;
    padding: 8px 14px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: background .2s, color .2s;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--bg-alt);
    color: var(--primary);
}

.has-dropdown { position: relative; }

.has-dropdown > .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 8px 0;
    z-index: 100;
    list-style: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.has-dropdown:hover > .dropdown { display: flex; }

.dropdown li { list-style: none; }

.dropdown a {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 0;
}

.dropdown a:hover { background: var(--bg-alt); }

.header-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius);
    flex-shrink: 0;
    transition: transform .2s, box-shadow .2s, background .2s;
    box-shadow: 0 4px 14px rgba(13, 79, 139, .35);
}

.header-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(13, 79, 139, .45);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cta-label { font-size: 11px; opacity: .85; }
.cta-phone { font-size: 15px; font-weight: 700; white-space: nowrap; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform .3s, opacity .3s;
}

/* ====== HERO SLIDER ====== */
.hero-slider {
    position: relative;
    width: 100%;
    height: clamp(480px, 75vh, 720px);
    overflow: hidden;
    background: #0a0e17;
    margin-top: -1px;
}

.slider-viewport { position: absolute; inset: 0; }

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s cubic-bezier(.4, 0, .2, 1);
}
.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
    position: absolute;
    inset: -30px;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.slide.active .slide-bg {
    animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
    0%   { transform: scale(1.08) translate(0, 0); }
    100% { transform: scale(1.0)  translate(-8px, -4px); }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10,14,23,.41) 0%, rgba(13,79,139,.28) 55%, rgba(26,107,181,.18) 100%),
        linear-gradient(to top, rgba(10,14,23,.32) 0%, transparent 45%);
    z-index: 1;
}

.slide-content-wrap {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    color: #fff;
    pointer-events: none;
}
.slide-content-wrap > .container { pointer-events: auto; }

.slide-content-wrap .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fadeUp .8s ease-out both;
}

.slide-text {
    display: none;
    max-width: 680px;
}
.slide-text.active { display: block; }

.slide-text h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 16px rgba(0,0,0,.35);
    animation: fadeUp .8s .15s ease-out both;
}

.slide-text p {
    font-size: clamp(16px, 2.5vw, 19px);
    opacity: .92;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 560px;
    text-shadow: 0 1px 8px rgba(0,0,0,.3);
    animation: fadeUp .8s .3s ease-out both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeUp .8s .45s ease-out both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Slider navigation dots with circular progress */
.slider-nav {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 14px;
}

.slider-dot {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    opacity: .55;
    transition: opacity .3s;
}
.slider-dot.active { opacity: 1; }
.slider-dot:hover  { opacity: .85; }

.slider-dot svg { width: 100%; height: 100%; transform: rotate(-90deg); }

.dot-track {
    fill: none;
    stroke: rgba(255,255,255,.3);
    stroke-width: 2.5;
}

.dot-progress {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.5;
    stroke-dasharray: 100.53;
    stroke-dashoffset: 100.53;
    stroke-linecap: round;
    transition: stroke-dashoffset 0s;
}

.slider-dot.active .dot-progress {
    animation: dotFill var(--slide-duration, 6s) linear forwards;
}

@keyframes dotFill {
    to { stroke-dashoffset: 0; }
}

.slider-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 7px; height: 7px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform .3s;
}

.slider-dot.active::after { transform: translate(-50%, -50%) scale(1.25); background: var(--accent); }

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.5);
    transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(13, 79, 139, .3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(13, 79, 139, .4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
}

.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.section-header p { color: var(--text-muted); }

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: box-shadow .2s, transform .2s;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feature-icon { font-size: 32px; margin-bottom: 16px; }

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p { color: var(--text-muted); font-size: 14px; }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    border-left: 4px solid var(--primary);
}

.section-alt .service-item { background: var(--bg); }

.service-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.service-item p { color: var(--text-muted); font-size: 14px; }

.service-item-media {
    padding: 0;
    overflow: hidden;
}

.service-item-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-item-media h3,
.service-item-media p {
    padding-left: 20px;
    padding-right: 20px;
}

.service-item-media h3 { margin-top: 16px; }
.service-item-media p { padding-bottom: 20px; }

a.service-item-link {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

a.service-item-link:hover {
    color: inherit;
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

a.service-item-link:hover h3 {
    color: var(--primary-light);
}

.service-item[id] {
    scroll-margin-top: 90px;
}

/* Regions */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.region-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    color: var(--text);
    transition: all .2s;
    min-height: 100px;
}

.region-card-media {
    padding: 0;
    overflow: hidden;
    min-height: 0;
}

.region-card-media img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.region-card-body {
    padding: 14px 16px 16px;
}

.region-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    color: var(--text);
    transform: translateY(-2px);
}

.region-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.region-card span {
    font-size: 13px;
    color: var(--text-muted);
}

.content-figure {
    margin: 0 0 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.content-figure img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
}

.content-media-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    align-items: start;
}

.contact-figure { margin-bottom: 20px; }

.region-hero-figure {
    margin: 20px 0 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
}

.region-hero-figure img {
    width: 100%;
    height: clamp(180px, 32vw, 320px);
    object-fit: cover;
}

.article-figure {
    margin: 0 0 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.article-figure img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.gallery-item {
    margin: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: 12px 14px;
    font-size: 13px;
    color: var(--text-muted);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 64px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section p {
    opacity: .9;
    margin-bottom: 28px;
    font-size: 17px;
}

.cta-btn-group,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.page-hero p { opacity: .85; font-size: 17px; }

.page-hero-region { text-align: left; }
.page-hero-region .btn { margin-top: 12px; }

/* District Map */
.district-map-section {
    margin: 28px 0 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px;
    backdrop-filter: blur(4px);
}

.district-map-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
    opacity: 0.95;
}

.district-map {
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    background: #e8f0f8;
    overflow: hidden;
    z-index: 1;
}

.district-map .leaflet-container {
    background: #e8f0f8;
    font-family: var(--font);
}

.district-tooltip {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.district-tooltip::before {
    border-top-color: var(--primary-dark);
}

.district-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.district-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.map-error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    font-size: 14px;
}

.page-hero-region .btn + .btn { margin-left: 10px; }

.breadcrumb {
    font-size: 13px;
    margin-bottom: 16px;
    opacity: .8;
}

.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: #fff; }

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.seo-article h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 32px 0 12px;
}

.seo-article h2:first-child { margin-top: 0; }

.seo-article h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--text);
}

.seo-article p {
    margin-bottom: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.seo-article ul {
    margin: 12px 0 20px 20px;
    color: var(--text-muted);
}

.seo-article li { margin-bottom: 8px; line-height: 1.7; }

.article-sidebar { position: sticky; top: 90px; }

.sidebar-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-box h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.page-hero-region .btn { margin-top: 12px; }
.page-hero-region .btn + .btn { margin-left: 10px; }

.sidebar-box .btn + .btn { margin-top: 10px; }

.sidebar-box ul { list-style: none; }
.sidebar-box li { font-size: 14px; color: var(--text-muted); padding: 4px 0; }

.sidebar-links { list-style: none; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { display: block; padding: 8px 0; font-size: 13px; }

/* Content Area */
.content-area { max-width: 900px; }
.content-area h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; color: var(--primary); }
.content-area p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }

.two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.info-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.info-box h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; color: var(--primary); }
.info-box ul { list-style: none; }
.info-box li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}
.info-box li:last-child { border-bottom: none; }
.info-box li::before { content: '✓ '; color: var(--primary); font-weight: 700; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 24px; }

.contact-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item strong {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item-highlight a {
    font-size: 18px;
    font-weight: 700;
}

.contact-phone {
    color: var(--primary);
}

.contact-phone:hover { color: var(--primary-light); }

.contact-whatsapp {
    color: #128c7e;
}

.contact-whatsapp:hover { color: #25d366; }

.contact-form-wrap {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-form-wrap h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 14px;
    background: var(--bg);
    transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p { font-size: 14px; line-height: 1.7; }

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #94a3b8; font-size: 14px; }
.footer-col a:hover { color: #e2e8f0; }

.contact-list li { font-size: 14px; line-height: 1.7; }

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}

.footer-bottom a { color: #94a3b8; }

.footer-contact-highlight {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-phone {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent) !important;
}

.footer-phone:hover { color: #fff !important; }

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff !important;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    width: fit-content;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 12px rgba(13, 79, 139, .4);
}

.footer-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(13, 79, 139, .5);
    color: #fff !important;
}

/* Mobile Contact Bar */
.mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    box-shadow: 0 -6px 24px rgba(15, 23, 42, .2);
}

.mobile-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: transform .15s, filter .15s, box-shadow .15s;
    position: relative;
    overflow: hidden;
}

.mobile-contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.15) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-contact-btn:active {
    transform: scale(.98);
    filter: brightness(.95);
}

.mobile-contact-btn .btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.mobile-contact-whatsapp {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a7a5e 100%);
    border-right: 1px solid rgba(255, 255, 255, .15);
    animation: pulse-whatsapp 2.5s ease-in-out infinite;
}

.mobile-contact-phone {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 50%, #f0b429 100%);
    animation: pulse-phone 2.5s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0); }
    50% { box-shadow: inset 0 0 20px rgba(255, 255, 255, .08); }
}

@keyframes pulse-phone {
    0%, 100% { box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0); }
    50% { box-shadow: inset 0 0 20px rgba(255, 255, 255, .12); }
}

/* Responsive */
@media (max-width: 900px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .two-col { grid-template-columns: 1fr; }
    .content-media-row { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        padding: 16px;
    }

    .main-nav.open { display: block; }

    .main-nav > ul { flex-direction: column; align-items: stretch; }

    .main-nav a { padding: 12px 16px; }

    .has-dropdown > .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding-left: 16px;
        background: var(--bg-alt);
        border-radius: var(--radius);
        margin-top: 4px;
    }

    .has-dropdown.open > .dropdown { display: flex; }
    .has-dropdown:hover > .dropdown { display: none; }
    .has-dropdown.open:hover > .dropdown { display: flex; }

    .header-cta {
        display: flex;
        padding: 6px 10px;
    }

    .cta-label { display: none; }

    .cta-phone { font-size: 11px; font-weight: 700; }

    .mobile-contact-bar { display: flex; }

    body { padding-bottom: 64px; }

    .district-map { height: 280px; }

    .page-hero-region .btn + .btn {
        margin-left: 0;
        display: inline-flex;
    }

    .hero-slider { height: clamp(400px, 60vh, 560px); }
    .slider-arrow { display: none; }

    .section { padding: 50px 0; }

    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-slider { height: clamp(380px, 65vh, 500px); }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    .cta-phone { font-size: 10px; }
    .slider-nav { bottom: 18px; gap: 10px; }
    .slider-dot { width: 28px; height: 28px; }
}
