:root {
    --clr-bg:           #000;
    --clr-surface:      #0b0b0b;
    --clr-surface-2:    #111;
    --clr-primary:      #00adee;
    --clr-primary-dark: #184ca1;
    --clr-glow:         rgba(0, 150, 255, 0.45);
    --clr-text:         #fff;
    --clr-muted:        rgba(255,255,255,0.5);
    --clr-border:       rgba(255,255,255,0.08);
    --ff-heading: 'Outfit', sans-serif;
    --ff-body:    'Inter',  sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s var(--ease);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { overflow-x: hidden; width: 100%; }
body  { background: var(--clr-bg); color: var(--clr-text); font-family: var(--ff-body); overflow-x: hidden; width: 100%; position: relative; }
body.menu-open { overflow: hidden; position: fixed; width: 100%; }
a     { text-decoration: none; color: inherit; }
img   { display: block; }
h1,h2,h3,h4 { font-family: var(--ff-heading); }

/* ── Container ─────────────────────────── */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
}

/* ── Logo ──────────────────────────────── */
.logo__img {
    height: 44px;
    width: auto;
    display: block;
}
.footer__logo .logo__img { height: 32px; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    height: 90px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
.header--scrolled {
    height: 75px;
    background: rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.header__container {
    height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}

/* Nav */
.nav__list { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__list > li { position: relative; height: 90px; display: flex; align-items: center; }
.header--scrolled .nav__list > li { height: 70px; }

.nav__link {
    font-size: 13px; font-weight: 700; color: #fff;
    letter-spacing: 1px; transition: 0.3s;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
}
.nav__link:hover { color: var(--clr-primary); }
.nav__link.active { color: var(--clr-primary); }
.nav__link.active::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px;
    background: var(--clr-primary); box-shadow: 0 0 10px var(--clr-primary);
}

/* Dropdown */
.nav__dropdown {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px; background: #080808;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 0 12px 12px;
    padding: 15px 0;
    opacity: 0; pointer-events: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    list-style: none;
}
.nav__list > li:hover .nav__dropdown {
    opacity: 1; pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.nav__dropdown li a {
    display: block; padding: 12px 25px;
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: 0.2s;
    text-decoration: none;
}
.nav__dropdown li a:hover {
    color: var(--clr-primary); background: rgba(255,255,255,0.03); padding-left: 30px;
}

.header__right { display: flex; align-items: center; gap: 20px; }
.header__socials { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
}
.header__socials a { 
    color: #fff; 
    transition: 0.3s; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}
.header__socials a:hover { color: var(--clr-primary); transform: translateY(-2px); }


/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 14px 28px; border-radius: 8px;
    font-family: var(--ff-body); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.2px;
    cursor: pointer; border: none; transition: var(--transition);
    white-space: nowrap;
}
.btn i { width: 16px; height: 16px; }

/* ══════════════════════════════════════════
   HEADER PHONE BUTTON (CYBER-PREMIUM)
   ══════════════════════════════════════════ */
.btn-cyber-phone {
    position: relative;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px; /* More tactical, less round */
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s var(--ease);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cyber-phone i {
    width: 16px;
    height: 16px;
    color: var(--clr-primary);
    transition: all 0.3s ease;
}

.btn-cyber-phone__text {
    position: relative;
    z-index: 2;
}

/* Inner Glow Effect */
.btn-cyber-phone::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 150%; height: 150%;
    background: radial-gradient(circle, rgba(0, 173, 238, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

/* Bottom Neon Line */
.btn-cyber-phone__border {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--clr-primary);
    box-shadow: 0 0 10px var(--clr-primary), 0 0 20px var(--clr-primary);
    transition: width 0.4s var(--ease);
    z-index: 3;
}

/* Hover States */
.btn-cyber-phone:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 173, 238, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 173, 238, 0.2);
}

.btn-cyber-phone:hover::before {
    opacity: 1;
}

.btn-cyber-phone:hover .btn-cyber-phone__border {
    width: 100%;
}

.btn-cyber-phone:hover i {
    transform: rotate(-15deg) scale(1.2);
    filter: drop-shadow(0 0 5px var(--clr-primary));
}

/* Tactical Pulse Animation */
.btn-cyber-phone {
    animation: btnPulse 4s infinite ease-in-out;
}

@keyframes btnPulse {
    0%, 100% { border-color: rgba(255, 255, 255, 0.1); }
    50% { border-color: rgba(0, 173, 238, 0.3); }
}

@media (max-width: 480px) {
    .btn-cyber-phone {
        padding: 10px 16px;
        font-size: 13px;
    }
}



/* Primary */
.btn--primary {
    background: linear-gradient(90deg, var(--clr-primary-dark), var(--clr-primary));
    color: #fff;
    box-shadow: 0 0 28px rgba(0,150,255,0.35);
    position: relative; overflow: hidden;
}
.btn--primary::after {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn--primary:hover::after {
    left: 100%;
}
.btn--primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 50px rgba(0,150,255,0.6);
}

/* Outline (second hero button) */
.btn--outline-hero {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
}
.btn--outline-hero:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* Large */
.btn--large { padding: 18px 40px; font-size: 15px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh; min-height: 750px;
    display: flex; align-items: center;
    overflow: hidden;
}

/* BG image */
.hero__bg {
    position: absolute; inset: 0;
    z-index: 0; transform: scale(1.06);
    will-change: transform;
}
.hero__bg img,
.hero__bg video {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}

/* Layer 1 – main left gradient */
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, #000000 48%, rgba(0,0,0,0.1) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.55) 100%);
}

/* Layer 2 – blue ambient (left edge) */
.hero__glow-blue {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: radial-gradient(ellipse 55% 75% at -2% 60%,
        rgba(24,76,161,0.5) 0%, transparent 65%);
    animation: glowPulse 8s ease-in-out infinite;
}

/* Layer 3 – red tail-light glow */
.hero__glow-red {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: radial-gradient(ellipse 40% 50% at 98% 62%,
        rgba(220,40,40,0.22) 0%, transparent 55%);
    animation: glowPulse 10s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Layer 4 – vignette */
.hero__vignette {
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
    background: radial-gradient(ellipse 110% 110% at 50% 50%,
        transparent 50%, rgba(0,0,0,0.7) 100%);
}

/* Layer 5 – film grain */
.hero__noise {
    position: absolute; inset: 0; z-index: 4; pointer-events: none;
    opacity: 0.35; mix-blend-mode: overlay;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC42NSIgbnVtT2N0YXZlcz0iMyIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNuKSIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
}

/* Content sits above all layers */
.hero__container {
    position: relative; z-index: 10;
    width: 100%; display: flex; align-items: center;
    padding-top: 100px; /* Push content away from header */
}

/* ── Text column ─────────────── */
.hero__content {
    max-width: 650px;
    display: flex; flex-direction: column; align-items: flex-start;
}

/* Stagger entrance */
.hero__content > * {
    opacity: 0; transform: translateY(30px);
    filter: blur(10px);
    transition: all 0.8s var(--ease);
}
.hero__content > *.is-visible {
    opacity: 1; transform: none;
    filter: blur(0);
}

/* 1. Tagline */
.hero__tagline {
    display: flex; align-items: center; gap: 14px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
}

.label-blue {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: 16px;
    position: relative;
}

.label-blue.justify-center {
    display: inline-flex !important;
    justify-content: center;
    margin-bottom: 16px;
}

/* Universal Animated Dash */
.dash-animated {
    display: block; width: 40px; height: 2px;
    background: var(--clr-primary);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 173, 238, 0.5);
    animation: dashGrow 1.5s var(--ease) forwards;
}

.dash-animated::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: dashScan 3s infinite linear;
    animation-delay: 1.5s;
}

