/* ==========================================
   STEKLARSTVO PRIMOŽ ZERBO S.P.
   Modern High-Converting Sales Typography & Heritage 1989
   Ultra-Premium 3-Column Primorska Regional SEO Coverage
   ROCK-SOLID MOBILE INTRO OVERLAY (No Top/Bottom Card Leak!)
   ========================================== */

:root {
    --bg-primary: #06080c;
    --bg-secondary: #0d1017;
    --bg-card: rgba(16, 22, 32, 0.85);
    --bg-card-hover: rgba(24, 32, 48, 0.95);

    --accent-silver: #e2e8f0;
    --accent-silver-light: #ffffff;
    --accent-silver-dark: #64748b;
    --silver-gradient: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #64748b 100%);
    --silver-glow: 0 0 25px rgba(255, 255, 255, 0.25);

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --border-color: rgba(226, 232, 240, 0.18);
    --border-subtle: rgba(255, 255, 255, 0.08);

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

    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

body.intro-active {
    overflow: hidden !important;
    touch-action: none;
}

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

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

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

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

.silver-gradient-text {
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.silver-divider {
    width: 60px;
    height: 3px;
    background: var(--silver-gradient);
    margin: 16px auto 24px;
    border-radius: 2px;
}

.section {
    padding: clamp(60px, 8vw, 100px) 0;
    position: relative;
}

.sub-title {
    font-family: var(--font-heading);
    font-size: clamp(0.72rem, 2vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-silver);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    font-size: clamp(0.92rem, 2vw, 1.05rem);
}

/* ==========================================
   PERFECTLY ALIGNED BUTTON SYSTEM
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    white-space: nowrap;
    vertical-align: middle;
    width: auto;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--silver-gradient);
    color: #06080c;
    box-shadow: 0 4px 20px rgba(226, 232, 240, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(226, 232, 240, 0.12);
    border-color: var(--accent-silver);
    color: var(--accent-silver-light);
}

.btn-block {
    width: 100%;
}

/* ==========================================
   3D REALISTIC GLASS CUT INTRO (FULLSCREEN OPAQUE SHIELD)
   ========================================== */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    z-index: 999999;
    background: #040508;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-scene-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #040508;
    perspective: 1000px;
    perspective-origin: center center;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-logo-underneath {
    position: absolute;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    padding: 0 20px;
    width: 100%;
    max-width: 560px;
    transform: translateZ(0);
}

.intro-logo-img {
    width: clamp(140px, 35vw, 230px);
    height: auto;
    filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.35));
    margin-bottom: 16px;
}

.intro-company-name {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 3.5vw, 1.55rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    line-height: 1.25;
}

.intro-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(0.68rem, 2vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--accent-silver);
    line-height: 1.4;
}

/* FROSTED GLASS HALVES ON TOP OF SOLID OPAQUE #040508 BACKGROUND */
.glass-half {
    position: absolute;
    top: -5px;
    bottom: -5px;
    width: 50.5%;
    height: calc(100% + 10px);
    z-index: 5;
    background: rgba(14, 18, 28, 0.96);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-color: rgba(226, 232, 240, 0.25);
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.glass-left { left: 0; transform-origin: left center; }
.glass-right { right: 0; transform-origin: right center; }

.glass-sheen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 45%, rgba(255, 255, 255, 0.04) 100%);
    pointer-events: none;
}

.glass-edge-bevel {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(200, 215, 235, 0.25));
}

.glass-left .glass-edge-bevel { right: 0; }
.glass-right .glass-edge-bevel { left: 0; }

.score-seam {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.score-beam {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #ffffff, rgba(203, 213, 225, 0.95), rgba(148, 163, 184, 0.7));
    box-shadow: 0 0 10px #ffffff, 0 0 20px rgba(226, 232, 240, 0.8);
    transform-origin: top center;
}

.score-spark {
    position: absolute;
    top: 0%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 14px #ffffff, 0 0 28px rgba(255, 255, 255, 0.95), 0 0 45px rgba(200, 225, 255, 0.85);
    opacity: 0;
    z-index: 12;
}

.crack-flash {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translateX(-50%);
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.45) 0%, transparent 60%);
    opacity: 0;
    pointer-events: none;
}

