/* ===== FUTURISTIC DARK THEME - DTS SPED ===== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1A3357;
    --primary-light: #254273;
    --primary-dark: #102342;
    --accent: #00D4FF;
    --accent-2: #0066FF;
    --accent-glow: rgba(0, 212, 255, 0.18);
    --red: #c41e2a;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-hover: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 212, 255, 0.35);
    --text: #D4E2F0;
    --text-light: rgba(255, 255, 255, 0.7);
    --text-white: #F0F4F8;
    --white: #ffffff;
    --gradient-accent: linear-gradient(135deg, #00D4FF, #0066FF);
    --gradient-hero: linear-gradient(135deg, rgba(26,51,87,0.92) 0%, rgba(26,51,87,0.7) 50%, rgba(0,212,255,0.1) 100%);
    --gradient-dark: linear-gradient(180deg, #1A3357 0%, #1F3A5F 100%);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--primary);
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--gradient-accent); border-radius: 4px; }

body {
    font-family: 'DM Sans', 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--primary);
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Montserrat', sans-serif;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

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

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

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

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

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--primary);
    display: grid;
    place-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    position: relative;
}

.loader::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 3px solid transparent;
    border-bottom-color: var(--accent-2);
    border-radius: 50%;
    animation: spin 0.6s linear infinite reverse;
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-dark);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 0.82rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-left span {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
}

.top-bar-left a:hover { color: var(--accent); }

.top-bar-left i,
.top-bar-right i {
    color: var(--accent);
    font-size: 0.75rem;
}

.top-bar-right {
    color: var(--text-light);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===== SOCIAL LINKS (Top Bar) ===== */
.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.72rem;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 212, 255, 0.08);
    transform: translateY(-2px);
}

/* ===== HEADER / NAVBAR (Glassmorphism) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 51, 87, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 51, 87, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.logo {
    display: flex;
    align-items: center;
    padding: 14px 0;
    flex-shrink: 1;
    min-width: 0;
}

.logo img {
    height: 42px;
    width: auto;
    max-width: 100%;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.logo:hover img { filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--accent)); }

/* Header phone button (desktop) */
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.header-phone:hover {
    background: var(--accent);
    color: #0B1829;
}

.header-phone i {
    font-size: 0.72rem;
}

/* Header language selector (always visible) */
.header-lang-selector {
    position: relative;
    margin-left: 18px;
}

.header-lang-selector .header-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-light);
    padding: 6px 10px;
    font-size: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.header-lang-selector .header-lang-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.header-lang-selector .header-lang-btn i {
    font-size: 0.72rem;
    color: var(--accent);
}

.header-lang-selector .header-lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(16, 35, 66, 0.98);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    padding: 8px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    width: 200px;
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.header-lang-selector.open .header-lang-dropdown {
    display: grid;
}

.header-lang-selector .header-lang-dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    text-decoration: none;
}

.header-lang-selector .header-lang-dropdown a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.08);
}

.header-lang-selector .header-lang-dropdown a.active {
    background: var(--accent);
    color: #0B1829;
    border-color: var(--accent);
}

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

.nav-menu > li { position: relative; }

.nav-menu > li > a {
    display: block;
    padding: 22px 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Dropdown */
.nav-menu li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 51, 87, 0.95);
    backdrop-filter: blur(20px);
    min-width: 260px;
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-radius: 0 0 var(--radius) var(--radius);
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.88rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.dropdown li:last-child a { border-bottom: none; }

.dropdown li a:hover {
    background: var(--surface-hover);
    color: var(--accent);
    padding-left: 25px;
}

.dropdown li a i {
    font-size: 0.65rem;
    margin-right: 5px;
    color: var(--accent);
}

/* Dropdown toggle button (mobile) */
.dropdown-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    font-size: 0.7rem;
    transition: var(--transition);
}

/* Has-dropdown: relative for desktop hover */
.has-dropdown { position: relative; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
    border-radius: 8px;
    transition: var(--transition);
    flex-shrink: 0;
    background: none;
    border: 1px solid var(--border);
}

.hamburger:active {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--primary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,35,66,0.7) 0%, rgba(16,35,66,0.35) 45%, rgba(16,35,66,0.1) 100%);
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding-top: 80px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(40px);
    animation: heroSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
}

.hero h1 .gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 580px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
}

@keyframes heroSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Small (subpages) */
.hero-small {
    min-height: 45vh;
    background-size: cover;
    background-position: center 35%;
    position: relative;
}