@keyframes dashGrow {
    from { width: 0; opacity: 0; }
    to { width: 40px; opacity: 1; }
}

@keyframes dashScan {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

/* Specific adjustments if needed */
.hero__tagline-dash {
    /* Uses .dash-animated properties */
}

/* 2. H1 */
.hero__title {
    font-size: 68px; /* Slightly smaller */
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Third line: gradient blue */
.accent-text {
    background: linear-gradient(90deg, #2060d0, var(--clr-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* 3. Description */
.hero__subtitle {
    font-family: 'Montserrat', sans-serif !important;
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 100 !important;
    letter-spacing: 0.05em;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 580px;
}

.about__text {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.section-subtitle, .cta-text p, .contacts-hero-new__text, .service-intro__desc {
    font-family: var(--ff-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--clr-muted);
}

/* 4. Buttons */
.hero__actions {
    display: flex; gap: 16px;
    margin-bottom: 40px;
}

.hero__scroll-mobile { display: none; }

/* 5. Stats bar – glass card */
.hero__stats {
    display: flex; gap: 0;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.5),
        inset 0 0 0 1px rgba(255,255,255,0.05);
}

.stat {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 28px;
    flex: 1;
    position: relative;
}

/* divider between stats */
.stat + .stat::before {
    content: '';
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 40%;
    background: rgba(255,255,255,0.12);
}

.stat__icon {
    width: 24px; height: 24px;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.stat__body { display: flex; flex-direction: column; gap: 2px; }

.stat__val {
    font-family: var(--ff-heading);
    font-size: 22px; font-weight: 800;
    color: #fff; line-height: 1;
}

.stat__label {
    font-size: 11px; font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── Video floating button ───── */
.hero__video-btn {
    position: absolute;
    right: 15%; top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 180px; height: 180px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}

.hero__video-circle {
    position: relative;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}

/* Rotating text ring */
.hero__video-ring {
    position: absolute; 
    top: 0; left: 0;
    width: 100%; height: 100%;
    animation: spin 12s linear infinite;
    pointer-events: none;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero__video-ring-text {
    fill: rgba(255,255,255,0.7);
    font-size: 14px;
    font-family: var(--ff-body);
    font-weight: 700;
    letter-spacing: 6.5px; /* Added spacing between letters to fill the ring */
    text-transform: uppercase;
}

/* Play icon circle */
.hero__video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90px; height: 90px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: transparent !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s var(--ease);
    z-index: 5;
}

.hero__video-play i { 
    width: 28px; height: 28px; 
    margin-left: 5px; /* Visual balance for triangle */
    color: #fff;
}

.hero__video-btn:hover .hero__video-play {
    background: rgba(0, 173, 238, 0.1) !important;
    border-color: var(--clr-primary);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0,173,238,0.3);
}

/* ── Scroll indicator (centered) ── */
.hero__scroll {
    position: absolute; bottom: 36px; 
    left: 50%; transform: translateX(-50%);
    z-index: 10;
    display: flex; align-items: center; gap: 16px;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.hero__scroll-mouse {
    width: 22px; height: 36px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 11px;
    position: relative; flex-shrink: 0;
}
.hero__scroll-wheel {
    width: 3px; height: 7px;
    background: var(--clr-primary);
    border-radius: 2px;
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.hero__scroll-text {
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
}

.hero__scroll-line {
    flex: 1; max-width: 80px; height: 1px;
    background: linear-gradient(90deg, var(--clr-primary), transparent);
}

/* ── Brands Strip ────────────────────────── */
.brands-strip {
    background: #000;
    padding: 30px 0;
    position: relative; z-index: 100;
    overflow: hidden;
}

/* Premium Dividers */
.brands-strip::before,
.brands-strip::after {
    content: '';
    position: absolute; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1400px; height: 1px;
}

.brands-strip::before {
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.brands-strip::after {
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0,118,204,0.3), transparent);
}
.brands-strip__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.brands-strip__text {
    color: #0076cc; /* Accurate blue from screenshot */
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}
.brands-strip__logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    gap: 30px;
}
.brand-item {
    font-family: var(--ff-heading);
    color: #ffffff;
    opacity: 0.8;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    text-align: left;
    transition: var(--transition);
    cursor: default;
}
.brand-item br { display: none; } /* keep single line for most */
.brand-item:nth-child(3) br { display: block; } /* Ceramic Pro style */

.brand-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* KochChemie specific font style if possible, or just bold */
.brand-item:nth-child(2) {
    font-weight: 900;
    letter-spacing: -0.5px;
}

@media (max-width: 1024px) {
    .brands-strip__container { flex-direction: column; text-align: center; gap: 30px; }
    .brands-strip__logos { flex-wrap: wrap; justify-content: center; gap: 40px; }
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.brands-marquee__inner {
    display: flex;
    gap: 80px;
    width: max-content;
    will-change: transform;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 30px)); }
}

@media (max-width: 768px) {
    .brands-strip { padding: 20px 0; }
    .brands-strip__container { flex-direction: column; gap: 15px; }
    .brands-strip__text { font-size: 11px; width: 100%; margin: 0; }
    .brands-marquee__inner { gap: 40px; }
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 20px)); }
    }
}