.skip-intro-btn {
    position: absolute;
    bottom: clamp(16px, 4vw, 36px);
    right: clamp(16px, 4vw, 36px);
    z-index: 20;
    background: rgba(18, 24, 36, 0.95);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    height: 40px;
    padding: 0 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.skip-intro-btn:hover {
    color: var(--accent-silver-light);
    border-color: var(--accent-silver);
    background: rgba(226, 232, 240, 0.15);
}

/* ==========================================
   FLOATING GLASS BAR NAVBAR
   ========================================== */
.floating-navbar-wrapper {
    position: fixed;
    top: 16px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.floating-navbar {
    pointer-events: auto;
    width: 100%;
    max-width: 1240px;
    height: 64px;
    padding: 0 24px;
    border-radius: 50px;
    background: rgba(10, 14, 22, 0.92);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(226, 232, 240, 0.22);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55), 0 0 20px rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.floating-navbar-wrapper.scrolled .floating-navbar {
    height: 58px;
    padding: 0 20px;
    background: rgba(6, 8, 12, 0.96);
    border-color: rgba(226, 232, 240, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), var(--silver-glow);
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.25));
    transition: var(--transition-smooth);
}

.floating-navbar-wrapper.scrolled .nav-logo-img {
    height: 38px;
}

.nav-heritage-tag {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent-silver-light);
    background: rgba(226, 232, 240, 0.12);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-silver-light);
}

.highlight-link {
    color: #ffffff !important;
    font-weight: 800;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--silver-gradient);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta-btn {
    background: var(--silver-gradient);
    color: #06080c;
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 800;
    height: 40px;
    padding: 0 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(226, 232, 240, 0.25);
    transition: var(--transition-smooth);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(255, 255, 255, 0.45);
    filter: brightness(1.15);
}

.nav-cta-secondary {
    background: rgba(226, 232, 240, 0.12);
    color: var(--accent-silver-light);
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.nav-cta-secondary:hover {
    background: var(--silver-gradient);
    color: #06080c;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 6px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: clamp(100px, 15vh, 140px);
    padding-bottom: 60px;
    background: radial-gradient(ellipse at top right, rgba(226, 232, 240, 0.06) 0%, transparent 60%);
}

.hero-seo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 232, 240, 0.12);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--accent-silver-light);
    max-width: 100%;
}

.text-silver { color: var(--accent-silver-light); }

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(226, 232, 240, 0.04) 0%, transparent 50%),
        linear-gradient(to bottom, transparent 80%, var(--bg-primary) 100%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.hero-tag {
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 1.8vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--accent-silver);
    margin-bottom: 14px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-description {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-specs {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 30px);
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

.spec-val {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 800;
    color: var(--accent-silver-light);
}

.spec-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.spec-divider {
    width: 1px;
    height: 32px;
    background: var(--border-subtle);
}

.hero-image-frame {
    position: relative;
    border-radius: var(--border-radius);
    padding: 10px;
    background: linear-gradient(135deg, rgba(226, 232, 240, 0.18) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.hero-main-img {
    border-radius: calc(var(--border-radius) - 4px);
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hero-img-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    background: rgba(6, 8, 12, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-silver-light);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-img-badge i {
    color: var(--accent-silver);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ==========================================
   GIANT EMERGENCY BANNER SECTION
   ========================================== */
.emergency-banner-section { padding: clamp(40px, 6vw, 60px) 0; }
.emergency-banner-box {
    padding: clamp(24px, 5vw, 60px) clamp(18px, 4vw, 48px);
    background: linear-gradient(135deg, rgba(16, 22, 32, 0.95) 0%, rgba(26, 36, 52, 0.9) 100%);
    border: 2px solid rgba(226, 232, 240, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), var(--silver-glow);
    position: relative;
    overflow: hidden;
}

.banner-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 232, 240, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: clamp(0.72rem, 2vw, 0.85rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent-silver-light);
    margin-bottom: 18px;
    animation: bannerPulse 2.5s infinite ease-in-out;
    max-width: 100%;
}

@keyframes bannerPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 255, 255, 0.6); }
}

.banner-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.banner-desc { font-size: clamp(0.95rem, 2vw, 1.15rem); color: var(--text-secondary); max-width: 800px; margin: 0 auto 36px; }
.banner-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 36px; text-align: left; }
.banner-feature-item { display: flex; gap: 14px; align-items: flex-start; background: rgba(255, 255, 255, 0.03); padding: 18px; border-radius: 12px; border: 1px solid var(--border-subtle); }
.feature-icon-box { width: 44px; height: 44px; border-radius: 10px; background: rgba(226, 232, 240, 0.12); border: 1px solid var(--border-color); color: var(--accent-silver-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.banner-feature-item h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.banner-feature-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

.banner-cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.banner-cta-buttons-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn-emergency-giant {
    background: var(--silver-gradient);
    color: #06080c;
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 2.5vw, 1.15rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    height: 58px;
    padding: 0 clamp(20px, 4vw, 44px);
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 35px rgba(255, 255, 255, 0.35);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    width: auto;
    max-width: 100%;
}

.btn-emergency-giant:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 45px rgba(255, 255, 255, 0.55); filter: brightness(1.15); }

.btn-emergency-secondary {
    background: rgba(226, 232, 240, 0.12);
    color: var(--accent-silver-light);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn-emergency-secondary:hover {
    background: var(--silver-gradient);
    color: #06080c;
}

.banner-subtext { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; }
.banner-subtext i { color: var(--accent-silver); }

.highlight-service { border-color: rgba(226, 232, 240, 0.4); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--silver-glow); }
.service-badge-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(226, 232, 240, 0.15); border: 1px solid var(--border-color); padding: 4px 12px; border-radius: 20px; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 800; color: var(--accent-silver-light); margin-bottom: 12px; width: fit-content; }

/* ==========================================
   ULTRA-PREMIUM 3-COLUMN COVERAGE SECTION
   ========================================== */
.coverage-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.coverage-card-premium {
    position: relative;
    padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(16, 22, 34, 0.9) 0%, rgba(10, 14, 22, 0.95) 100%);
    border: 1px solid rgba(226, 232, 240, 0.2);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.coverage-card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.coverage-card-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 232, 240, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--silver-glow);
}

