/* ── SELF-HOSTED FONTS ─────────────────────── */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                   U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                   U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                   U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
    --bg: #080c18;
    --bg-card: #0d1526;
    --bg-card2: #111d35;
    --blue: #1b4c7a;
    --blue-bright: #2a82d4;
    --blue-glow: rgba(42, 130, 212, 0.18);
    --border: rgba(42, 130, 212, 0.22);
    --white: #fff;
    --text: rgba(255,255,255,0.88);
    --muted: rgba(255,255,255,0.5);
    --radius: 12px;
    --container: 1200px;
    --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HEADER ────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(8, 12, 24, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    height: var(--nav-height);
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
    padding: 9px 22px;
    background: var(--blue);
    color: var(--white) !important;
    border-radius: 6px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--blue-bright) !important; color: var(--white) !important; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
    font-size: 1.4rem;
}

/* ── HERO ──────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    filter: brightness(0.55) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 80%, rgba(42, 130, 212, 0.18) 0%, transparent 70%),
        linear-gradient(180deg, rgba(8,12,24,0.3) 0%, rgba(8,12,24,0.6) 60%, rgba(8,12,24,0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 60px;
}

.hero-text {
    max-width: 620px;
    text-align: left;
}

.hero-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

/* ── HERO GLASS CARD ───────────────────────── */
.hero-card {
    background: rgba(8, 12, 24, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px;
}

.hero-card-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-bright);
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-card-hours { margin-bottom: 4px; }

.hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.875rem;
    color: var(--text);
}

.hero-card-row:last-child { border-bottom: none; }

.hero-card-row span:last-child { font-weight: 600; color: var(--white); }

.hero-card-closed span { opacity: 0.4; }

.hero-card-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 20px 0;
}

.hero-card-maps {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-bright);
    transition: opacity 0.2s;
}

.hero-card-maps:hover { opacity: 0.75; }

.hero-card-maps svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero-card-phone {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    transition: color 0.2s;
}

.hero-card-phone:hover { color: var(--blue-bright); }

.hero-card-mail {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.2s;
}

.hero-card-mail:hover { color: var(--white); }

/* ── HERO BAR ──────────────────────────────── */
.hero-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(8, 12, 24, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 2;
}

.hero-bar-grid {
    display: flex;
    align-items: center;
    padding: 18px 0;
    gap: 0;
}

.hero-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding: 0 24px;
}

.hero-bar-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--blue-bright);
}

.hero-bar-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.hero-bar-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.hero-bar-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.hero-logo {
    width: 8.5cm;
    height: auto;
    margin: 0 auto 32px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--blue-bright);
    opacity: 0.6;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-text h1 span { color: var(--blue-bright); }

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--blue-bright);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-radius: 8px;
    border: 2px solid var(--blue-bright);
    transition: all 0.2s;
    cursor: pointer;
}

.btn:hover {
    background: #3a9ae4;
    border-color: #3a9ae4;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(42, 130, 212, 0.35);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
    box-shadow: none;
}

/* ── SECTIONS ──────────────────────────────── */
.section { padding: 100px 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-bright);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue-bright);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-title span { color: var(--blue-bright); }

.section-desc {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
}

/* ── INTRO SPLIT ───────────────────────────── */
.intro { background: var(--bg); }

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    filter: brightness(0.85);
}

.intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    pointer-events: none;
}

.intro-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: var(--blue-glow);
    filter: blur(40px);
    border-radius: 50%;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue-bright);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── SERVICES ──────────────────────────────── */