/* ══════════════════════════════════════════
   BURGER BUTTON
══════════════════════════════════════════ */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px; height: 44px;
    background: none; border: none;
    cursor: pointer; padding: 8px;
    z-index: 10001;
    position: relative;
}
.burger span {
    display: block;
    width: 100%; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.burger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ══════════════════════════════════════════
   MOBILE MENU (Fullscreen Premium)
══════════════════════════════════════════ */
.nav-mobile {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #03060e;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.nav-mobile.is-open {
    transform: translateX(0);
}

.nav-mobile__inner {
    position: relative;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 24px 40px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.nav-mobile__inner::-webkit-scrollbar { display: none; }

/* Close */
.nav-mobile__close {
    position: absolute;
    top: 25px; right: 25px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,173,238,0.3);
    border-radius: 12px;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,173,238,0.2);
    z-index: 10;
}

/* Header */
.nav-mobile__header {
    margin-bottom: 40px;
}
.nav-mobile__logo {
    font-size: 32px; font-weight: 900; letter-spacing: 1px; color: #fff;
    margin-bottom: 5px;
}
.nav-mobile__logo span { color: var(--clr-primary); }
.nav-mobile__tagline {
    font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4);
    letter-spacing: 1px; text-transform: uppercase;
}

/* Nav Items */
.nav-mobile__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.nav-mobile__item-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-mobile__item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    color: #fff;
    font-size: 14px; font-weight: 700; letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-mobile__item i:not(.arrow) {
    width: 20px; height: 20px; color: var(--clr-primary);
}

.nav-mobile__item .arrow {
    margin-left: auto;
    width: 16px; height: 16px;
    color: var(--clr-primary);
}

.nav-mobile__item.is-active {
    background: rgba(0,173,238,0.05);
    border-color: rgba(0,173,238,0.6);
    box-shadow: 0 0 25px rgba(0,173,238,0.25);
}

