/* =============================================
   AyasClean — 2026 UI/UX Design System
   Stack: Custom CSS + Laravel Blade
   ============================================= */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:       #0A1628;
    --navy-mid:   #0f2040;
    --navy-light: #1a3060;
    --aqua:       #00C2FF;
    --aqua-glow:  #00d4ff;
    --white:      #ffffff;
    --gray-50:    #f8fafc;
    --gray-100:   #f1f5f9;
    --gray-200:   #e2e8f0;
    --gray-400:   #94a3b8;
    --gray-600:   #475569;
    --gray-800:   #1e293b;
    --green-wa:   #25D366;
    --red:        #ef4444;

    --font-head:  'Plus Jakarta Sans', sans-serif;
    --font-body:  'Inter', sans-serif;

    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  36px;

    --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
    --shadow-md:  0 8px 32px rgba(0,0,0,.10);
    --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
    --shadow-aqua:0 0 40px rgba(0,194,255,.25);

    --trans:      all 0.35s cubic-bezier(.4,0,.2,1);
    --header-h:   72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--gray-800);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.gradient-text {
    background: linear-gradient(135deg, var(--aqua), #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-header p {
    color: var(--gray-600);
    margin-top: 12px;
    font-size: 1.05rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--trans);
    white-space: nowrap;
}

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
    background: linear-gradient(135deg, #0052cc, var(--aqua));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,82,204,.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,82,204,.45);
}

.btn-outline {
    border: 2px solid var(--aqua);
    color: var(--aqua);
    background: transparent;
}
.btn-outline:hover {
    background: var(--aqua);
    color: var(--navy);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,.4);
    color: var(--white);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,.1);
}

.btn-whatsapp {
    background: var(--green-wa);
    color: var(--white);
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* =============================================
   SECTION BASE
   ============================================= */
.section {
    padding: 100px 0;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10,22,40,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: var(--trans);
}

.site-header.scrolled {
    background: rgba(10,22,40,.98);
    box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-img {
    width: 128px;
    height: 128px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(0,194,255,.35));
    transition: filter var(--trans);
}
.logo:hover .logo-img {
    filter: drop-shadow(0 0 10px rgba(0,194,255,.6));
}
.logo-text {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: -.02em;
}
.logo-text strong { color: var(--aqua); }

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 18px;
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    border-radius: var(--radius-sm);
    transition: var(--trans);
    white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--aqua);
    background: rgba(0,194,255,.08);
}
.nav-list .fa-chevron-down {
    font-size: .65rem;
    transition: transform .3s;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #1a2540;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 12px;
    width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    z-index: 200;
}
/* Click-open via JS .open class */
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.has-dropdown.open .fa-chevron-down { transform: rotate(180deg); }
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    border-radius: var(--radius-sm);
    transition: var(--trans);
    font-weight: 400;
    white-space: nowrap;
}
.dropdown-menu li a:hover {
    background: rgba(255,255,255,.05);
    color: white;
}
.dd-dot {
    width: 6px; height: 6px;
    background: var(--aqua);
    border-radius: 50%;
    flex-shrink: 0;
}
.dd-all {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.dd-all a {
    color: var(--aqua) !important;
    font-weight: 600;
}
.dd-dot--all { background: transparent; }


/* Header CTA */
.header-cta { flex-shrink: 0; }
.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: linear-gradient(135deg, #0052cc, var(--aqua));
    border-radius: var(--radius-md);
    color: white;
    font-size: .88rem;
    font-weight: 600;
    transition: var(--trans);
}
.btn-call:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-aqua);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0a1f45 50%, #071523 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,194,255,.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 10% 80%, rgba(0,82,204,.15) 0%, transparent 50%);
}

.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .15;
}
.shape-1 {
    width: 500px; height: 500px;
    background: var(--aqua);
    top: -100px; right: -100px;
    animation: float1 8s ease-in-out infinite;
}
.shape-2 {
    width: 350px; height: 350px;
    background: #0052cc;
    bottom: -50px; left: 10%;
    animation: float2 10s ease-in-out infinite;
}
.shape-3 {
    width: 200px; height: 200px;
    background: var(--aqua);
    top: 40%; left: 40%;
    animation: float1 6s ease-in-out infinite reverse;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

/* Hero split layout */
.hero-split {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 80px 0;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 0 0 55%;
    max-width: 55%;
}

/* Hero visual (right side) */
.hero-visual {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.35);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Glow behind slider */
.hero-img-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at 55% 50%, rgba(0,194,255,.18) 0%, transparent 65%);
    z-index: -1;
    pointer-events: none;
}