.services {
    background: linear-gradient(180deg, var(--bg) 0%, #060a14 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header .section-label { justify-content: center; }
.services-header .section-desc { margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.service-card:hover {
    border-color: rgba(42, 130, 212, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(8, 12, 24, 0.6), 0 0 0 1px rgba(42,130,212,0.15);
    background: var(--bg-card2);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(42, 130, 212, 0.12);
    border: 1px solid rgba(42, 130, 212, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.25s;
}

.service-card:hover .service-icon {
    background: rgba(42, 130, 212, 0.22);
}

.service-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--blue-bright);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1.3;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── USP ───────────────────────────────────── */
.usp { background: var(--bg); }

.usp-header { text-align: center; margin-bottom: 56px; }
.usp-header .section-label { justify-content: center; }

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.usp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.25s;
}

.usp-card:hover {
    border-color: rgba(42,130,212,0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(8,12,24,0.5);
}

.usp-icon {
    width: 52px; height: 52px;
    background: rgba(42,130,212,0.1);
    border: 1px solid rgba(42,130,212,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}

.usp-icon svg { width: 22px; height: 22px; stroke: var(--blue-bright); }

.usp-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.usp-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── REVIEWS ───────────────────────────────── */
.reviews { background: var(--bg-card); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }

.review-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
    width: 40px; height: 40px;
    background: var(--blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; color: var(--white);
    flex-shrink: 0;
}

.review-name  { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.review-source { font-size: 0.75rem; color: var(--muted); }

.reviews-cta { text-align: center; }

/* ── SCROLL TO TOP ─────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: var(--blue);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, background 0.2s, transform 0.2s;
    z-index: 99;
}

.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--blue-bright); transform: translateY(-2px); }
.scroll-top svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── FADE IN ANIMATION ─────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── NAV ACTIVE ────────────────────────────── */
.nav-links a.active { color: var(--blue-bright); }

/* ── MAPS 2-CLICK ──────────────────────────── */
.maps-consent {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 40px 24px;
    text-align: center;
}

.maps-consent svg { width: 40px; height: 40px; stroke: var(--blue-bright); opacity: 0.7; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.maps-consent p { font-size: 0.85rem; color: var(--muted); max-width: 280px; line-height: 1.6; }
.maps-consent .btn { margin-top: 4px; }

.maps-iframe { display: none; width: 100%; height: 280px; border: 0; border-radius: var(--radius); }

@media (max-width: 960px) {
    .usp-grid    { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .usp-grid { grid-template-columns: 1fr; }
    .scroll-top { bottom: 16px; right: 16px; }
}

/* ── GALLERY ───────────────────────────────── */
.gallery { background: var(--bg-card); }

.masonry-grid {
    columns: 3;
    column-gap: 16px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 8px;
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 24, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 8px;
}

.masonry-overlay svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.masonry-item:hover img { transform: scale(1.04); }
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* ── LIGHTBOX ──────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(4, 7, 15, 0.96);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-inner {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
}

.lightbox-close {
    top: 20px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
}

.lightbox-prev, .lightbox-next {
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex; align-items: center; justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(42,130,212,0.3); border-color: var(--blue-bright); }

.lightbox-counter {
    position: fixed;
    bottom: 24px; left: 50%; transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

@media (max-width: 900px) { .masonry-grid { columns: 2; } }
@media (max-width: 480px) { .masonry-grid { columns: 1; } .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; } }

/* ── HOURS ─────────────────────────────────── */
.hours {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hours-table {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.hours-row {
    display: contents;
}

.hours-row span {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.hours-row:last-child span { border-bottom: none; }

.hours-row .hours-day {
    color: var(--muted);
    background: rgba(255,255,255,0.02);
}

.hours-row .hours-time {
    color: var(--white);
    font-weight: 600;
    text-align: right;
    background: rgba(42, 130, 212, 0.05);
}

.hours-note {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(42, 130, 212, 0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
}

/* ── CONTACT ───────────────────────────────── */
.contact { background: var(--bg); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-card-header {
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
    background: rgba(42, 130, 212, 0.06);
}

.contact-card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.contact-card-body { padding: 28px 32px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-item-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgba(42, 130, 212, 0.12);
    border: 1px solid rgba(42, 130, 212, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--blue-bright);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
}

.contact-item-text a {
    color: var(--blue-bright);
    transition: opacity 0.2s;
}

.contact-item-text a:hover { opacity: 0.75; }

.contact-item-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s;
}

.social-link:hover {
    background: rgba(42, 130, 212, 0.15);
    border-color: var(--blue-bright);
    color: var(--white);
}

.social-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.map-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    background: rgba(42, 130, 212, 0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-bright);
    transition: all 0.2s;
    cursor: pointer;
}

.map-link-btn:hover {
    background: rgba(42, 130, 212, 0.2);
    border-color: var(--blue-bright);
}

.map-link-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-form-side {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-form-side h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form-side p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue-bright);
    background: rgba(42, 130, 212, 0.06);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: #0d1526; color: var(--white); }

/* ── FOOTER ────────────────────────────────── */
.footer {
    background: #04070f;
    border-top: 1px solid var(--border);
    padding: 36px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo img { height: 32px; }

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    font-size: 0.82rem;
    color: var(--muted);
    transition: color 0.2s;
    letter-spacing: 0.05em;
}

.footer-nav a:hover { color: var(--white); }

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

.footer-credit {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
    text-align: center;
}

.footer-credit:hover { color: var(--blue-bright); }

/* ── INNER PAGES ───────────────────────────── */
.page-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 120px 0 60px;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
}

.page-content {
    padding: 72px 0;
    max-width: 800px;
}

.page-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 40px 0 12px;
    color: var(--blue-bright);
}

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

.page-content p { margin-bottom: 14px; font-size: 0.95rem; color: var(--muted); line-height: 1.75; }
.page-content a { color: var(--blue-bright); text-decoration: underline; }
.page-content ul { margin: 12px 0 14px 20px; list-style: disc; }
.page-content ul li { font-size: 0.95rem; margin-bottom: 6px; color: var(--muted); line-height: 1.6; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 960px) {
    .hero-body { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .hero-bar-grid { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 0; }
    .hero-bar-sep { display: none; }
    .hero-bar-item { padding: 0; }
    .intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .hours-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-menu-open .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: rgba(8,12,24,0.98);
        padding: 24px;
        gap: 20px;
        border-top: 1px solid var(--border);
    }
    .services-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .intro-stats { grid-template-columns: 1fr 1fr; }
    .hero { align-items: flex-start; padding-top: calc(var(--nav-height) + 32px); }
    .hero-content { padding-top: 0; width: 100%; }
    .hero-logo { width: 6cm; }
}