.coverage-card-premium:hover .coverage-card-glow {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
}

.coverage-header-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.coverage-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(226, 232, 240, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid var(--border-color);
    color: var(--accent-silver-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.coverage-region-tag {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--accent-silver);
    display: block;
    margin-bottom: 2px;
}

.coverage-header-box h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
}

.coverage-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.coverage-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.town-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--accent-silver-light);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    height: 32px;
    transition: var(--transition-smooth);
}

.town-tag i {
    color: var(--accent-silver);
    font-size: 0.72rem;
}

.coverage-card-premium:hover .town-tag {
    border-color: rgba(226, 232, 240, 0.25);
    background: rgba(226, 232, 240, 0.08);
}

.coverage-btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 46px;
    padding: 0 18px;
    border-radius: 8px;
    background: rgba(226, 232, 240, 0.08);
    border: 1px solid var(--border-color);
    color: var(--accent-silver-light);
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    margin-top: auto;
    transition: var(--transition-smooth);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.coverage-btn-call:hover {
    background: var(--silver-gradient);
    color: #06080c;
    border-color: var(--accent-silver);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Services, Gallery, Reviews, FAQ, Contact, Footer */
.pro-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--border-radius); backdrop-filter: blur(20px); transition: var(--transition-smooth); }
.pro-card:hover { border-color: rgba(226, 232, 240, 0.35); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--silver-glow); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.service-card { overflow: hidden; display: flex; flex-direction: column; }
.service-img-box { height: 190px; overflow: hidden; }
.service-img-box img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.service-card:hover .service-img-box img { transform: scale(1.08); }
.service-content { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.service-content h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.service-content p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 18px; flex-grow: 1; }

.service-link {
    color: var(--accent-silver-light);
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.service-link:hover { color: var(--accent-silver); gap: 12px; }

/* Filter Buttons Layout */
.filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    height: 38px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--silver-gradient);
    color: #06080c;
    border-color: var(--accent-silver);
    font-weight: 800;
}

.real-work-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(226, 232, 240, 0.12);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--accent-silver-light);
    margin-bottom: 12px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    height: 290px;
    border-radius: 12px;
    cursor: pointer;
    background: #090c12;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-real-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: rgba(6, 8, 12, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.3);
    color: var(--accent-silver-light);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.gallery-real-tag i {
    color: var(--accent-silver);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(4, 5, 8, 0.96) 0%, rgba(4, 5, 8, 0.6) 60%, transparent 100%);
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gallery-card:hover {
    border-color: rgba(226, 232, 240, 0.45);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), var(--silver-glow);
    transform: translateY(-4px);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.gallery-overlay p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.gallery-zoom-hint {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-silver);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