/* Edge fades — sit on .hero-visual, OUTSIDE the slider.
   They start at the image edge (transparent) and fade outward
   into the page background color, so the image itself stays intact. */
.hero-edge-fade {
    position: absolute;
    pointer-events: none;
    z-index: 3;
}

/* Left: fades from background (left) → transparent (toward image center) */
.hero-edge-fade--left {
    top: 0; bottom: 0;
    left: -10px;        /* extends slightly beyond slider left edge */
    width: 38%;
    background: linear-gradient(
        to right,
        #0A1628 0%,
        rgba(10,22,40,.92) 18%,
        rgba(10,22,40,.50) 50%,
        transparent 100%
    );
}

/* Bottom: fades from background (bottom) → transparent (upward) */
.hero-edge-fade--bottom {
    left: 0; right: 0;
    bottom: -10px;
    height: 30%;
    background: linear-gradient(
        to top,
        #071523 0%,
        rgba(7,21,35,.85) 20%,
        rgba(7,21,35,.35) 55%,
        transparent 100%
    );
}

/* Top: subtle top fade */
.hero-edge-fade--top {
    left: 0; right: 0;
    top: -10px;
    height: 20%;
    background: linear-gradient(
        to bottom,
        #0A1628 0%,
        rgba(10,22,40,.60) 30%,
        transparent 100%
    );
}

/* Slider dots */
.hero-slider-dots {
    position: absolute;
    bottom: 18px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 4;
}
.hsd {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .3s, transform .3s;
}
.hsd.active {
    background: var(--aqua);
    transform: scale(1.25);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,194,255,.1);
    border: 1px solid rgba(0,194,255,.25);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--aqua);
    margin-bottom: 24px;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--aqua);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.7); }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -.04em;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.stat {
    display: block;
}
.stat-number {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.stat-plus { font-size: 1.4rem; color: var(--aqua); font-weight: 800; }
.stat-label {
    display: block;
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.45);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--aqua), transparent);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0a1f45 100%);
    padding: calc(var(--header-h) + 60px) 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,194,255,.1), transparent 60%);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    color: white;
}
.page-hero-content h1 { color: white; margin-bottom: 12px; }
.page-hero-content .section-label { margin-bottom: 8px; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255,255,255,.55);
}
.breadcrumb li::after { content: '/'; margin-left: 8px; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: rgba(255,255,255,.7); transition: var(--trans); }
.breadcrumb a:hover { color: var(--aqua); }

/* =============================================
   SERVICE DETAIL HERO (photo)
   ============================================= */
.svc-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.svc-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.svc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,12,30,.92) 0%,
        rgba(5,12,30,.55) 40%,
        rgba(5,12,30,.25) 70%,
        transparent 100%
    );
}
.svc-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 48px;
    color: white;
}
.svc-hero-content h1 { color: white; font-size: clamp(1.8rem, 4vw, 3rem); margin: 8px 0 12px; }
.svc-hero-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 20px; max-width: 600px; }
.svc-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.svc-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,194,255,.12);
    border: 1px solid rgba(0,194,255,.3);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--aqua);
}
.breadcrumb--light { margin-bottom: 12px; }

/* Service article content */
.service-article { line-height: 1.85; color: var(--gray-700); }
.service-article h2 { font-size: 1.6rem; font-weight: 800; color: var(--gray-900); margin: 36px 0 14px; }
.service-article h3 { font-size: 1.2rem; font-weight: 700; color: var(--gray-800); margin: 28px 0 10px; }
.service-article p { margin-bottom: 16px; }
.service-article ul { padding-left: 20px; margin-bottom: 16px; }
.service-article ul li { margin-bottom: 8px; }
.service-article strong { color: var(--gray-900); }

@media (max-width: 768px) {
    .svc-hero { height: 360px; }
    .svc-hero-badges { gap: 8px; }
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-section { background: var(--gray-50); }
.services-section .section-header h2 { color: var(--gray-900); }
.services-section .section-header p { color: var(--gray-600); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.services-grid--large {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.service-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy);
    transition: transform .35s ease, box-shadow .35s ease;
    animation-delay: var(--delay, 0s);
    text-decoration: none;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,.35);
}

/* Photo */
.sc-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
    display: block;
    flex-shrink: 0;
}
.service-card:hover .sc-photo { transform: scale(1.04); }

/* No overlay needed */
.sc-overlay { display: none; }

