/* ═══════════════════════════════════════════
   NJ-TRUCK — Design System
═══════════════════════════════════════════ */
:root {
    --bg: #08090c;
    --bg-card: #10121a;
    --bg-elevated: #181b26;
    --bg-glass: rgba(16, 18, 26, .7);
    --primary: #f0a030;
    --primary-rgb: 240, 160, 48;
    --accent: #e8722a;
    --text: #d8dbe6;
    --text-dim: #7b7f94;
    --border: rgba(255, 255, 255, .07);
    --white: #f5f5f7;
    --radius: 14px;
    --radius-sm: 8px;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ═══════ Keyframes ═══════ */
@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), .3)
    }

    50% {
        box-shadow: 0 0 0 14px rgba(var(--primary-rgb), 0)
    }
}

@keyframes ringBreath {

    0%,
    100% {
        transform: scale(1);
        opacity: .25
    }

    50% {
        transform: scale(1.06);
        opacity: .5
    }
}

@keyframes slowSpin {
    to {
        transform: rotate(360deg)
    }
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

body {
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

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

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--white)
}

/* ═══════ Layout ═══════ */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════ Animations ═══════ */
.anim-fade {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .65s var(--ease), transform .65s var(--ease)
}

.anim-fade[data-anim="fade-left"] {
    transform: translateX(50px)
}

.anim-fade[data-anim="fade-right"] {
    transform: translateX(-50px)
}

.anim-fade.visible {
    opacity: 1;
    transform: translate(0)
}

/* ═══════ Cursor Glow ═══════ */
.cursor-glow {
    position: fixed;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .055) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .5s;
}

.cursor-glow.on {
    opacity: 1
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all .45s var(--ease);
    background: linear-gradient(to bottom, rgba(8, 9, 12, 0.5) 0%, rgba(8, 9, 12, 0) 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

#navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: .65rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 40px rgba(0, 0, 0, .35);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    transition: transform .3s var(--ease)
}

.logo:hover {
    transform: scale(1.04)
}

.logo-img {
    height: 36px;
    width: auto;
    transition: filter .3s
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 12px rgba(var(--primary-rgb), .45))
}

.logo-accent {
    color: var(--primary)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem
}

.nav-link {
    font-weight: 600;
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: .25rem 0;
    transition: color .3s;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width .3s var(--ease);
}

.nav-link:hover {
    color: var(--white)
}

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

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.15rem;
    border: 1.5px solid rgba(var(--primary-rgb), .5);
    border-radius: 50px;
    color: var(--primary) !important;
    font-size: .88rem;
    transition: all .3s var(--ease);
}

.btn-nav-cta::after {
    display: none
}

.btn-nav-cta:hover {
    background: var(--primary);
    color: var(--bg) !important;
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(var(--primary-rgb), .3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .35s var(--ease);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: heroZoom 30s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8, 9, 12, .91) 0%, rgba(8, 9, 12, .72) 45%, rgba(8, 9, 12, .28) 100%),
        linear-gradient(to bottom, rgba(8, 9, 12, 0.82) 0%, rgba(8, 9, 12, 0) 25%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .9rem;
    margin-bottom: 1.6rem;
    background: rgba(var(--bg), .6);
    border: 1px solid rgba(var(--primary-rgb), .25);
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.2rem, 5.2vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.4rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7));
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 500;
    max-width: 580px;
    margin-bottom: 2rem;
    line-height: 1.75;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.95);
}

.hero-actions {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap
}

/* scroll indicator removed */

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.7rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    border: none;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg);
    box-shadow: 0 4px 24px rgba(var(--primary-rgb), .2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(var(--primary-rgb), .35);
}

.btn-primary:active {
    transform: translateY(0)
}

.btn-ghost {
    background: rgba(255, 255, 255, .04);
    color: var(--white);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .14);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
    background: var(--bg-card);
    padding: 1.8rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem
}

.stat-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    transition: transform .3s
}

.stat-item:hover {
    transform: scale(1.05)
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
}

.stat-item:hover .stat-icon {
    background: rgba(var(--primary-rgb), .18);
    box-shadow: 0 0 18px rgba(var(--primary-rgb), .2)
}

.stat-item h3 {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1
}

.stat-unit {
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary)
}