@media (max-width: 768px) {
    .hero-small {
        background-position: center 55%;
    }
}

.hero-small::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-small .hero-content {
    padding-top: 100px;
}

.hero-small h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    animation-delay: 0.8s;
}

.hero-small p {
    animation-delay: 1.1s;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255,255,255,0.08), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--surface-hover);
    color: var(--text-white);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    color: var(--white);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--primary-light);
}

.section-gray {
    background: var(--gradient-dark);
}

.section-dark {
    background: var(--primary-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT GRID ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.1), transparent);
    pointer-events: none;
}

.about-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img:hover img { transform: scale(1.05); }

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p { margin-bottom: 15px; }

.about-text .highlight {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.15rem;
    display: inline-block;
    margin-bottom: 5px;
}

/* ===== SERVICE CARDS (Glassmorphism) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.12);
    background: var(--surface-hover);
}

.service-card .card-icon {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.7);
}

.service-card:hover .card-icon img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.service-card .card-icon .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--primary) 0%, transparent 60%);
}

.service-card .card-body {
    padding: 25px 22px;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-card .card-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.service-card .card-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .card-link i {
    transform: translateX(6px);
}

/* Card mouse-follow glow */
.service-card {
    --glow-x: 50%;
    --glow-y: 50%;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(300px circle at var(--glow-x) var(--glow-y), rgba(0,212,255,0.1), transparent 60%);
    pointer-events: none;
    z-index: 0;
    border-radius: var(--radius);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover i {
    transform: scale(1.2) translateY(-8px);
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    padding: 80px 0;
}

.stat-item h3,
.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* ===== ROUTE NETWORK MAP ===== */
.route-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
}

.route-map {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.route-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,212,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.route-map svg {
    width: 100%;
    height: auto;
    display: block;
}

.route-path {
    stroke: url(#rg);
    stroke-width: 2.5;
    fill: none;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 3s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-section.animated .route-path {
    stroke-dashoffset: 0;
}

.route-path-glow {
    stroke: rgba(0,212,255,0.15);
    stroke-width: 14;
    fill: none;
    filter: url(#wideGlow);
    opacity: 0;
    transition: opacity 1.5s ease 2s;
}

.route-section.animated .route-path-glow {
    opacity: 1;
}

.route-branch-path {
    stroke: url(#rg);
    stroke-width: 1;
    fill: none;
    opacity: 0;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: stroke-dashoffset 1.2s ease, opacity 0.5s ease;
}

.route-section.animated .route-branch-path {
    opacity: 0.35;
    stroke-dashoffset: 0;
    transition-delay: 1.5s;
}

.city-dot {
    opacity: 0;
    transition: opacity 0.6s ease 2s;
}

.route-section.animated .city-dot {
    opacity: 1;
}

.pulse-ring {
    opacity: 0;
}

.route-section.animated .pulse-ring {
    animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {
    0% { opacity: 0.4; stroke-width: 1.5; }
    50% { opacity: 0.1; stroke-width: 0.5; }
    100% { opacity: 0.4; stroke-width: 1.5; }
}

.city-name {
    fill: rgba(200,214,229,0.5);
    font-size: 11px;
    font-family: 'Space Grotesk', sans-serif;
    opacity: 0;
    transition: opacity 0.8s ease 2.5s;
}

.city-name.main-city {
    fill: #00D4FF;
    font-size: 13px;
    font-weight: 600;
}

.route-section.animated .city-name {
    opacity: 1;
}

.cargo-dot {
    opacity: 0;
    transition: opacity 0.5s ease 3s;
}

.route-section.animated .cargo-dot {
    opacity: 1;
}

.route-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 25px 0;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

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

.route-stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.route-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: linear-gradient(135deg, var(--primary-dark), #1F3C61);
    padding: 50px 0;
    text-align: center;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

.cta-strip h2,
.cta-strip h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-strip p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.cta-box {
    margin-top: 30px;
    padding: 25px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
}

.cta-box a {
    color: var(--accent);
    font-weight: 600;
}

.cta-box a:hover {
    color: var(--white);
}

/* ===== BONITET BADGE ===== */
.bonitet-badge {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-top: 18px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: var(--transition);
    background: rgba(255,255,255,0.03);
}

.bonitet-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.1);
}

.bonitet-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    align-self: stretch;
    background: linear-gradient(135deg, #00D4FF, #0066FF);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.bonitet-info {
    display: flex;
    flex-direction: column;
    padding: 8px 14px;
    gap: 1px;
}

.bonitet-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonitet-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.bonitet-source {
    font-size: 0.68rem;
    color: rgba(0, 212, 255, 0.6);
    font-weight: 500;
}

/* ===== PAGE CONTENT (Subpages) ===== */
.page-content {
    padding: 60px 0;
}

.page-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--accent);
}

.page-content p { margin-bottom: 15px; }

.page-content ul { margin: 15px 0 25px; }

.page-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
}

.page-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

/* ===== TABLES (Dark Theme) ===== */
.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.page-content table thead th {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 102, 255, 0.15));
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 2px solid var(--accent);
}