/* Text body below image */
.sc-body {
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.sc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(0,194,255,.12);
    border: 1px solid rgba(0,194,255,.3);
    border-radius: 10px;
    color: var(--aqua);
    font-size: .9rem;
    transition: background .3s, color .3s;
}
.service-card:hover .sc-icon {
    background: var(--aqua);
    color: #fff;
    border-color: var(--aqua);
}

.sc-title {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.sc-desc {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.sc-link {
    font-size: .8rem;
    font-weight: 600;
    color: var(--aqua);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    padding-top: 4px;
    transition: gap .25s;
}
.service-card:hover .sc-link { gap: 9px; }

/* =============================================
   WHY SECTION
   ============================================= */
.why-section { background: white; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-intro {
    color: var(--gray-600);
    margin-bottom: 36px;
    font-size: 1.05rem;
}
.why-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.why-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(0,82,204,.1), rgba(0,194,255,.12));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0052cc;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.why-item h4 { margin-bottom: 4px; }
.why-item p { font-size: .9rem; color: var(--gray-600); }

/* Why visual cards */
.why-visual { position: relative; height: 420px; }
.why-card-stack { position: relative; height: 100%; }

.why-card-big {
    position: absolute;
    top: 20%; left: 10%;
    width: 75%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-xl);
    padding: 40px;
    color: white;
    box-shadow: var(--shadow-lg);
}
.why-card-big .why-card-icon {
    width: 56px; height: 56px;
    background: rgba(0,194,255,.15);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--aqua);
    margin-bottom: 16px;
}
.why-card-big span { font-weight: 700; font-size: 1.2rem; display: block; margin-bottom: 8px; }
.why-card-big p { font-size: .85rem; color: rgba(255,255,255,.6); }

.why-card-sm {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: .9rem;
    box-shadow: var(--shadow-md);
    color: var(--gray-800);
}
.why-card-sm i { color: var(--aqua); font-size: 1.1rem; }
.why-card-sm.top-right { top: 5%; right: 0; }
.why-card-sm.bottom-left { bottom: 5%; left: 0; }

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section { background: var(--gray-50); }
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}
.process-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 0 16px;
}
.step-number {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0,194,255,.12);
    line-height: 1;
    margin-bottom: -8px;
}
.step-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #0052cc, var(--aqua));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(0,82,204,.35);
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }
.process-connector {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--aqua), #0052cc);
    margin-top: 88px;
    position: relative;
}
.process-connector::after {
    content: '';
    position: absolute;
    right: -6px; top: -4px;
    border: 5px solid transparent;
    border-left: 8px solid #0052cc;
}

/* =============================================
   VIDEO SPLIT SECTION
   ============================================= */
.video-split-section {
    background: var(--navy);
    padding: 80px 0;
}
.video-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.video-split-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.video-split-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.video-split-text p {
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    line-height: 1.7;
}
.btn-aqua {
    background: var(--aqua);
    color: var(--navy);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}
.btn-aqua:hover { background: #00a8d9; color: #fff; }
.video-split-player {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 32px 80px rgba(0,0,0,.5);
}
.split-video {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
}

/* About page video block */
.about-video-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.about-video {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
}

@media (max-width: 768px) {
    .video-split-grid { grid-template-columns: 1fr; gap: 32px; }
    .btn-aqua { align-self: stretch; justify-content: center; }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--navy); }