.stat-item p {
    font-size: .82rem;
    color: var(--text-dim);
    font-weight: 500
}

/* ═══════════════════════════════════════════
   SECTIONS — Common
═══════════════════════════════════════════ */
.services,
.about,
.contact,
.coverage,
.facebook-section,
.partners {
    padding: 5.5rem 0
}

.about,
.coverage,
.partners {
    background: var(--bg-card)
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem
}

.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary);
    margin-bottom: .7rem;
}

.section-title {
    font-size: clamp(1.9rem, 3.8vw, 2.6rem);
    margin-bottom: .9rem
}

.section-desc {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem
}

.services-grid-2 {
    grid-template-columns: repeat(2, 1fr)
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all .4s var(--ease);
    overflow: hidden;
    cursor: default;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), .07) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .5s;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1
}

.service-card:hover {
    border-color: rgba(var(--primary-rgb), .22);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    transition: all .35s var(--ease);
}

.service-card:hover .service-icon-wrap {
    background: rgba(var(--primary-rgb), .18);
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 0 16px rgba(var(--primary-rgb), .2);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .65rem;
    transition: color .3s
}

.service-card:hover h3 {
    color: var(--primary)
}

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

.card-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all .35s var(--ease);
}

.service-card:hover .card-arrow {
    opacity: 1;
    transform: translate(0)
}

.service-card-lg {
    padding: 2.4rem
}

.service-card-lg h3 {
    font-size: 1.25rem;
    margin-bottom: .9rem
}

.service-card-lg p {
    margin-bottom: 1.1rem
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-top: .4rem
}

.service-features li {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: color .3s, transform .3s;
}

.service-features li i {
    color: var(--primary);
    flex-shrink: 0
}

.service-features li:hover {
    color: var(--white);
    transform: translateX(4px)
}

/* ═══════════════════════════════════════════
   COVERAGE
═══════════════════════════════════════════ */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem
}

.coverage-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.3rem 1.6rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .35s var(--ease);
    cursor: default;
}

.coverage-card i {
    color: var(--primary);
    flex-shrink: 0;
    transition: all .3s var(--ease)
}

.coverage-card span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white)
}

.coverage-card:hover {
    border-color: rgba(var(--primary-rgb), .28);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.coverage-card:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(var(--primary-rgb), .4))
}

/* ═══════════════════════════════════════════
   FACEBOOK
═══════════════════════════════════════════ */
.fb-embed-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem
}

.facebook-section .container {
    padding: 0 1rem; /* Slightly reduced to give more space for the embed */
}

.fb-embed-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2px; /* Minimal padding for a clean border effect */
    max-width: 500px; /* Matching FB Page Plugin max width */
    width: 100%;
    height: 800px; /* Fixed height for the container */
    overflow: hidden;
    transition: all .4s var(--ease);
}

.fb-embed-inner:hover {
    border-color: rgba(var(--primary-rgb), .2);
    box-shadow: 0 8px 36px rgba(0, 0, 0, .28)
}

.fb-embed-inner iframe {
    display: block;
    width: 100%;
    height: 100%; /* Fill container height */
    border-radius: calc(var(--radius) - 2px)
}

.fb-cta {
    text-align: center
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center
}

.about-visual {
    display: flex;
    justify-content: center
}

.about-img-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo-img {
    width: 220px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: float 7s ease-in-out infinite;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, .4));
    transition: filter .4s;
}

.about-logo-img:hover {
    filter: drop-shadow(0 14px 36px rgba(var(--primary-rgb), .3))
}

.about-img-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(var(--primary-rgb), .18);
    border-radius: 50%;
    animation: ringBreath 5s ease-in-out infinite;
    pointer-events: none;
}

.about-content p {
    color: var(--text-dim);
    margin-bottom: 1rem;
    line-height: 1.75
}

.check-list {
    margin-top: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.check-list li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-weight: 600;
    color: var(--white);
    transition: transform .3s, color .3s;
}

.check-list li:hover {
    transform: translateX(5px);
    color: var(--primary)
}

.check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s var(--ease);
}

.check-list li:hover .check-icon {
    background: rgba(var(--primary-rgb), .22);
    transform: scale(1.12)
}