/* ==========================================
   LIGHTBOX MODAL
   ========================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 8, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.lightbox-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: #0a0e16;
    border: 1px solid rgba(226, 232, 240, 0.3);
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), var(--silver-glow);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(6, 8, 12, 0.8);
    border: 1px solid var(--border-color);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    background: var(--silver-gradient);
    color: #06080c;
    transform: rotate(90deg);
}

.lightbox-img-wrapper {
    background: #040508;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    max-height: 600px;
    overflow: hidden;
}

.lightbox-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 560px;
}

.lightbox-info {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lightbox-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(226, 232, 240, 0.12);
    border: 1px solid var(--border-color);
    color: var(--accent-silver-light);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 14px;
}

.lightbox-info h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 12px;
}

.lightbox-info p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.lightbox-actions {
    margin-top: auto;
}

@media (max-width: 768px) {
    .lightbox-container {
        grid-template-columns: 1fr;
        max-height: 85vh;
    }
    .lightbox-img-wrapper {
        min-height: 240px;
        max-height: 320px;
    }
    .lightbox-info {
        padding: 20px 16px;
    }
}

.rating-overview .big-score { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; color: var(--accent-silver-light); }
.rating-overview .stars-row { color: #f59e0b; font-size: 1.1rem; margin: 4px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card { padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.review-author-info h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-primary); }
.review-location { font-size: 0.78rem; color: var(--accent-silver); }
.review-stars { color: #f59e0b; font-size: 0.82rem; }
.review-body { font-size: 0.9rem; color: var(--text-secondary); font-style: italic; line-height: 1.55; margin-bottom: 16px; }
.review-date { font-size: 0.75rem; color: var(--text-muted); }

.faq-accordion { max-width: 860px; margin: 0 auto; padding: 8px 20px; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; padding: 18px 0; background: none; border: none; color: var(--text-primary); font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: var(--transition-smooth); gap: 12px; }
.faq-question:hover { color: var(--accent-silver-light); }
.faq-question i { font-size: 0.8rem; transition: var(--transition-smooth); flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--accent-silver); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); padding-bottom: 18px; line-height: 1.55; }

.process-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.about-logo-img { height: 95px; width: auto; margin: 0 auto 16px; filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15)); }
.about-contact-detail { font-size: 0.9rem; font-weight: 700; color: var(--accent-silver-light); margin-top: 8px; }



.footer { background: #040508; border-top: 1px solid var(--border-subtle); padding: 50px 0 24px; }
.footer-container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-logo-img { height: 46px; margin-bottom: 14px; filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15)); }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 320px; line-height: 1.5; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-heading); font-size: 0.98rem; font-weight: 700; color: var(--accent-silver); margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--accent-silver-light); }
.footer-contact p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.04); font-size: 0.78rem; color: var(--text-muted); }

/* ==========================================
   TABLET RESPONSIVE BREAKPOINT (max-width: 992px)
   ========================================== */
@media (max-width: 992px) {
    .coverage-grid-3 { grid-template-columns: 1fr; }
    .floating-navbar-wrapper { top: 10px; padding: 0 10px; }
    .floating-navbar { padding: 0 16px; height: 56px; border-radius: 30px; }
    .nav-logo-img { height: 38px; }
    .nav-heritage-tag { display: none; }
    
    /* Fullscreen Glass Drawer Menu on Mobile/Tablet */
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: calc(100vw - 20px);
        height: auto;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        background: rgba(8, 11, 18, 0.97);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        border-radius: 20px;
        border: 1px solid var(--border-color);
        padding: 30px 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 10px;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 8px 0;
    }

    .mobile-toggle { display: block; }
    
    .nav-cta-btn span { display: none; }
    .nav-cta-btn { padding: 0; width: 40px; height: 40px; border-radius: 50%; justify-content: center; }
    
    .hero-container, .process-grid, .contact-grid, .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-buttons { width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .form-row { grid-template-columns: 1fr; }
}

/* ==========================================
   SMARTPHONE RESPONSIVE BREAKPOINT (max-width: 576px)
   ========================================== */
@media (max-width: 576px) {
    .container { padding: 0 16px; }
    .emergency-banner-box { padding: 24px 16px; border-radius: 16px; }
    .btn-emergency-giant { width: 100%; font-size: 0.85rem; padding: 0 12px; height: 52px; justify-content: center; }
    .hero-specs { flex-direction: column; align-items: flex-start; gap: 12px; }
    .spec-divider { display: none; }
    .banner-feature-item { padding: 14px; }
    .coverage-card-premium { padding: 20px 16px; }
    .coverage-tags-wrapper { gap: 4px; }
    .town-tag { font-size: 0.78rem; padding: 2px 10px; height: 28px; }
    .contact-form-wrapper { padding: 20px 14px; }
    .info-card { padding: 16px 14px; gap: 12px; }
}
