/* ---------- CSS VARIABLES ---------- */
:root {
    --bg-dark:       #080f18;
    --bg-panel:      #0d1a28;
    --bg-card:       #0f2035;
    --neon-blue:     #5cc8f0;
    --neon-orange:   #f59e2b;
    --neon-orange-dim: rgba(245,158,43,0.15);
    --neon-blue-dim: rgba(92,200,240,0.12);
    --text-light:    #f0f4f8;
    --text-gray:     #8da0b5;
    --white:         #ffffff;
    --success:       #22c55e;
    --danger:        #ef4444;
    --primary:       var(--neon-blue);
    --text-muted:    var(--text-gray);

    --radius-sm:   6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-pill: 999px;

    --shadow-glow-orange: 0 0 24px rgba(245,158,43,0.35);
    --shadow-glow-blue:   0 0 24px rgba(92,200,240,0.3);
    --shadow-card:        0 8px 32px rgba(0,0,0,0.4);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.65;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 15, 24, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(92,200,240,0.25);
    box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
header.scrolled {
    background: rgba(8, 15, 24, 0.473);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px;
    max-width: 100%;
}

.header-left {
    flex: 1;
}

.header-logo {
    flex: 1;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    white-space: nowrap;
}

.header-logo i {
    color: var(--neon-orange);
}

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

/* ---------- BREAKER SWITCH (Menu) ---------- */
.breaker-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.breaker-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--neon-orange);
    text-align: right;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breaker-switch {
    width: 42px;
    height: 54px;
    background: linear-gradient(180deg, #d0d5da, #b8bec4);
    border-radius: 5px;
    border: 2px solid #8a9099;
    position: relative;
    cursor: pointer;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.4);
    transition: var(--transition);
    flex-shrink: 0;
}