/* ═══════════════════════════════════════════
   PARTNERS
═══════════════════════════════════════════ */
.partners {
    padding: 4.5rem 0;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.partner-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(165deg, rgba(24, 27, 38, .85), rgba(16, 18, 26, .95));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    width: 340px;
    height: 140px;
    overflow: hidden;
}

.partner-logo-link img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: all 0.4s var(--ease);
}

.logo-drokan {
    width: 110px;
}

.logo-malko {
    width: 280px;
    transform: scale(2.6);
}

.partner-logo-link:hover .logo-malko {
    transform: scale(2.7);
}

.partner-logo-link:hover {
    background: linear-gradient(165deg, rgba(30, 34, 48, .9), rgba(20, 23, 33, 1));
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.partner-logo-link:hover img {
    filter: grayscale(0%) opacity(1) drop-shadow(0 8px 24px rgba(var(--primary-rgb), 0.2));
    transform: scale(1.08);
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    align-items: stretch
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem
}

.contact-card-link {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    padding: 1.4rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .35s var(--ease);
}

a.contact-card-link {
    cursor: pointer;
}

.contact-card-link:hover {
    border-color: rgba(var(--primary-rgb), .22);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.contact-card-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(var(--primary-rgb), .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
}

.contact-card-link:hover .contact-card-icon {
    background: rgba(var(--primary-rgb), .18);
    transform: rotate(6deg) scale(1.08)
}

.contact-card-link h4 {
    font-size: .82rem;
    color: var(--text-dim);
    font-weight: 600
}

.contact-card-link span {
    font-weight: 700;
    color: var(--white);
    font-size: .92rem
}

.contact-cta-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--bg-elevated), var(--bg-card));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .05) 0%, transparent 70%);
    animation: slowSpin 25s linear infinite;
    pointer-events: none;
}

.contact-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    position: relative;
    z-index: 1
}

.contact-cta-box p {
    color: var(--text-dim);
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1
}

.contact-cta-box .btn {
    position: relative;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
    background: var(--bg-card);
    padding: 2.5rem 0 1.5rem 0;
    border-top: 1px solid var(--border)
}

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

.footer-brand {
    flex: 1;
    min-width: 260px
}

.footer-brand p {
    color: var(--text-dim);
    font-size: .85rem;
    margin-top: .4rem
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex: 1;
    min-width: 260px
}

.footer-legal a {
    color: var(--text-dim);
    font-size: .85rem;
    font-weight: 500;
    transition: color .3s
}

.footer-legal a:hover {
    color: var(--primary)
}

.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .03);
    margin-top: 1rem
}

.footer-copy p {
    color: var(--text-dim);
    font-size: .82rem
}

/* ═══════════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all .4s var(--ease);
    z-index: 999;
    box-shadow: 0 4px 18px rgba(var(--primary-rgb), .25);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(var(--primary-rgb), .4)
}

.floating-cookie-btn {
    position: fixed;
    bottom: 1.8rem;
    left: 1.8rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    cursor: pointer;
    transition: all .4s var(--ease);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .25);
}

.floating-cookie-btn svg {
    width: 20px;
    height: 20px;
}

.floating-cookie-btn:hover {
    color: var(--primary);
    border-color: rgba(var(--primary-rgb), .3);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .4);
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 40px rgba(0, 0, 0, .5);
    padding: 1.5rem 0;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .5s var(--ease), opacity .5s var(--ease);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px
}

.cookie-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .3rem
}

.cookie-text p {
    font-size: .88rem;
    color: var(--text-dim);
    line-height: 1.6
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline
}

.cookie-text a:hover {
    color: var(--accent)
}

.cookie-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    justify-content: flex-start
}

.cookie-actions .btn {
    font-size: .85rem;
    padding: .5rem 1rem
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(var(--primary-rgb), .4);
    color: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: rgba(var(--primary-rgb), .1);
    border-color: var(--primary);
    color: var(--primary);
}

/* Cookie Banner Preferences */
.cookie-preferences {
    display: none;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.cookie-option {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
}

.cookie-always-on {
    font-size: .8rem;
    color: var(--primary);
    font-weight: 600;
}

.cookie-option-desc {
    font-size: .85rem;
    color: var(--text-dim);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-dim);
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked+.toggle-slider {
    background-color: var(--primary);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(22px);
    background-color: var(--bg);
}

/* ═══════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms)
═══════════════════════════════════════════ */
.legal-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: 100vh;
}