/* Accordion Toggle */
.nav-mobile__toggle {
    width: 54px; height: 58px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    color: var(--clr-primary);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.nav-mobile__toggle.is-active {
    transform: rotate(180deg);
    border-color: rgba(0,173,238,0.4);
}

/* Submenu */
.nav-mobile__sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-left: 56px;
}
.nav-mobile__sub.is-open {
    max-height: 500px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.nav-mobile__sub-link {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 13px; font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 0;
    transition: color 0.2s;
}
.nav-mobile__sub-link.is-active { color: var(--clr-primary); }

/* Custom Cursor */
.cursor-dot {
    position: fixed; width: 8px; height: 8px;
    background: var(--clr-primary); border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transition: transform 0.1s ease, opacity 0.3s ease;
}
.cursor-outline {
    position: fixed; width: 40px; height: 40px;
    border: 2px solid var(--clr-primary); border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transition: transform 0.1s ease, opacity 0.3s ease;
}

.no-custom-cursor .cursor-dot,
.no-custom-cursor .cursor-outline {
    display: none !important;
}

/* Footer */
.nav-mobile__footer {
    position: relative;
    z-index: 5;
    background: rgba(10,14,24,0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.nav-mobile__phone {
    display: flex; align-items: center; gap: 12px;
    color: #fff; text-decoration: none;
    font-size: 18px; font-weight: 700;
    padding: 16px 20px;
    background: rgba(0,173,238,0.08);
    border: 1px solid rgba(0,173,238,0.3);
    border-radius: 12px;
    transition: background 0.2s;
}
.nav-mobile__phone i { width: 20px; height: 20px; color: var(--clr-primary); }
.nav-mobile__phone:hover { background: rgba(0,173,238,0.16); }

.nav-mobile__socials {
    display: flex; gap: 14px;
}
.nav-mobile__socials a {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
    transition: background 0.2s, border-color 0.2s;
}
.nav-mobile__socials a:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}

/* Background Car */
.nav-mobile__bg-car {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 110%;
    max-width: 400px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}
.nav-mobile__bg-car img {
    width: 100%; height: auto;
    object-fit: contain;
}

/* Lock body scroll when menu open */
body.menu-open {
    overflow: hidden;
    touch-action: none;
}


/* ══════════════════════════════════════════
   SECTIONS (shared)
══════════════════════════════════════════ */
.section { padding: 80px 0; }

.section-header { margin-bottom: 40px; }

.section-tag {
    display: block;
    color: var(--clr-primary);
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900; 
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 40px;
}

/* ══════════════════════════════════════════
   ABOUT
 ══════════════════════════════════════════ */
.about {
    position: relative;
    background: url('../images/bg4.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 180px 0;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0.95) 0%, 
        rgba(0,0,0,0.8) 40%, 
        rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about__grid {
    display: block;
    max-width: 750px;
}
.about__content {
    min-width: 0;
}
.about__content > * {
    opacity: 0;
}
.about__content .section-tag {
    color: #0076cc;
    margin-bottom: 12px;
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}
.about__content .section-title {
    margin-bottom: 30px;
}

.about__text {
    font-family: var(--ff-heading);
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.accent-blue {
    color: #0076cc;
    text-shadow: 0 0 20px rgba(0, 118, 204, 0.4);
}

/* Features Row */
/* Features Row - Glass Card Style */
.about__features-row {
    display: flex;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 35px 20px;
    margin-bottom: 60px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.4),
        inset 0 0 0 1px rgba(255,255,255,0.05);
}

.about__feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 0 20px;
    position: relative;
}

/* Vertical divider */
.about__feature:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0; 
    top: 10%; 
    bottom: 10%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.about__feature .feature-icon {
    width: 32px; height: 32px;
    color: var(--clr-primary);
    filter: drop-shadow(0 0 15px rgba(0, 173, 238, 0.6));
}

.about__feature .feature-label {
    font-family: var(--ff-heading);
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.feature-line {
    width: 30px; height: 2px;
    background: #0076cc;
    margin-top: 5px;
}

/* Removed image container styles as it is now a section background */

.btn--primary-about {
    display: inline-block;
    padding: 18px 36px;
    background: #1166cc;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    transition: var(--transition);
}
.btn--primary-about:hover {
    background: #0076cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,118,204,0.4);
}

@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; gap: 50px; }
    .about__content .section-title { font-size: 42px; }
    .about__features-row { flex-wrap: wrap; gap: 30px; }
    .about__feature { flex: none; width: calc(50% - 15px); padding-right: 0; }
    .about__feature::after { display: none; }
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
/* Background Glow Spots */
.services::before, .services::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 118, 204, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}
.services::before { top: 10%; left: -10%; }
.services::after { bottom: 10%; right: -10%; }

.services__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.services__header .section-tag {
    color: #33aaff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 0 10px rgba(0, 118, 204, 0.5);
}
.services__header .section-title {
    margin-bottom: 20px;
}
.section-subtitle {
    font-family: var(--ff-heading);
    color: rgba(255,255,255,0.4);
    font-size: 15px;
    line-height: 1.6;
}

.services__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

/* Common Bento Card */
.service-bento {
    position: relative;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 118, 204, 0.5);
    border-radius: 12px;
    padding: 30px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 118, 204, 0.3), inset 0 0 10px rgba(0, 118, 204, 0.1);
}

.service-bento:hover {
    border-color: #0076cc;
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 118, 204, 0.5), inset 0 0 20px rgba(0, 118, 204, 0.2);
}

/* Glowing border effect */
.service-bento::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 118, 204, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: 3;
}

.service-bento:hover::after {
    left: 150%;
}

.service-bento::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
    transition: var(--transition);
}

.service-bento:hover::before {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,118,204,0.15) 100%);
}

/* Shimmer effect removed for neon border */
.service-bento::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
    transition: var(--transition);
}
.service-bento:hover::before {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,118,204,0.15) 100%);
}
.service-bento:hover {
    border-color: rgba(0,118,204,0.4);
    transform: translateY(-5px);
}

.bento-icon {
    position: absolute;
    top: 25px; left: 25px;
    width: 32px; height: 32px;
    color: #ffffff;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 118, 204, 0.6));
    transition: all 0.3s ease;
}

.service-bento:hover .bento-icon {
    transform: scale(1.1);
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(0, 118, 204, 0.9));
}
.bento-content {
    position: relative;
    z-index: 2;
}
.bento-content h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 118, 204, 0.4);
    transition: 0.3s;
}
.service-bento:hover h3 {
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 118, 204, 0.8);
}
.bento-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    max-width: 80%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* Arrow Button */
.bento-arrow {
    position: absolute;
    bottom: 25px; right: 25px;
    width: 40px; height: 40px;
    border: 1px solid rgba(0, 118, 204, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    transition: all 0.3s ease;
    background: rgba(0, 118, 204, 0.1);
    box-shadow: 0 0 10px rgba(0, 118, 204, 0.3);
}

.service-bento:hover .bento-arrow {
    background: #0076cc;
    border-color: #33aaff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 118, 204, 0.6);
}

.bento-arrow i {
    width: 18px; height: 18px;
}

/* Grid Spans 3/3/3/3 */
.service-bento { grid-column: span 1; }

/* CTA Bar */
.services__cta {
    background: #050505;
    border: 1px solid rgba(0, 118, 204, 0.2);
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}
.services__cta:hover {
    border-color: rgba(255,255,255,0.1);
}
.cta-info {
    display: flex;
    align-items: center;
    gap: 25px;
}
.cta-icon-wrapper {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.cta-text h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
}
.cta-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.btn--cta {
    background: #0076cc;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    transition: var(--transition);
}
.btn--cta:hover {
    background: #005fa3;
    box-shadow: 0 0 20px rgba(0,118,204,0.4);
}

@media (max-width: 1200px) {
    .services__bento { grid-template-columns: repeat(2, 1fr); }
    .service-bento { grid-column: span 1 !important; }
}
@media (max-width: 768px) {
    /* Removed override */
    .services__cta { flex-direction: column; text-align: center; gap: 30px; }
    .services__bento { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   PORTFOLIO SLIDER
══════════════════════════════════════════ */
.portfolio__slider-wrapper {
    position: relative;
    padding: 0; /* Remove side padding to use full container width */
}

.portfolio-slider {
    overflow: hidden; /* Constrain to grid */
    padding: 20px 0 60px;
}

.portfolio-slide {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #0a0a0a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.portfolio-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(0, 173, 238, 0.3);
}

.portfolio-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Nav Buttons outside */
.portfolio-slider-prev,
.portfolio-slider-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

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

.portfolio-slider-prev:hover,
.portfolio-slider-next:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #000;
}

@media (max-width: 1200px) {
    .portfolio__slider-wrapper { padding: 0 40px; }
}

@media (max-width: 768px) {
    .portfolio__slider-wrapper { padding: 0; }
    .portfolio-slider-prev, .portfolio-slider-next { display: none; }
}

/* Pagination */
.portfolio-pagination {
    bottom: 25px !important;
}

.portfolio-pagination .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    transition: 0.3s;
}

.portfolio-pagination .swiper-pagination-bullet-active {
    background: var(--clr-primary);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,173,238,0.5);
}