.testimonials-section .section-label { color: var(--aqua); }
.testimonials-section h2 { color: white; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--trans);
}
.testimonial-card:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-4px);
    border-color: rgba(0,194,255,.2);
}
.stars { color: #fbbf24; margin-bottom: 16px; font-size: .9rem; display: flex; gap: 3px; }
.t-content {
    color: rgba(255,255,255,.8);
    font-size: .95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.t-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #0052cc, var(--aqua));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}
.t-author strong { display: block; color: white; font-size: .95rem; }
.t-author span { color: rgba(255,255,255,.5); font-size: .82rem; }

/* =============================================
   REFERENCES
   ============================================= */
.references-section { background: white; }
.references-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.references-inner {
    display: flex;
    gap: 40px;
    animation: scroll-track 20s linear infinite;
    width: max-content;
}
.ref-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 16px 24px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    flex-shrink: 0;
}
.ref-logo img { max-height: 40px; filter: grayscale(1); opacity: .6; transition: var(--trans); }
.ref-logo:hover img { filter: none; opacity: 1; }
.ref-name-text {
    font-weight: 700;
    font-size: .9rem;
    color: var(--gray-600);
    white-space: nowrap;
}
@keyframes scroll-track {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* References page grid */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}
.ref-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--trans);
    min-height: 100px;
}
.ref-card:hover { border-color: var(--aqua); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ref-name-large { font-weight: 700; font-size: 1rem; color: var(--navy); text-align: center; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background: var(--gray-50); }
.cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,194,255,.15) 0%, transparent 60%);
}
.cta-text h2 { color: white; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.6); }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section { background: white; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-img-block {
    position: relative;
    height: 460px;
}
.about-img-main {
    width: 85%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img-placeholder {
    font-size: 5rem;
    color: rgba(255,255,255,.15);
}
.about-img-placeholder i { display: block; }
.about-badge-float {
    position: absolute;
    bottom: 20px; right: 0;
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.badge-num {
    display: block;
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.badge-lbl {
    font-size: .8rem;
    color: var(--gray-600);
    font-weight: 500;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin: 36px 0;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}
.a-stat span {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.a-stat em { font-size: .82rem; color: var(--gray-600); font-style: normal; margin-top: 4px; display: block; }

/* Values section */
.values-section { background: var(--gray-50); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.value-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--trans);
    text-align: center;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,194,255,.2); }
.value-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(0,82,204,.1), rgba(0,194,255,.12));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: #0052cc;
    margin: 0 auto 20px;
    transition: var(--trans);
}
.value-card:hover .value-icon { background: linear-gradient(135deg, #0052cc, var(--aqua)); color: white; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

/* =============================================
   SERVICE DETAIL
   ============================================= */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.service-detail-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-xl);
    padding: 48px;
    color: white;
    margin-bottom: 40px;
    text-align: center;
}
.service-detail-icon {
    width: 80px; height: 80px;
    background: rgba(0,194,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--aqua);
    margin: 0 auto 20px;
}
.service-detail-hero h2 { color: white; margin-bottom: 12px; }
.service-short-desc { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700, #374151);
    margin-bottom: 48px;
}

/* Sidebar */
.sidebar-cta-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sidebar-cta-card h4 { color: var(--navy); margin-bottom: 4px; }
.sidebar-cta-card p { font-size: .88rem; color: var(--gray-600); margin-bottom: 4px; }

.sidebar-other-services {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.sidebar-other-services h4 { color: var(--navy); margin-bottom: 16px; }
.sidebar-other-services li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    font-size: .9rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--trans);
}
.sidebar-other-services li:last-child a { border-bottom: none; }
.sidebar-other-services li a:hover { color: var(--navy); padding-left: 4px; }
.sidebar-other-services li a i { color: var(--aqua); font-size: .75rem; }

/* Gallery in service detail */
.service-gallery h3 { margin-bottom: 20px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-200);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-page-section { background: white; }
.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 600;
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
    transition: var(--trans);
}
.filter-btn.active, .filter-btn:hover {
    border-color: var(--aqua);
    color: var(--navy);
    background: rgba(0,194,255,.08);
}
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--trans);
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-card-img {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--gray-100);
}
.gallery-card-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--trans);
    color: white;
    font-size: 1.5rem;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-title {
    padding: 12px 16px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--gray-700, #374151);
}
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-400);
}
.empty-state i { font-size: 4rem; margin-bottom: 20px; display: block; }
.empty-state h3 { color: var(--gray-600); margin-bottom: 12px; }
.empty-state p { margin-bottom: 24px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--gray-50); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.contact-info h2 { margin: 8px 0 16px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 36px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ci-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(0,82,204,.1), rgba(0,194,255,.12));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: #0052cc;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: .85rem; color: var(--gray-400); font-weight: 600; margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span { color: var(--gray-800); font-weight: 500; font-size: .95rem; }
.contact-info-item a:hover { color: #0052cc; }

/* Contact form */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}
.contact-form h3 { color: var(--navy); margin-bottom: 28px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}
.form-group label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-800);
}
.form-group .req { color: var(--red); }
.form-group input,
.form-group textarea {
    padding: 13px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--trans);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--aqua);
    background: white;
    box-shadow: 0 0 0 4px rgba(0,194,255,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.has-error input,
.form-group.has-error textarea { border-color: var(--red); }
.field-error { font-size: .8rem; color: var(--red); }

.alert-success {
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.3);
    border-radius: var(--radius-md);
    padding: 16px;
    color: #15803d;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: .92rem;
    font-weight: 500;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #151923;
    color: rgba(255,255,255,.55);
}