.legal-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: .5rem;
}

.legal-updated {
    font-size: .88rem;
    color: var(--text-dim)
}

.legal-content section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-content section:last-child {
    border-bottom: none
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--text-dim);
    margin-bottom: .8rem;
    line-height: 1.75;
}

.legal-content ul,
.legal-content ol {
    color: var(--text-dim);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.legal-content li {
    margin-bottom: .4rem
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline
}

.legal-content a:hover {
    color: var(--accent)
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width:992px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .about-visual {
        order: -1
    }

    .cursor-glow {
        display: none
    }

    .services-grid-2 {
        grid-template-columns: 1fr
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:768px) {

    /* ── Navigation ── */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100dvh;
        background: rgba(8, 9, 12, .97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.8rem;
        transition: .5s var(--ease);
        z-index: 1050;
    }

    .nav-links.open {
        right: 0
    }

    .mobile-menu-btn {
        display: flex
    }

    /* ── Hero ── */
    .hero {
        min-height: 100svh;
        padding-top: 70px;
        align-items: flex-end;
        padding-bottom: 3.5rem
    }

    .hero-content {
        max-width: 100%
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.4rem);
        margin-bottom: 1rem
    }

    .hero-desc {
        font-size: .95rem;
        margin-bottom: 1.5rem
    }

    .hero-badge {
        font-size: .78rem;
        padding: .3rem .75rem;
        margin-bottom: 1.2rem
    }

    .hero-actions {
        flex-direction: column;
        gap: .7rem
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center
    }

    .hero-overlay {
        background: linear-gradient(170deg, rgba(8, 9, 12, .82) 0%, rgba(8, 9, 12, .92) 100%)
    }

    /* ── Sections ── */
    .services,
    .about,
    .contact,
    .coverage,
    .facebook-section,
    .partners {
        padding: 3rem 0
    }

    .section-header {
        margin-bottom: 2rem
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem)
    }

    /* ── Stats ── */
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem
    }

    .stat-item {
        width: 100%;
        max-width: 280px
    }

    /* ── Services ── */
    .service-card-lg {
        padding: 1.6rem
    }

    /* ── Coverage ── */
    .coverage-grid {
        grid-template-columns: 1fr 1fr
    }

    /* ── About ── */
    .about-img-wrap {
        width: 220px;
        height: 220px
    }

    .about-logo-img {
        width: 160px
    }

    /* ── Contact ── */
    .contact-cards {
        grid-template-columns: 1fr 1fr
    }

    .contact-cta-box {
        padding: 2rem 1.5rem
    }

    .contact-cta-box h3 {
        font-size: 1.25rem
    }

    /* ── Facebook ── */
    .fb-embed-inner {
        padding: 0;
        height: 600px; /* Slightly shorter on mobile */
    }

    /* ── Footer ── */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem
    }

    .footer-brand {
        min-width: 100%
    }

    .footer-legal {
        justify-content: center;
        min-width: 100%;
        flex-wrap: wrap;
        gap: 1rem
    }

    footer {
        padding-bottom: 5rem
    }

    /* ── Floating buttons ── */
    .floating-cookie-btn {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        left: 1rem
    }

    .floating-cookie-btn svg {
        width: 18px;
        height: 18px
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem
    }

    /* ── Cookie banner ── */
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start
    }

    .cookie-actions {
        flex-wrap: wrap;
        gap: .6rem
    }

    .cookie-actions .btn {
        flex: 1;
        min-width: 130px;
        text-align: center;
        justify-content: center;
        font-size: .82rem;
        padding: .5rem .8rem
    }

    .cookie-text {
        min-width: unset
    }

    /* ── Partners ── */
    .partners-row {
        gap: 1.5rem;
    }

    .partner-logo-link {
        width: 100%;
        max-width: 340px;
        height: 120px;
        padding: 1.5rem;
    }

    .logo-malko {
        width: 220px;
        transform: scale(2.4);
    }

    .partner-logo-link:hover .logo-malko {
        transform: scale(2.5);
    }

    .logo-drokan {
        width: 95px;
    }
}

@media (max-width:400px) {
    .coverage-grid {
        grid-template-columns: 1fr
    }

    .contact-cards {
        grid-template-columns: 1fr
    }

    .hero-title {
        font-size: 1.6rem
    }
}