@media (max-width: 768px) {
    .portfolio-slider { border-radius: 16px; }
    .portfolio-slide { aspect-ratio: 4 / 3; }
    .portfolio-slider-prev, .portfolio-slider-next { display: none; }
}




/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   CTA PREMIUM (CINEMATIC)
   ══════════════════════════════════════════ */
.cta-premium {
    position: relative;
    padding: 180px 0;
    background: #000;
    overflow: hidden;
    text-align: center;
}

.cta-premium__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-premium__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: contrast(1.2) brightness(0.7);
    transform: scale(1.05);
}

.cta-premium__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(0deg, #000 0%, transparent 50%, #000 100%),
                radial-gradient(circle at center, transparent 0%, #000 100%);
}

.cta-premium__content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.cta-premium__tag {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--clr-primary);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cta-premium__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.cta-premium__title .text-glow {
    color: var(--clr-primary);
    text-shadow: 0 0 40px rgba(0, 173, 238, 0.6);
}

.cta-premium__discount {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-premium__discount .percent {
    background: var(--clr-primary);
    padding: 2px 10px;
    border-radius: 6px;
    color: #000;
    margin: 0 5px;
}

.cta-premium__text {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
}

.btn--premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background: #fff;
    color: #000;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 900;
    transition: all 0.4s var(--ease);
    border: none;
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.btn--premium-cta:hover {
    transform: scale(1.05) translateY(-5px);
    background: var(--clr-primary);
    color: #fff;
    box-shadow: 0 0 40px rgba(0, 173, 238, 0.5);
}

.btn--premium-cta i { width: 20px; height: 20px; }

@media (max-width: 768px) {
    .cta-premium { padding: 100px 0; }
    .cta-premium__title { line-height: 1; margin-bottom: 25px; }
    .cta-premium__text { font-size: 15px; }
    .btn--premium-cta { padding: 18px 35px; width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
    padding: 100px 0 0;
    background: #050505;
    border-top: 1px solid rgba(0, 118, 204, 0.3);
}
.footer__wrapper {
    padding-bottom: 80px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer__logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.footer__description {
    font-family: var(--ff-heading);
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

.footer__socials {
    display: flex;
    gap: 12px;
}
.social-circle {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: var(--transition);
}
.social-circle:hover {
    border-color: var(--clr-primary);
    background: rgba(0, 173, 238, 0.1);
    color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 173, 238, 0.3);
}
.social-circle i { width: 18px; height: 18px; }

.footer__title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer__list {
    list-style: none;
    padding: 0;
}
.footer__list li {
    font-size: 15px;
    margin-bottom: 14px;
}
.footer__list a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}
.footer__list a:hover {
    color: var(--clr-primary);
}
.footer__title a {
    color: inherit;
    text-decoration: none;
}
.footer__title a:hover {
    color: var(--clr-primary);
}

.footer__list--dots li {
    position: relative;
    padding-left: 20px;
}
.footer__list--dots li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    background: #0076cc;
    border-radius: 50%;
    box-shadow: 0 0 10px #0076cc;
}

.footer__list--icons li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.footer__list--icons i {
    width: 18px; height: 18px;
    color: #0076cc;
    flex-shrink: 0;
}
.footer__list--icons a:hover { color: #fff; }

.btn--outline-map {
    margin-top: 20px;
    border: 1px solid rgba(0,118,204,0.5);
    background: transparent;
    color: #fff;
    font-size: 13px;
    padding: 14px 24px;
    border-radius: 50px;
}
.btn--outline-map:hover {
    background: rgba(0,118,204,0.1);
    border-color: #0076cc;
    box-shadow: 0 0 20px rgba(0,118,204,0.2);
}

.footer__input-group {
    margin-bottom: 15px;
}
.footer__input-group input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 18px 20px;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}
.footer__input-group input:focus {
    outline: none;
    border-color: #0076cc;
    background: rgba(0,118,204,0.05);
}

.footer__submit {
    margin-top: 10px;
    padding: 16px;
    font-weight: 800;
}
.footer__form-note {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

.footer__bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}
.footer__bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@keyframes footer-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.footer__bottom a {
    background: linear-gradient(90deg, #184ca1, #00adee, #184ca1);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-decoration: none;
    animation: footer-shimmer 3s linear infinite;
    display: inline-block;
}

@media (max-width: 1024px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
    .footer__wrapper { padding: 40px; }
}
@media (max-width: 600px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footer__wrapper { padding: 30px 20px; }
    .footer__bottom-container { flex-direction: column; gap: 12px; text-align: center; }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(10px);
    transition: 
        opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity, filter;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Staggered delay for service cards */
.services__bento .service-bento:nth-child(1) { transition-delay: 0.1s; }
.services__bento .service-bento:nth-child(2) { transition-delay: 0.2s; }
.services__bento .service-bento:nth-child(3) { transition-delay: 0.3s; }
.services__bento .service-bento:nth-child(4) { transition-delay: 0.15s; }
.services__bento .service-bento:nth-child(5) { transition-delay: 0.25s; }
.services__bento .service-bento:nth-child(6) { transition-delay: 0.35s; }
.services__bento .service-bento:nth-child(7) { transition-delay: 0.2s; }
.services__bento .service-bento:nth-child(8) { transition-delay: 0.3s; }
.services__bento .service-bento:nth-child(9) { transition-delay: 0.4s; }
.services__bento .service-bento:nth-child(10) { transition-delay: 0.25s; }
.services__bento .service-bento:nth-child(11) { transition-delay: 0.35s; }
.services__bento .service-bento:nth-child(12) { transition-delay: 0.45s; }

/* Staggered entry for about content */
.about__grid.active .about__content > *:nth-child(1) { animation-delay: 0.1s; }
.about__grid.active .about__content > *:nth-child(2) { animation-delay: 0.2s; }
.about__grid.active .about__content > *:nth-child(3) { animation-delay: 0.3s; }
.about__grid.active .about__content > *:nth-child(4) { animation-delay: 0.4s; }
.about__grid.active .about__content > *:nth-child(5) { animation-delay: 0.5s; }

.about__grid.active .about__content > * {
    animation: premiumFadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes premiumFadeUp {
    0% { opacity: 0; transform: translateY(20px); filter: blur(5px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}



/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1280px) {
    .container { padding: 0 40px; }
    .hero__title { font-size: 66px; }
    .hero__video-btn { right: 12%; }
}

@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2,1fr); }
    .hero__title { font-size: 56px; }
    .hero__video-btn { display: none; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    
    /* Header */
    .header { height: 70px; padding: 0; }
    .header__container { height: 100%; }
    .nav { display: none; }
    .header__right { display: none; }
    .burger { display: flex; }

    /* Hero */
    .hero { height: auto; min-height: 100vh; padding: 120px 0 30px; }
    .hero__content { max-width: 100%; }
    .hero__tagline { font-size: 10px; gap: 8px; margin-bottom: 20px; }
    .hero__title { font-size: 42px; line-height: 1.05; margin-bottom: 20px; }
    .hero__subtitle { font-size: 14px; margin-bottom: 30px; }
    .hero__actions { width: 100%; gap: 10px; }
    .hero__actions .btn { flex: 1; padding: 15px 10px; font-size: 11px; }

    .hero__stats {
        margin-top: 50px;
        background: rgba(255,255,255,0.07);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 16px;
        padding: 25px 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        align-items: center;
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    }
    .stat { 
        flex: 1;
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        gap: 10px;
        padding: 0 10px;
    }
    .stat + .stat {
        border-left: 1px solid rgba(255,255,255,0.1);
    }
    .stat__icon { 
        margin-bottom: 0; 
        width: 22px; height: 22px; 
    }
    .stat__body { display: flex; flex-direction: column; align-items: center; }
    .stat__val { 
        font-size: 18px; 
        font-weight: 800;
        line-height: 1; 
        color: #fff;
    }
    .stat__label { 
        font-size: 9px; 
        color: rgba(255,255,255,0.6);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    .stat + .stat::before { display: none; }

    .hero__scroll { display: none; }
    .hero__scroll-mobile { display: none; }

    /* Sections */
    .section { padding: 60px 0; }
    /* Removed override */
    .about { background-attachment: scroll; }
    .about__grid { grid-template-columns: 1fr; }
    .services__bento { grid-template-columns: 1fr; }
    .portfolio__grid { grid-template-columns: 1fr; }
}

/* ── Video Modal ───────────────────────── */
.video-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
}
.video-modal.is-active {
    opacity: 1; pointer-events: all;
}
.video-modal__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(15px);
}
.video-modal__content {
    position: relative; z-index: 10;
    width: 90%; max-width: 1100px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: var(--transition);
}
.video-modal.is-active .video-modal__content {
    transform: scale(1);
}
.video-modal__content video {
    width: 100%; height: 100%;
    object-fit: contain;
}
.video-modal__close {
    position: absolute; top: -50px; right: 0;
    background: none; border: none; color: #fff;
    cursor: pointer; padding: 10px;
    transition: var(--transition);
}
.video-modal__close:hover { color: var(--clr-primary); transform: rotate(90deg); }
.video-modal__close i { width: 32px; height: 32px; }

/* ── Application Modal ────────────────────── */
.modal {
    position: fixed; inset: 0; z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
}
.modal.is-active { opacity: 1; pointer-events: all; }

.modal__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
}

.modal__container {
    position: relative; z-index: 10;
    width: 95%; max-width: 500px;
    background: rgba(10, 10, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 173, 238, 0.25);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(0, 173, 238, 0.12);
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
}
.modal.is-active .modal__container {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute; top: 20px; right: 20px;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.modal__close:hover {
    background: rgba(0, 173, 238, 0.1);
    border-color: #00adee;
    color: #00adee;
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(0, 173, 238, 0.3);
}

.modal__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}
.modal__header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(0, 173, 238, 0.08);
    border: 1px solid rgba(0, 173, 238, 0.25);
    color: #00adee;
    box-shadow: 0 0 20px rgba(0, 173, 238, 0.2);
    flex-shrink: 0;
}
.modal__header-icon i {
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.modal__header-text {
    flex-grow: 1;
}
.section-tag--modal {
    font-size: 11px;
    font-weight: 700;
    color: #00adee;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    text-align: center;
}
.modal__title { font-size: 26px; font-weight: 900; margin-top: 2px; text-transform: uppercase; }
.modal__subtitle { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px; line-height: 1.5; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px; }

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-wrapper .input-icon {
    position: absolute;
    left: 18px;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}
.input-wrapper .textarea-icon {
    top: 18px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 16px 18px 16px 55px !important;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    transition: var(--transition);
}
.form-group textarea {
    resize: none;
    line-height: 1.5;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #00adee;
    background: rgba(0, 173, 238, 0.04);
    box-shadow: 0 0 15px rgba(0, 173, 238, 0.2);
}
.input-wrapper:focus-within .input-icon {
    color: #00adee;
    filter: drop-shadow(0 0 8px rgba(0, 173, 238, 0.5));
}
.select-chevron {
    position: absolute;
    right: 18px;
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
}

.btn--submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 56px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 14px;
    background: linear-gradient(90deg, #184ca1, #00adee);
    box-shadow: 0 0 20px rgba(0, 173, 238, 0.35);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}
.btn--submit:hover {
    box-shadow: 0 0 30px rgba(0, 173, 238, 0.55);
    transform: translateY(-2px);
}
.btn--submit i {
    width: 18px;
    height: 18px;
}

.btn--full { width: 100%; margin-top: 10px; }
.form-notice { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    font-size: 12px; 
    color: rgba(255,255,255,0.4); 
    text-align: center; 
    margin-top: 20px; 
}
.form-notice i {
    width: 16px;
    height: 16px;
    color: #00adee;
}

@media (max-width: 768px) {
    .modal__container { padding: 30px 24px; }
    .video-modal__content { width: 95%; }
    .video-modal__close { top: 10px; right: 10px; background: rgba(0,0,0,0.5); border-radius: 50%; }
}

/* ── Section Divider ─────────────────────── */
.section-divider {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 15px rgba(0,173,238,0.2);
    margin: 40px 0;
}


/* ══════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════ */
.preloader {
    position: fixed; inset: 0;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    display: flex; align-items: center; justify-content: center;
    z-index: 999999;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease;
    overflow: hidden;
}

/* Background elements */
.preloader::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC42NSIgbnVtT2N0YXZlcz0iMyIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNuKSIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    opacity: 0.2;
    pointer-events: none;
}

.preloader--hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.1);
}