.breaker-lever {
    width: 30px;
    height: 22px;
    background: linear-gradient(to bottom, #555, #222);
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(35deg);
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.68,-0.55,0.265,1.55);
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

.indicator {
    width: 9px;
    height: 9px;
    background: var(--danger);
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 0 6px var(--danger);
}

.breaker-switch.active {
    border-color: var(--neon-blue);
    box-shadow: 0 0 14px rgba(92,200,240,0.5), inset 0 0 6px rgba(0,0,0,0.3);
}

.breaker-switch.active .breaker-lever {
    transform: translate(-50%, -100%) rotateX(-20deg);
    background: linear-gradient(to bottom, var(--neon-orange), #c47000);
}

.breaker-switch.active .indicator {
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
}

/* ============================================================
   NAV MENU (Slide-in)
   ============================================================ */
.nav-menu {
    position: fixed;
    top: 83px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 83px);
    background: rgba(8, 15, 24, 0.98);
    backdrop-filter: blur(20px);
    padding: 44px 36px;
    border-left: 2px solid var(--neon-orange);
    box-shadow: -6px 0 32px rgba(0,0,0,0.6);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu.open {
    right: 0;
}

.nav-menu ul li {
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 8px;
}

.nav-menu a {
    font-size: 1.55rem;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 2px;
    display: block;
    padding: 4px 0;
}

.nav-menu a:hover {
    color: var(--neon-orange);
    padding-left: 12px;
    letter-spacing: 3px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    background:
        linear-gradient(160deg, rgba(8,15,24,0.88) 40%, rgba(13,26,40,0.92) 100%),
        url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=1950&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Subtle animated grid overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(92,200,240,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92,200,240,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

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

.hero-main-image {
    width: 480px;
    max-width: 90%;
    height: auto;
    margin: 0 auto 32px;
    filter: drop-shadow(0 0 32px rgba(245,158,43,0.25));
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-gray);
    max-width: 680px;
    margin: 0 auto 36px;
    letter-spacing: 0.5px;
    line-height: 1.75;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--neon-orange);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow-orange);
}

.btn-primary:hover {
    background: #ffc654;
    transform: translateY(-3px);
    box-shadow: 0 0 32px rgba(245,158,43,0.6);
    color: var(--bg-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
}

.btn-outline:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-3px);
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features {
    padding: 64px 0;
    background: var(--bg-panel);
    border-top: 1px solid rgba(92,200,240,0.1);
    border-bottom: 1px solid rgba(92,200,240,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.feature-item {
    padding: 28px 22px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    text-align: center;
    background: rgba(255,255,255,0.02);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--neon-blue);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: center;
}

.feature-item:hover {
    border-color: rgba(92,200,240,0.3);
    background: var(--neon-blue-dim);
    transform: translateY(-4px);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 16px;
    display: block;
}

.feature-item h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* GPS feature special styling */
.feature-item.gps-feature {
    border-color: rgba(245,158,43,0.25);
    background: var(--neon-orange-dim);
}

.feature-item.gps-feature::before {
    background: var(--neon-orange);
}

.feature-item.gps-feature:hover {
    border-color: rgba(245,158,43,0.5);
}

/* ============================================================
   SECTION TITLE (Shared)
   ============================================================ */
.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-title h2 {
    color: var(--white);
    font-size: 2.8rem;
    letter-spacing: 3px;
}

.section-title .line {
    width: 80px;
    height: 3px;
    background: var(--neon-orange);
    margin: 14px auto 18px;
    border-radius: 2px;
    box-shadow: var(--shadow-glow-orange);
}

.section-title p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* ============================================================
   CABINET / EMERGENCY SECTION
   ============================================================ */
.interactive-section {
    padding: 80px 0;
    background: var(--bg-dark);
    text-align: center;
    overflow: hidden;
}

.interactive-section h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.interactive-section > .container > p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.cabinet-wrapper {
    width: 280px;
    height: 380px;
    margin: 48px auto 0;
    perspective: 1000px;
    position: relative;
    cursor: pointer;
}

.cabinet {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.cabinet-interior {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1a2a33;
    border: 4px solid #2e4555;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
    border-radius: var(--radius-sm);
}

.wires {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.wire {
    width: 5px;
    height: 80px;
    background: var(--danger);
    border-radius: 3px;
    box-shadow: 0 0 6px currentColor;
}

.wire:nth-child(2) { background: var(--neon-blue); }
.wire:nth-child(3) { background: #c6d83a; }

.interior-msg {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: 1px;
}

.cabinet-door {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #cfd8dc, #a9b8c0);
    border: 2px solid #78909c;
    transform-origin: left;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 6px 6px 20px rgba(0,0,0,0.6);
    color: #2d3d47;
    z-index: 2;
    border-radius: var(--radius-sm);
}

.cabinet-wrapper.open .cabinet-door {
    transform: rotateY(-162deg);
}

.warning-sign {
    width: 70px;
    height: 62px;
    background: #ffe000;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 6px;
    margin-bottom: 12px;
}

.warning-sign i { font-size: 26px; color: #1a1a00; }

.door-handle {
    width: 12px;
    height: 52px;
    background: linear-gradient(to bottom, #607d8b, #37474f);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.click-hint {
    position: absolute;
    bottom: 14px;
    font-size: 11px;
    color: #546e7a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-opacity 2s ease-in-out infinite;
}

@keyframes pulse-opacity {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
    background: var(--bg-panel);
    padding: 88px 0;
}

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

.service-card {
    background: rgba(255,255,255,0.025);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(92,200,240,0.3), transparent);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.05);
    border-bottom-color: var(--neon-orange);
    box-shadow: var(--shadow-card), 0 0 20px rgba(245,158,43,0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    color: var(--neon-orange);
    margin-bottom: 18px;
    font-size: 2rem !important;
}

.service-card h3 {
    color: var(--neon-blue);
    font-size: 1.55rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ============================================================
   GALLERY / CAROUSEL
   ============================================================ */
.showcase-section {
    padding: 88px 0;
    background: var(--bg-dark);
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-md);
}

.carousel-track {
    display: flex;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.carousel-slide:hover img {
    transform: scale(1.04);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(8,15,24,0.95) 0%, rgba(8,15,24,0.4) 60%, transparent 100%);
    padding: 32px 24px 20px;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

/* Arrow buttons */
.carousel-arrow {
    flex-shrink: 0;
    z-index: 10;
    background: rgba(8,15,24,0.85);
    border: 2px solid var(--neon-orange);
    color: var(--neon-orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-glow-orange);
    backdrop-filter: blur(6px);
    margin: 0 10px;
}

.carousel-arrow:hover {
    background: var(--neon-orange);
    color: var(--bg-dark);
    transform: scale(1.1);
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--neon-orange);
    box-shadow: var(--shadow-glow-orange);
    transform: scale(1.3);
}

/* ============================================================
   AREA / WHERE WE WORK
   ============================================================ */
.area {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(160deg, var(--bg-dark) 0%, #0b1f36 100%);
    position: relative;
    overflow: hidden;
}

.area::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(92,200,240,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.area h2 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.city-tag {
    background: transparent;
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(92,200,240,0.4);
    color: var(--neon-blue);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.city-tag:hover {
    background: var(--neon-blue-dim);
    border-color: var(--neon-blue);
    transform: translateY(-2px);
}

.more-areas-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 28px;
    letter-spacing: 0.5px;
}

.more-areas-text span {
    color: var(--neon-orange);
    font-weight: 700;
}

.travel-pricing {
    margin: 44px auto 0;
    max-width: 560px;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(245,158,43,0.25);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    color: var(--text-gray);
    box-shadow: var(--shadow-card);
}

.travel-pricing p {
    margin: 14px 0 0;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.travel-pricing strong {
    color: var(--white);
}

.travel-pricing i {
    color: var(--neon-orange);
    margin-right: 8px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--neon-orange);
    color: #fff;
    padding: 9px 22px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    box-shadow: var(--shadow-glow-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-badge i {
    color: #fff;
    margin-right: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    padding: 88px 0;
    background: var(--bg-panel);
    border-top: 1px solid rgba(245,158,43,0.15);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
    justify-content: space-between;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 280px;
}

.info-item {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.info-item i {
    width: 52px;
    height: 52px;
    background: var(--neon-blue-dim);
    color: var(--neon-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border: 1px solid rgba(92,200,240,0.3);
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 4px;
    color: var(--white);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--text-gray);
    font-size: 1rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-orange);
    box-shadow: 0 0 0 3px rgba(245,158,43,0.1);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #050c14;
    color: var(--text-gray);
    padding: 32px 0;
    text-align: center;
    font-size: 0.88rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.5px;
}

/* ============================================================
   MAP PAGE
   ============================================================ */
.map-header {
    text-align: center;
    padding: 44px 20px 32px;
    background: var(--bg-panel);
    border-bottom: 2px solid var(--neon-orange);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1000;
}

.map-header h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 6px;
}

.map-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto Condensed', sans-serif;
    transition: var(--transition);
}

.status-active {
    background: var(--neon-orange);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow-orange);
}

.status-inactive {
    background: rgba(255,255,255,0.05);
    color: var(--text-gray);
    border: 1px solid rgba(255,255,255,0.12);
}

#map {
    height: 62vh;
    width: 100%;
    background: var(--bg-dark);
    border-bottom: 2px solid var(--neon-orange);
}

.back-button-container {
    text-align: center;
    padding: 44px 20px;
    background: var(--bg-dark);
}

.pulse-marker {
    background: var(--neon-orange);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid var(--white);
    box-shadow: 0 0 10px var(--neon-orange), 0 0 20px var(--neon-orange);
    animation: pulse-map 2.5s ease-in-out infinite;
}

@keyframes pulse-map {
    0%, 100% { transform: scale(1); box-shadow: 0 0 8px var(--neon-orange); }
    50% { transform: scale(1.3); box-shadow: 0 0 20px var(--neon-orange); }
}

/* ============================================================
   LOGIN OVERLAY (map page)
   ============================================================ */
#login-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.login-box {
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid rgba(92,200,240,0.2);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 0 40px rgba(92,200,240,0.1), var(--shadow-card);
    max-width: 440px;
    width: 90%;
}

.login-box h1 {
    color: var(--neon-blue);
    margin-bottom: 12px;
    font-size: 2rem;
}

.login-box p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.login-box input {
    width: 100%;
    padding: 13px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--neon-blue);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    margin-bottom: 16px;
    outline: none;
    text-align: center;
    transition: var(--transition);
}

.login-box input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 12px rgba(92,200,240,0.2);
}

.login-box button {
    padding: 12px 32px;
    background: var(--neon-blue);
    color: var(--bg-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-box button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-blue);
}

#error-msg {
    color: var(--danger);
    margin-top: 14px;
    display: none;
    font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
}


@media (max-width: 768px) {
    .hero-content p { font-size: 1.05rem; }
    .hero-main-image { width: 85vw; }
    .cabinet-wrapper { transform: scale(0.9); }
    .contact-wrapper { flex-direction: column; }
    .section-title h2 { font-size: 2.2rem; }
    .hero { min-height: 75vh; }
    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .header-logo { font-size: 1.6rem; }
    .btn { font-size: 1rem; padding: 12px 24px; }
}