.page-content table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
}

.page-content table tbody tr:last-child td {
    border-bottom: none;
}

.page-content table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

.page-content table tbody tr td:first-child {
    color: var(--text-white);
    font-weight: 500;
}

.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

/* Sidebar */
.sidebar .widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar .widget h4 {
    font-size: 1.05rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    color: var(--text-white);
}

.sidebar .widget ul li a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.sidebar .widget ul li:last-child a { border-bottom: none; }

.sidebar .widget ul li a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.sidebar .widget ul li a i {
    margin-right: 10px;
    color: var(--accent);
    font-size: 0.8rem;
    width: 20px;
    text-align: center;
}

.sidebar .contact-widget p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--text-light);
}

.sidebar .contact-widget i {
    color: var(--accent);
    width: 18px;
    text-align: center;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 15px 0;
    background: var(--primary-light);
    border-bottom: 1px solid var(--border);
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumb ul li a { color: var(--text-light); }
.breadcrumb ul li a:hover { color: var(--accent); }

.breadcrumb ul li.active {
    color: var(--accent);
    font-weight: 600;
}

.breadcrumb ul li + li::before {
    content: '/';
    margin-right: 8px;
    color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.contact-card h3 i { margin-right: 8px; }

.contact-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-card i { color: var(--accent); width: 18px; text-align: center; }

.contact-card a { color: var(--accent); }
.contact-card a:hover { color: var(--white); }

/* Contact Form */
.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-form h3 { margin-bottom: 25px; }

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.form-group textarea { height: 150px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--primary); }

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

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 70px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer h4 {
    color: var(--text-white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-about p {
    font-size: 0.88rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-about img {
    height: 35px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-fiata {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.footer-fiata img {
    height: 52px;
    width: auto;
    flex-shrink: 0;
    filter: none;
}

.footer-fiata span {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.45;
}

.footer ul li { margin-bottom: 6px; }

.footer ul li a {
    color: var(--text-light);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer ul li a i {
    color: var(--accent);
    font-size: 0.65rem;
    width: 12px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.88rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact a:hover {
    color: var(--accent);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 212, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
}

/* ===== VEHICLE SCROLL ANIMATIONS ===== */

/* Flying plane across section */
@keyframes flyAcross {
    0%   { transform: translate(-100%, 40px) rotate(-3deg) scale(0.6); opacity: 0; }
    15%  { opacity: 0.15; }
    100% { transform: translate(calc(100vw + 100%), -60px) rotate(-3deg) scale(1); opacity: 0; }
}

@keyframes driveAcross {
    0%   { transform: translateX(-100%) scaleX(1); opacity: 0; }
    10%  { opacity: 0.12; }
    90%  { opacity: 0.12; }
    100% { transform: translateX(calc(100vw + 100%)) scaleX(1); opacity: 0; }
}

@keyframes sailAcross {
    0%   { transform: translateX(calc(100vw + 100%)); opacity: 0; }
    10%  { opacity: 0.1; }
    90%  { opacity: 0.1; }
    100% { transform: translateX(-100%); opacity: 0; }
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.1); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.25); }
}

/* Background vehicle decorations */
.vehicle-bg {
    position: absolute;
    font-size: 4rem;
    color: var(--accent);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

.vehicle-bg.animate {
    opacity: 1;
}

.vehicle-bg.plane {
    top: 15%;
    left: 0;
    animation: flyAcross 8s linear forwards;
}

.vehicle-bg.truck {
    bottom: 20%;
    left: 0;
    animation: driveAcross 10s linear forwards;
}

.vehicle-bg.ship {
    bottom: 30%;
    right: 0;
    animation: sailAcross 12s linear forwards;
}

/* Service card icon animations */
.service-card .card-icon {
    position: relative;
    overflow: hidden;
}

.service-card .card-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(0,212,255,0.08) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: none;
}

.service-card.visible .card-icon::after {
    animation: shimmer 1.5s ease-out 0.3s forwards;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Service card hover vehicle micro-animation */
.service-card:hover .card-body h3 {
    color: var(--accent);
    transition: color 0.3s ease;
}

/* Animated icon bounce on card appear */
.service-card.visible .card-body h3::before {
    animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

@keyframes iconPop {
    0% { transform: scale(0) rotate(-20deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Floating ambient particles for sections */
.section-animated {
    position: relative;
    overflow: hidden;
}

.section-animated .floating-icon {
    position: absolute;
    font-size: 1.8rem;
    color: var(--accent);
    opacity: 0.12;
    animation: floatUpDown 4s ease-in-out infinite;
    pointer-events: none;
}

.section-animated .floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.section-animated .floating-icon:nth-child(2) { top: 60%; right: 8%; animation-delay: 1s; font-size: 2.2rem; }
.section-animated .floating-icon:nth-child(3) { bottom: 15%; left: 50%; animation-delay: 2s; font-size: 1.4rem; }
.section-animated .floating-icon:nth-child(4) { top: 30%; right: 15%; animation-delay: 0.5s; }

/* Animated accent line that draws on scroll */
.accent-line {
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    margin: 0 auto 30px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.accent-line.visible {
    width: 80px;
}

/* Card glow pulse on appear */
.service-card.visible {
    animation: pulseGlow 2s ease-in-out 0.5s;
}

/* Animated stats counter section */
.stats-bar .stat-item.visible .stat-icon {
    animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Page content animations for subpages */
.main-content h2 {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-content.visible h2 {
    opacity: 1;
    transform: translateX(0);
}

.main-content h3 {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.main-content.visible h3 {
    opacity: 1;
    transform: translateX(0);
}

.main-content ul li {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.5s ease;
}

.main-content.visible ul li {
    opacity: 1;
    transform: translateX(0);
}

.main-content.visible ul li:nth-child(1) { transition-delay: 0.1s; }
.main-content.visible ul li:nth-child(2) { transition-delay: 0.15s; }
.main-content.visible ul li:nth-child(3) { transition-delay: 0.2s; }
.main-content.visible ul li:nth-child(4) { transition-delay: 0.25s; }
.main-content.visible ul li:nth-child(5) { transition-delay: 0.3s; }
.main-content.visible ul li:nth-child(6) { transition-delay: 0.35s; }
.main-content.visible ul li:nth-child(7) { transition-delay: 0.4s; }

/* Sidebar widget slide-in */
.sidebar .widget {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar .widget.visible {
    opacity: 1;
    transform: translateX(0);
}

.sidebar .widget:nth-child(2) {
    transition-delay: 0.2s;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.12), transparent);
    z-index: 10001;
    pointer-events: none;
}

.scroll-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--scroll-pct, 0%);
    background: var(--gradient-accent);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
    transition: width 0.1s linear;
}

.scroll-progress-plane {
    position: absolute;
    top: 50%;
    left: var(--scroll-pct, 0%);
    transform: translate(-50%, -50%) rotate(45deg);
    color: var(--accent);
    font-size: 14px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.9), 0 0 20px rgba(0, 212, 255, 0.5);
    transition: left 0.1s linear;
    pointer-events: none;
}

/* ===== TYPED TEXT CURSOR ===== */
.typed-text {
    color: var(--accent);
    font-weight: 600;
    margin: 0 0.25em;
}

.typed-cursor {
    color: var(--accent);
    animation: blink 0.8s step-end infinite;
    font-weight: 300;
    margin-left: 2px;
}

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

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(80px) scale(0.96);
    filter: blur(2px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left { opacity: 0; transform: translateX(-80px) scale(0.96); filter: blur(2px); }
.reveal-right { opacity: 0; transform: translateX(80px) scale(0.96); filter: blur(2px); }
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }

/* Stagger - wide delays for visible cascade */
.reveal-group .reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.3s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.5s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.7s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.9s; }
.reveal-group .reveal:nth-child(6) { transition-delay: 1.1s; }

/* Legacy fade-in support */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== STATS COUNTER GLOW ===== */
.stat-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item.visible .stat-number {
    animation: statGlow 2.5s ease-out forwards;
}

@keyframes statGlow {
    0% { filter: brightness(1); }
    25% { filter: brightness(1.8) drop-shadow(0 0 25px rgba(0,212,255,0.7)); }
    60% { filter: brightness(1.3) drop-shadow(0 0 15px rgba(0,212,255,0.4)); }
    100% { filter: brightness(1) drop-shadow(0 0 0 transparent); }
}

/* ===== TRUST SIGNALS ===== */
.trust-section {
    padding: 80px 0;
    background: var(--primary-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.trust-item {
    text-align: center;
    padding: 35px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.trust-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.trust-icon i {
    font-size: 1.8rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* FIATA membership badge */
.fiata-badge {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 760px;
    margin: 45px auto 0;
    padding: 30px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.fiata-badge:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.fiata-badge img {
    width: 110px;
    height: auto;
    flex-shrink: 0;
}

.fiata-badge-text h4 {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.fiata-badge-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 600px) {
    .fiata-badge {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 28px 22px;
    }
    .fiata-badge img { width: 90px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 0;
    background: var(--primary-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px 30px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1;
    position: absolute;
    top: 28px;
    right: 30px;
    color: var(--accent);
    opacity: 0.25;
    pointer-events: none;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    padding-top: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info h5 {
    font-size: 0.9rem;
    color: var(--text-white);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* Desktop: hide mobile-only parts of nav-panel */
.nav-panel-head { display: none; }
.nav-panel-foot { display: none; }
.nav-close { display: none; }
.nav-mail-link { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .content-with-sidebar { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .header {
        background: rgba(26, 51, 87, 0.95);
    }

    .header .container {
        padding: 0 15px;
    }

    .logo img {
        height: 32px;
    }

    .header-lang-selector {
        display: none;
    }

    .header-phone {
        display: none !important;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
        margin-left: auto;
    }

    /* ===== MOBILE NAV PANEL ===== */
    .nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: 85vw;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: #0B1829;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1002;
        visibility: hidden;
    }

    .nav-panel.active {
        transform: translateX(0);
        visibility: visible;
    }

    /* -- Panel header: logo + close -- */
    .nav-panel-head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        flex-shrink: 0;
    }

    .nav-panel-logo img {
        height: 26px;
        filter: brightness(0) invert(1);
    }

    .nav-close {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 1.2rem;
        cursor: pointer;
    }

    .nav-close:active { color: var(--accent); }

    /* -- Nav links (full-width, left-aligned) -- */
    .nav-menu {
        flex: 1;
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px 0 0;
    }

    .nav-menu > li > a {
        display: block;
        padding: 15px 24px;
        font-size: 0.95rem;
        font-weight: 500;
        color: #e0e0e0;
        letter-spacing: 0.3px;
        border-bottom: none;
        text-align: left;
    }

    .nav-menu > li > a.active {
        color: var(--accent);
        background: rgba(0, 212, 255, 0.05);
    }

    /* -- Dropdown toggle (chevron right side) -- */
    .nav-menu > li.has-dropdown {
        display: flex;
        flex-wrap: wrap;
    }

    .nav-menu > li.has-dropdown > a { flex: 1; }

    .dropdown-toggle {
        display: flex;
        width: 52px;
        font-size: 0.65rem;
        color: rgba(255,255,255,0.35);
        transition: transform 0.3s ease;
        border: none;
    }

    .has-dropdown.dropdown-open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    /* -- Dropdown (indented, smaller) -- */
    .nav-menu li .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0,0,0,0.15);
        display: none;
        backdrop-filter: none;
        width: 100%;
    }

    .nav-menu li.dropdown-open .dropdown { display: block; }

    .dropdown li a {
        display: block;
        padding: 13px 24px 13px 40px;
        font-size: 0.88rem;
        font-weight: 400;
        color: rgba(255,255,255,0.5);
        border-bottom: none;
        text-align: left;
    }

    .dropdown li a:active { color: var(--accent); }
    .dropdown li a i { display: none; }

    /* -- Panel footer (pinned to bottom) -- */
    .nav-panel-foot {
        display: flex !important;
        flex-direction: column;
        flex-shrink: 0;
        padding: 20px 24px 28px;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: auto;
    }

    /* Mail link - visible only on mobile */
    .nav-mail-link {
        display: inline !important;
        color: var(--accent) !important;
    }

    /* Phone & Email buttons in mobile menu */
    .nav-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        background: var(--gradient-accent);
        color: var(--white);
        border-radius: 10px;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 10px;
        text-decoration: none;
    }

    .nav-cta-btn:hover { color: var(--white); }

    .nav-foot-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        background: rgba(0, 212, 255, 0.1);
        color: var(--white);
        border: 1.5px solid var(--accent);
        border-radius: 10px;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 16px;
        text-decoration: none;
    }

    .nav-foot-link:hover { color: var(--white); background: rgba(0, 212, 255, 0.2); }

    .nav-foot-link i {
        color: var(--accent);
        width: 16px;
        text-align: center;
        font-size: 0.78rem;
    }

    /* Social + Language row */
    .nav-foot-bottom {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    /* Social icons row */
    .nav-foot-social {
        display: flex;
        gap: 10px;
    }

    .nav-foot-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.12);
        color: rgba(255,255,255,0.5);
        font-size: 0.88rem;
    }

    .nav-foot-social a:active {
        color: var(--accent);
        border-color: var(--accent);
    }

    /* Language row */
    .nav-foot-lang {
        display: flex;
        gap: 6px;
    }

    .nav-foot-lang a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 6px;
        border: 1px solid rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.4);
        font-size: 0.75rem;
        font-weight: 600;
        font-family: 'Space Grotesk', sans-serif;
    }

    .nav-foot-lang a.active {
        background: var(--accent);
        color: #0B1829;
        border-color: var(--accent);
    }

    /* -- Lock scroll when menu open -- */
    html.menu-open,
    body.menu-open {
        overflow: hidden !important;
        touch-action: none;
        -webkit-overflow-scrolling: none;
    }

    .mobile-overlay.active {
        touch-action: none;
    }

    /* -- Overlay -- */
    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .mobile-overlay.active { display: block; }

    /* ===== Page layout mobile ===== */
    .hero { min-height: 80vh; }
    .hero h1 { font-size: 1.8rem; }
    .hero-small { min-height: 40vh; }
    .section { padding: 60px 0; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr 1fr; gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .trust-grid { grid-template-columns: 1fr; gap: 15px; }
    .trust-item { padding: 25px 18px; }
    .trust-icon { width: 56px; height: 56px; }
    .trust-icon i { font-size: 1.5rem; }
    .trust-section { padding: 50px 0; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 15px; }
    .testimonial-card { padding: 25px 20px; }
    .testimonials-section { padding: 50px 0; }
    .route-stats { gap: 20px; flex-wrap: wrap; padding: 15px 0; }
    .route-stat-num { font-size: 1.1rem; }
    .route-stat-label { font-size: 0.7rem; }
    .route-section { padding: 50px 0; }
    .route-map { padding: 15px 10px 0; }
    .cta-strip { padding: 35px 0; }
    .cta-strip h3 { font-size: 1.3rem; }
    .bonitet-rating { width: 48px; font-size: 1.2rem; }
    .bonitet-info { padding: 6px 12px; }
    .bonitet-year { font-size: 1rem; }

}

@media (max-width: 480px) {
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 1.5rem; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .section-title h2 { font-size: 1.4rem; }
    .section-title p { font-size: 0.9rem; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .trust-item { padding: 20px 12px; }
    .trust-item h4 { font-size: 0.85rem; }
    .trust-item p { font-size: 0.78rem; }
    .testimonial-text { font-size: 0.88rem; }
    .stats-bar { grid-template-columns: 1fr 1fr; gap: 15px; padding: 40px 0; }
    .stat-number { font-size: 2rem !important; }
    .stat-item p { font-size: 0.75rem; }
}

/* ===== GDPR COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(16, 35, 66, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-hover);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

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

.cookie-text p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept {
    background: var(--gradient-accent);
    color: var(--white);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.cookie-btn-decline:hover {
    border-color: var(--text-light);
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-text { min-width: auto; }
    .cookie-buttons { width: 100%; justify-content: center; }
    .cookie-btn { flex: 1; justify-content: center; }
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.82rem;
    padding: 3px 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: var(--transition);
    background: transparent;
    font-family: inherit;
}

.lang-current:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-current i { font-size: 0.7rem; }

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 51, 87, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 6px;
    min-width: 140px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: var(--transition);
    z-index: 100;
    margin-top: 5px;
}

.lang-selector:hover .lang-dropdown,
.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.82rem;
    color: var(--text-light);
    transition: var(--transition);
}

.lang-dropdown a:hover {
    background: var(--surface-hover);
    color: var(--accent);
}

.lang-dropdown a.active {
    color: var(--accent);
    font-weight: 600;
}


/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