/* Main footer area */
.footer-main {
    padding: 64px 0 56px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1.3fr;
    gap: 48px;
}

/* Column base */
.fc { display: flex; flex-direction: column; }

/* Column title — left accent bar like screenshot */
.fc-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 22px;
    padding-left: 14px;
    border-left: 3px solid var(--aqua);
    line-height: 1.2;
}

/* Link list */
.fc-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.fc-list li a {
    font-size: .88rem;
    color: rgba(255,255,255,.5);
    transition: var(--trans);
    display: inline-block;
}
.fc-list li a:hover { color: rgba(255,255,255,.9); }

/* "Tüm Bölgeler →" / "Tüm Hizmetlerimiz →" */
.fc-more a {
    color: var(--aqua) !important;
    font-weight: 600;
    font-size: .86rem;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.fc-more a:hover { gap: 8px; }

/* Contact column */
.footer-phone {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--aqua);
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 8px;
    transition: var(--trans);
}
.footer-phone:hover { color: var(--aqua-glow); }

.footer-address {
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 20px;
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 100px;
    padding: 11px 22px;
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    width: fit-content;
    transition: var(--trans);
    margin-bottom: 20px;
}
.footer-wa-btn i { color: #25D366; font-size: 1.1rem; }
.footer-wa-btn:hover {
    border-color: #25D366;
    color: white;
    background: rgba(37,211,102,.08);
}

.footer-hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .84rem;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.45);
}
.hours-time {
    color: var(--aqua);
    font-weight: 700;
    font-size: .9rem;
}

/* Bottom bar */
.footer-bottom {
    padding: 18px 0;
    font-size: .8rem;
    color: rgba(255,255,255,.25);
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: rgba(255,255,255,.25);
    transition: var(--trans);
    font-size: .8rem;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px 48px; }
}
@media (max-width: 640px) {
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .footer-main { padding: 48px 0 40px; }
    .footer-phone { font-size: 1.35rem; }
    .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 400px) {
    .footer-cols { grid-template-columns: 1fr; }
}

/* =============================================
   MOBILE CTA BAR
   ============================================= */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    height: 60px;
}
.mobile-cta-call,
.mobile-cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    height: 100%;
    font-weight: 700;
    font-size: .92rem;
    color: white;
    transition: var(--trans);
}
.mobile-cta-call {
    background: linear-gradient(135deg, #0052cc, #0070e0);
}
.mobile-cta-whatsapp { background: var(--green-wa); }

/* WhatsApp Float (desktop) */
.wa-float {
    display: none;
    position: fixed;
    bottom: 32px; right: 32px;
    width: 56px; height: 56px;
    background: var(--green-wa);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 990;
    box-shadow: 0 8px 24px rgba(37,211,102,.45);
    transition: var(--trans);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,.55); }

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
    transition-delay: var(--delay, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .why-grid,
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-visual { height: 300px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .cta-box { flex-direction: column; text-align: center; padding: 48px 32px; }
    .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .section { padding: 72px 0; }

    .main-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--navy); padding: 24px; overflow-y: auto; }
    .main-nav.open { display: block; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-list > li > a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; font-size: 1rem; }
    .dropdown-menu { position: static; opacity: 1; pointer-events: all; transform: none; background: rgba(255,255,255,.04); box-shadow: none; border: none; border-radius: 0; padding-left: 16px; display: none; }
    .has-dropdown.open .dropdown-menu { display: block; }

    .hamburger { display: flex; }
    .header-cta { display: none; }
    .wa-float { display: none; }
    .mobile-cta-bar { display: flex; }

    body { padding-bottom: 60px; }

    .hero-split { flex-direction: column; padding: 40px 0 20px; gap: 32px; }
    .hero-content { flex: none; max-width: 100%; }
    .hero-visual { flex: none; max-width: 100%; width: 100%; }
    .hero-slider { max-width: 100%; aspect-ratio: 4/3; }
    .hero-edge-fade--left { display: none; }
    .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.8rem; }

    .process-steps { flex-direction: column; align-items: center; gap: 32px; }
    .process-connector { width: 2px; height: 40px; margin: 0; }
    .process-connector::after { bottom: -6px; right: -4px; top: auto; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 8px solid #0052cc; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .references-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn-lg { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 60px; height: 1px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   DISTRICT PAGES
   ============================================= */

/* Districts index — stats bar */
.districts-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 28px 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.d-stat { text-align: center; flex: 1; min-width: 100px; }
.d-stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--aqua);
    line-height: 1;
}
.d-stat-lbl { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 6px; display: block; }
.d-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* Search */
.district-search-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto 48px;
}
.district-search {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--trans);
    background: white;
}
.district-search:focus { border-color: var(--aqua); box-shadow: 0 0 0 4px rgba(0,194,255,.1); }
.district-search-icon {
    position: absolute;
    right: 18px; top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

/* Districts grid */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.district-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--trans);
}
.district-card:hover {
    border-color: rgba(0,194,255,.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.district-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 22px 14px;
    border-bottom: 1px solid var(--gray-100);
}
.district-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #0052cc, var(--aqua));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: .9rem;
    flex-shrink: 0;
}
.district-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
}