.preloader__content {
    display: flex; flex-direction: column; align-items: center;
    gap: 25px;
    position: relative; z-index: 2;
}

.preloader__logo {
    width: 260px;
    filter: drop-shadow(0 0 30px rgba(0, 173, 238, 0.4));
    animation: preloaderPulse 2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; }
}

.preloader__logo svg {
    width: 100%; height: auto;
}

.logo-paths path {
    fill: transparent;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLogo 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.logo-paths path.s1 { stroke: #184ca1; }
.logo-paths path.s2 { stroke: #00adee; }

@keyframes drawLogo {
    0% { 
        stroke-dashoffset: 2000; 
        fill: transparent;
    }
    70% { 
        stroke-dashoffset: 0; 
        fill: transparent;
    }
    100% { 
        stroke-dashoffset: 0; 
        fill: #fff; 
        stroke-width: 0;
    }
}

/* Specific colors for final state */
.preloader__logo svg .s1 { fill: #184ca1 !important; stroke: none; }
.preloader__logo svg .s2 { fill: #00adee !important; stroke: none; }
.preloader__logo svg .s0 { fill: #fff !important; stroke: none; }

.preloader__bar {
    width: 280px; height: 1px;
    background: rgba(255,255,255,0.1);
    position: relative;
    margin-top: 10px;
}

.preloader__progress {
    position: absolute; left: 0; top: -1px; height: 3px;
    width: 0;
    background: var(--clr-primary);
    animation: progressAnim 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* Glowing Tip */
.preloader__progress::after {
    content: '';
    position: absolute; right: -10px; top: -4px;
    width: 20px; height: 11px;
    background: var(--clr-primary);
    filter: blur(4px);
    box-shadow: 0 0 20px 5px var(--clr-primary);
    border-radius: 50%;
}

@keyframes progressAnim {
    0% { width: 0; }
    100% { width: 100%; }
}

.preloader__text {
    font-family: var(--ff-heading);
    font-size: 10px; font-weight: 800;
    letter-spacing: 8px; color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    animation: fadeInText 1s ease 1s forwards;
    opacity: 0;
    margin-top: 30px;
}

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

/* ══════════════════════════════════════════
   CUSTOM CURSOR
   ══════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    a, button, input, select, textarea, .js-hover-target { cursor: none !important; }
    
    .cursor-dot {
        width: 6px; height: 6px;
        background: #fff;
        position: fixed;
        top: 0; left: 0;
        border-radius: 50%;
        z-index: 10000;
        pointer-events: none;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference;
        transition: width 0.3s, height 0.3s, background-color 0.3s;
    }
    
    .cursor-outline {
        width: 35px; height: 35px;
        border: 1px solid rgba(0, 173, 238, 0.5);
        position: fixed;
        top: 0; left: 0;
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
    }
    
    /* Hover State */
    .cursor-outline.is-hovered {
        width: 60px; height: 60px;
        background: rgba(0, 173, 238, 0.1);
        border-color: var(--clr-primary);
        border-width: 2px;
    }
    
    .cursor-dot.is-hovered {
        width: 10px; height: 10px;
        background: var(--clr-primary);
        mix-blend-mode: normal;
    }
}

/* ══════════════════════════════════════════
   REVIEWS SECTION
   ══════════════════════════════════════════ */
.reviews {
    background: #050505;
}

.reviews__slider-wrapper {
    margin-top: 50px;
}

.reviews-slider {
    padding: 20px 0 60px;
    overflow: hidden;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s var(--ease);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 173, 238, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 173, 238, 0.1);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 173, 238, 0.3);
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-family: var(--ff-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.review-card__stars {
    display: flex;
    gap: 2px;
}

.review-card__stars i,
.review-card__stars svg {
    width: 14px !important;
    height: 14px !important;
    color: #FBBC05 !important; 
    fill: #FBBC05 !important;
    stroke: #FBBC05 !important;
}

/* Ensure Lucide icons inside stars are also colored */
.review-card__stars .lucide-star {
    fill: #FBBC05 !important;
    stroke: #FBBC05 !important;
}

.review-card__google {
    opacity: 0.6;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.reviews-pagination {
    bottom: 0 !important;
}

.reviews-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: var(--clr-primary);
    width: 25px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .review-card {
        padding: 20px;
    }
}

/* ─── CONTACTS PAGE ────────────────────────────────────────── */
.contacts-page {
    background: var(--clr-bg);
    overflow: hidden;
}

/* Hero Section */
.contacts-hero {
    position: relative;
    padding: 200px 0 120px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.contacts-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,14,24,0.6), rgba(10,14,24,0.95));
    z-index: 1;
}

.contacts-hero__content {
    position: relative;
    z-index: 2;
}

.contacts-hero__title {
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contacts-hero__title span {
    color: var(--clr-primary);
}

.contacts-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 50px;
}

.contacts-hero__logo {
    display: flex; justify-content: center;
    margin-top: 40px;
}

.contacts-hero__logo .logo-text {
    font-size: clamp(80px, 15vw, 240px);
    font-weight: 900;
    letter-spacing: -2px;
    opacity: 0.1;
    filter: blur(2px);
    user-select: none;
    line-height: 1;
}

.contacts-hero__logo .logo-text span {
    color: var(--clr-primary);
}

/* Grid & Cards */
.contacts-main {
    padding: 0 0 100px;
    position: relative;
    z-index: 5;
    margin-top: -60px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contacts-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contacts-card__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contacts-card__subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info__icon {
    width: 50px; height: 50px;
    background: rgba(0,173,238,0.1);
    border: 1px solid rgba(0,173,238,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.contact-info__icon i { width: 20px; height: 20px; }

.contact-info__text span {
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-primary);
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.contact-info__text p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
}

/* Form */
.contacts-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 15px rgba(0,173,238,0.2);
}

/* Map */
.contacts-map {
    padding-bottom: 100px;
}

.map-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.map-overlay {
    position: absolute;
    left: 40px; top: 40px;
    width: 380px;
    z-index: 5;
}

.map-overlay__content {
    background: rgba(10,14,24,0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px;
}

.map-overlay__header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 15px;
}

.map-overlay__header i { color: var(--clr-primary); width: 20px; }

.map-overlay__header h3 {
    font-size: 18px; font-weight: 800;
    text-transform: uppercase;
}

.map-overlay__content p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

.map-overlay__address {
    font-weight: 600;
    color: #fff !important;
}

.map-overlay__link {
    color: var(--clr-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: flex; align-items: center; gap: 8px;
    text-transform: uppercase;
}

.contacts-socials {
    display: flex; gap: 15px;
    margin-top: 30px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contacts-grid { grid-template-columns: 1fr; }
    .map-overlay { position: static; width: 100%; margin-top: 20px; }
    .contacts-hero__title { font-size: 48px; }
    .contacts-hero__logo .logo-text { font-size: 40px; }
}

@media (max-width: 768px) {
    .contacts-card { padding: 30px; }
}

/* ── Contacts Hero New (Single Column) ────────────────── */
.contacts-hero-new {
    height: 600px;
    background-color: var(--clr-dark);
    background-image: url('../images/bg-contact.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.portfolio-hero {
    background-image: url('../images/bg2.webp') !important;
}

.about-hero {
    background-image: url('../images/bg4.webp') !important;
}

.contacts-hero-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--clr-dark) 45%, rgba(10,10,10,0.4) 100%);
    z-index: 1;
}

.contacts-hero-new .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.label-blue.justify-center {
    display: inline-flex !important;
    justify-content: center;
    margin-bottom: 16px;
}

.contacts-hero-new__title {
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 900;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease);
}

.breadcrumbs a:hover {
    color: var(--clr-blue);
}

.breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumbs .current {
    color: var(--clr-blue);
    font-weight: 600;
}

.contacts-hero-new__title span {
    display: block;
}

.contacts-hero-new__text {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.contacts-hero-new__logo {
    opacity: 0.15;
}

.contacts-hero-new__image-wrapper {
    position: relative;
}

.contacts-hero-new__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    aspect-ratio: 4/5;
}

.contacts-hero-new__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.contacts-hero-new__image:hover img {
    transform: scale(1.05);
}

.contacts-hero-new__image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--clr-dark));
}

@media (max-width: 991px) {
    .contacts-hero-new { padding: 140px 0 60px; }
    .contacts-hero-new__grid { grid-template-columns: 1fr; gap: 50px; }
    .contacts-hero-new__image { aspect-ratio: 16/9; }
}