.district-services-list {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.district-services-list li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    font-size: .84rem;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: var(--trans);
    font-weight: 500;
}
.district-services-list li a:hover {
    background: rgba(0,82,204,.06);
    color: #0052cc;
    padding-left: 14px;
}
.district-services-list li a i {
    color: var(--aqua);
    font-size: .78rem;
    width: 14px;
    flex-shrink: 0;
}

/* No results */
.no-results {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--gray-400);
    font-size: .95rem;
    text-align: center;
    gap: 12px;
}
.no-results i { font-size: 3rem; display: block; }

/* District show page */
.district-page-main { min-width: 0; }

.district-hero-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-xl);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.dhc-icon {
    width: 72px; height: 72px;
    background: rgba(0,194,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--aqua);
    flex-shrink: 0;
}
.dhc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.dhc-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}
.dhc-badge i { color: var(--aqua); font-size: .75rem; }

/* Article content */
.district-article {
    font-size: .97rem;
    line-height: 1.8;
    color: var(--gray-700, #374151);
    margin-bottom: 48px;
}
.district-article h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-100);
}
.district-article h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin: 24px 0 10px;
}
.district-article h4 {
    font-size: 1.05rem;
    color: var(--gray-800);
    margin: 20px 0 8px;
}
.district-article p { margin-bottom: 14px; }
.district-article ul {
    margin: 8px 0 14px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.district-article ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--aqua);
    font-size: .9rem;
}
.district-article ul li strong { color: var(--navy); min-width: 100px; flex-shrink: 0; }

/* FAQ */
.district-faq { margin-bottom: 48px; }
.district-faq > h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--navy); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--trans);
}
.faq-item.open { border-color: rgba(0,194,255,.3); }
.faq-q {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: white;
    cursor: pointer;
    transition: var(--trans);
    font-family: var(--font-body);
}
.faq-q:hover { background: var(--gray-50); color: var(--navy); }
.faq-item.open .faq-q { color: #0052cc; background: rgba(0,82,204,.04); }
.faq-q i { transition: transform .3s; flex-shrink: 0; font-size: .75rem; color: var(--gray-400); }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--aqua); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
    padding: 0 20px 16px;
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.7;
    border-top: 1px solid var(--gray-100);
    padding-top: 12px;
}
.faq-a a { color: #0052cc; font-weight: 600; }

/* Other services in district */
.district-other-services { margin-bottom: 40px; }
.district-other-services > h3 { font-size: 1.2rem; margin-bottom: 16px; color: var(--navy); }
.dos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.dos-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: .84rem;
    font-weight: 600;
    color: var(--gray-700, #374151);
    text-align: center;
    transition: var(--trans);
}
.dos-card i { font-size: 1.2rem; color: #0052cc; }
.dos-card:hover { border-color: var(--aqua); background: rgba(0,194,255,.05); color: var(--navy); transform: translateY(-2px); }

/* Sidebar info card */
.sidebar-info-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}
.sidebar-info-card h4 { color: var(--navy); margin-bottom: 16px; }
.info-list { display: flex; flex-direction: column; gap: 12px; }
.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--gray-700, #374151);
}
.info-list li i { color: var(--aqua); width: 16px; text-align: center; flex-shrink: 0; }

/* Page hero service variant */
.page-hero--service { min-height: 280px; }

@media (max-width: 768px) {
    .districts-grid { grid-template-columns: 1fr; }
    .districts-stats { padding: 20px; gap: 16px; }
    .d-stat-divider { display: none; }
    .district-hero-card { flex-direction: column; align-items: flex-start; padding: 24px; }
    .dos-grid { grid-template-columns: repeat(2, 1fr); }
    .district-article ul li { flex-direction: column; }
}
