﻿:root {
    --primary: #0B3C5D;
    --primary-light: #1D5A7F;
    --accent: #00B4D8;
    --ice: #E8F4F8;
    --dark: #0A1128;
    --text: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #0B3C5D 0%, #1D5A7F 100%);
    --nav-height: 90px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, sans-serif;
    color: var(--text);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

/* --- RADICAL HEADER & CINEMATIC MENU --- */

/* Navbar Container */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    /* Centering container */
    padding: 20px 0;
    z-index: 2000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(2, 11, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-container {
    width: 100%;
    max-width: 1400px;
    /* Wider for cinematic feel */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    z-index: 2001;
    /* Above overlay if needed, or keep same context */
}

.logo-img {
    width: 45px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 219, 255, 0.3));
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-suffix {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    min-width: 110px;
    /* Ensure stability */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.menu-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(0, 219, 255, 0.3);
    transform: translateY(-2px);
}

.menu-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 14px;
    position: relative;
    flex-shrink: 0;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger-icon span:first-child {
    width: 100%;
}

.hamburger-icon span:last-child {
    width: 60%;
}

.menu-trigger:hover .hamburger-icon span:last-child {
    width: 100%;
    background: var(--accent);
}

/* --- MINIMALIST DROPDOWN MENU --- */
/* --- PREMIUM SIDE MENU (nav-overlay) --- */
.nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 450px;
    height: 100vh;
    background: radial-gradient(circle at top right, rgba(10, 25, 45, 0.98), rgba(5, 12, 25, 0.95));
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-left: 1px solid rgba(0, 219, 255, 0.15);
    box-shadow: -20px 0 80px rgba(0, 0, 0, 0.8);
    z-index: 9998;

    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);

    display: flex;
    flex-direction: column;
    padding: 140px 60px 60px 60px;
}

.nav-overlay.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.nav-backdrop {
    display: none;
}

.nav-content-grid {
    padding: 0;
    margin: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Remove backdrop for dropdown */

.nav-content-grid {
    padding: 10px;
    margin: 0;
    max-width: none;
    display: block;
}

.nav-header-mobile {
    display: none;
}

/* Links List */
/* Links List */
.nav-primary-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    flex-grow: 1;
}

.nav-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px var(--accent-glow);
}

.nav-item:hover {
    color: #fff;
    transform: translateX(15px);
    text-shadow: 0 0 40px rgba(0, 219, 255, 0.4);
}

.nav-item:hover::after {
    width: 60px;
}

.nav-item.highlight {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 219, 255, 0.2);
}

/* Staggered Entrance Animation */
.nav-overlay.active .nav-item {
    animation: slideInNav 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
}

@keyframes slideInNav {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-item:nth-child(2) {
    animation-delay: 0.15s;
}

.nav-item:nth-child(3) {
    animation-delay: 0.2s;
}

.nav-item:nth-child(4) {
    animation-delay: 0.25s;
}

.nav-item:nth-child(5) {
    animation-delay: 0.3s;
}

.nav-item:nth-child(6) {
    animation-delay: 0.35s;
}

/* Footer in Dropdown */
.nav-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

/* Menu Trigger - Fixed Priority */
.menu-trigger {
    z-index: 9999;
}

/* SYMMETRICAL X ANIMATION */
.hamburger-icon {
    position: relative;
    width: 24px;
    height: 14px;
    /* Explicit height context */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    width: 100% !important;
    /* Force full width */
    height: 2px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: absolute;
    left: 0;
}

.hamburger-icon span:first-child {
    top: 0;
}

.hamburger-icon span:last-child {
    bottom: 0;
}

/* Active State (X) */
.menu-trigger.active {
    min-width: 60px;
    /* Collapse to smaller pill/circle */
    gap: 0;
    padding: 10px 18px;
}

.menu-trigger.active .hamburger-icon span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-trigger.active .hamburger-icon span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.menu-trigger.active .menu-label {
    opacity: 0;
    width: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.lang-switcher-overlay {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-self: flex-start;
}

.lang-label {
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-left: 15px;
    margin-right: 5px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 18px;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-btn.active {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.nav-contact-brief {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.nav-contact-brief a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-contact-brief a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-item {
        font-size: 2.5rem;
    }

    .nav-item:hover {
        padding-left: 20px;
    }

    .nav-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-contact-brief {
        align-items: flex-start;
    }

    .navbar-container {
        padding: 0 20px;
    }
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
    text-align: center
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 180, 216, .3)
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, .4)
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary)
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px)
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px
}

.btn-block {
    width: 100%;
    display: block
}

.glow-hover:hover {
    box-shadow: 0 0 30px rgba(0, 180, 216, .6)
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('hero_realistic.png') no-repeat center center/cover;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
    color: white;
    /* Default text color for hero */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 10, 20, 0.6) 0%, rgba(0, 10, 20, 0.3) 50%, rgba(0, 10, 20, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    /* Content above overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    color: white;
    /* Fallback */
    background: linear-gradient(135deg, #ffffff 0%, #00B4D8 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 45px auto;
    line-height: 1.6;
    max-width: 750px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 500;
    color: white;
    /* Ensure text is white */
    transition: all .3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 20px
}

.hero-visual {
    position: relative
}

.hero-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .15));
    animation: float 6s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.section {
    padding: 80px 20px
}

.section-title {
    font-family: Montserrat, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px
}

.section-intro {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.text-center {
    text-align: center
}

.bg-ice {
    background: var(--ice)
}

.bg-light {
    background: #F8F9FA
}

.bg-dark {
    background: var(--dark);
    color: white
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: all .3s ease
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15)
}

.standards-list {
    list-style: none
}

.standards-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--ice)
}

.standards-list li:last-child {
    border-bottom: none
}

.standards-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px
}

.parallax-section {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 60, 93, .7)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: all .4s ease
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, .15)
}

.f-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px
}

.feature-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px
}

.service-item {
    display: flex;
    gap: 25px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: all .3s ease
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12)
}

.service-icon {
    font-size: 50px;
    flex-shrink: 0
}

.service-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px
}

.service-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7
}

/* FAQ SECTION - Modern Redesign */
.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(5, 25, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.faq-item:hover,
.faq-item.active {
    background: rgba(5, 25, 40, 0.9);
    border-color: rgba(0, 219, 255, 0.4);
    box-shadow: 0 0 25px rgba(0, 219, 255, 0.1);
    transform: translateY(-2px);
}

/* Glow line on left for active items */
.faq-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: white;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: var(--accent);
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.4s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 219, 255, 0.1);
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    background: rgba(0, 219, 255, 0.2);
    box-shadow: 0 0 15px var(--accent-glow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Adjust based on content */
    padding: 0 25px 25px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px
}

.fleet-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: all .3s ease
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15)
}

.fleet-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px
}

.fleet-features {
    background: rgba(5, 25, 40, 0.7);
    /* Dark Glass */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.fleet-features h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    /* White text for dark bg */
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.features-list li {
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    /* Light text */
}

.features-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px
}

.coverage-col h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px
}

.regions-list,
.pricing-list {
    list-style: none
}

.regions-list li,
.pricing-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--ice)
}

.regions-list li::before {
    content: "📍";
    position: absolute;
    left: 0
}

.pricing-list li::before {
    content: "💶";
    position: absolute;
    left: 0
}

.note {
    margin-top: 20px;
    padding: 15px;
    background: var(--ice);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-light)
}

.map-wrapper {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15)
}

.map-img {
    width: 100%;
    height: auto;
    display: block
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative
}

/* TESTIMONIALS - Redesign */
.testimonial-card {
    background: rgba(5, 25, 40, 0.6);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: none;
    /* Hidden by default for carousel */
    animation: fadeIn 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.stars {
    color: var(--accent);
    /* Cyan stars */
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.author {
    margin-top: 20px;
}

.author strong {
    display: block;
    color: white;
    font-size: 1.1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    transform: scale(1.2);
}

.dot:hover {
    transform: scale(1.3)
}

/* CONTACT SECTION - Redesign */
.contact-containerbox {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-form-wrapper {
    background: rgba(5, 25, 40, 0.6);
    /* Dark glass */
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 700px;
}

/* Floating Labels */
.floating-group {
    position: relative;
    margin-bottom: 25px;
}

.floating-group input,
.floating-group select,
.floating-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 16px;
    color: white;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.floating-group textarea {
    resize: none;
}

.floating-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 16px;
    background: transparent;
}

/* Focus & Filled States */
.floating-group input:focus,
.floating-group select:focus,
.floating-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 219, 255, 0.1);
}

.floating-group input:focus~label,
.floating-group input:not(:placeholder-shown)~label,
.floating-group textarea:focus~label,
.floating-group textarea:not(:placeholder-shown)~label,
.floating-group select:focus~label,
.floating-group select:valid~label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: var(--accent);
    background: #020B12;
    /* Match section bg to hide line */
    padding: 0 5px;
}

.success-message {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 219, 255, 0.1);
    border: 1px solid var(--accent);
    color: white;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: slideUp 0.5s ease;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    display: none;
}

.footer {
    padding: 60px 20px 30px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 12px
}

.footer-col a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 14px;
    transition: color .3s ease
}

.footer-col a:hover {
    color: var(--accent)
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .5);
    font-size: 14px
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease
}

.fade-in.visible {
    opacity: 1
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s ease
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.delay-1 {
    transition-delay: .2s
}

.delay-2 {
    transition-delay: .4s
}

.delay-3 {
    transition-delay: .6s
}

.hover-lift {
    transition: transform .3s ease
}

.hover-lift:hover {
    transform: translateY(-5px)
}

@media (max-width:968px) {

    .hero-grid,
    .about-grid,
    .coverage-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .features-grid,
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-title {
        font-size: 36px
    }

    .section-title {
        font-size: 32px
    }

    .parallax-section {
        background-attachment: scroll
    }
}

@media (max-width:640px) {
    .nav-links {
        display: none
    }

    .features-grid,
    .fleet-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-title {
        font-size: 28px
    }

    .section-title {
        font-size: 28px
    }

    .features-list {
        grid-template-columns: 1fr
    }
}

/* --- ADVANCED OVERHAUL STYLES --- */

/* Global Dark Theme Overrides */
:root {
    --primary: #051928;
    /* Deep Navy */
    --primary-light: #0B3C5D;
    --accent: #00DBFF;
    /* Neon Cyan */
    --accent-glow: rgba(0, 219, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #F0F4F8;
    /* Nearly White */
    --text-light: #AABBC6;
}

body {
    background-color: #020B12;
    /* Very dark blue/black */
    color: var(--text);
}

/* HERO SECTION - Immersive */
.hero {
    min-height: 100vh;
    background-color: #020B12;
    background-image: url('hero_future.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    /* Full screen */
}

/* Animated Ken Burns Effect on Background */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.hero::after {
    content: "";
    /* Background animator */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* We can't animate the :after like this easily if it inherits bg. 
       Instead, we put the image on a pseudo or inner div if we want true Ken Burns.
       For simplicity, let's keep fixed attachment but add a pulsing overlay. */
    background: radial-gradient(circle at center, transparent 0%, #020B12 90%);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(5, 25, 40, 0.6) 0%, rgba(2, 11, 18, 0.9) 100%);
    z-index: 2;
}

.hero-grid {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
}

/* Glitch/Typing Effect Logic would go in keyframes, keeping it css-only for now */
.hero-title {
    font-size: 4rem;
    /* Larger */
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    opacity: 0;
    /* Handled by JS fade-in */
    transform: translateY(20px);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

/* 3D Glass Buttons */
.btn {
    border-radius: 4px;
    /* More techy, less rounded */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.btn-primary {
    background: rgba(0, 219, 255, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-2px) scale(1.02);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}




/* SECTIONS GENERAL */
.section {
    position: relative;
    background: #020B12;
    /* Dark background for all */
    z-index: 2;
}

.bg-light,
.bg-ice {
    background: #06121E;
    /* Remove light backgrounds */
}

.section-title {
    color: white;
}

.section-intro {
    color: var(--text-light);
}

/* CARDS - Glassmorphism */
.card,
.feature-card,
.service-item,
.fleet-card,
.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--text);
    box-shadow: none;
    transition: all 0.4s ease;
}

.card:hover,
.feature-card:hover,
.service-item:hover,
.fleet-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 219, 255, 0.1);
}

.f-icon,
.service-icon {
    filter: drop-shadow(0 0 10px var(--accent-glow));
    /* Emojis might look weird in dark mode, ideally replaced with SVGs, 
       but for now we keep emojis or use a monochrome filter if needed. */
}

/* Fix for option visibility in dark mode */
.floating-group select option {
    background: #020B12;
    color: white;
}

/* FAQ Dark Mode */
.faq-question {
    background: transparent;
    color: white;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-answer {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-light);
}

.faq-question h4 {
    color: white;
}


/* CALCULATOR CTA - Tech Vibe */
/* Fleet Spacing Fix */
.fleet p.text-center {
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CALCULATOR CTA - Tech Vibe */
.calculator-cta {
    background: linear-gradient(rgba(2, 11, 18, 0.9), rgba(2, 11, 18, 0.95)), url('abstract_network.png');
    /* Darker overlay */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    border-top: 1px solid rgba(0, 219, 255, 0.3);
    border-bottom: 1px solid rgba(0, 219, 255, 0.3);
    padding: 100px 0;
    /* More padding */
    overflow: hidden;
}

/* Animated Border Glow */
.calculator-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    /* Removed box styling */
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, white, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-lg {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 219, 255, 0.2);
    border: 1px solid var(--accent);
    font-size: 1.1rem;
    padding: 15px 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.btn-lg:hover {
    background: white;
    box-shadow: 0 0 50px white;
    transform: scale(1.05);
}

/* FOOTER */
.footer {
    background: #01060A;
    /* Even darker */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- PHASE 3 REFINEMENTS --- */

/* 1. Slide-out Navigation Styles */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    display: block;
    /* Always visible now, replacing links */
}

.hamburger {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--accent);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Secondary nav styles removed as they are consolidated above */

.hidden-mobile {
    display: none;
    /* Hide 'Get Quote' button on mobile if needed, or keep */
}

@media(min-width: 768px) {
    .hidden-mobile {
        display: inline-block;
    }
}


/* 2. Hero Typography & Animation Polish */
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    /* Redefining for animation consistency */
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ffffff 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: shine 5s linear infinite !important;
}

/* Staggered text reveal animation class */
@keyframes splitReveal {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-title,
.hero-subtitle {
    /* Reinforce animation */
    animation-fill-mode: forwards;
}

.hero-content {
    /* Add a subtle dark gradient behind text for max readability */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    padding: 2rem;
    border-radius: 20px;
}


/* 3. Section Header Contrast Fix */
.section-title {
    color: #ffffff !important;
    /* Force white */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: -1px;
}

h3,
h4 {
    color: var(--text) !important;
}

h3 {
    color: var(--accent) !important;
    /* Make H3 subheaders pop */
}


/* 4. CTA Calculator Redesign (Glass HUD) */
.calculator-cta {
    background: url('abstract_network.png') !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    border: 1px solid var(--accent);
    box-shadow: inset 0 0 50px rgba(0, 219, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.calculator-cta::before {
    background: rgba(2, 11, 18, 0.9);
    /* Darker overlay */
}

/* "HUD" Lines */
.calculator-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, var(--accent) 1px, transparent 1px) 0 0,
        linear-gradient(0deg, var(--accent) 1px, transparent 1px) 0 0;
    background-size: 100px 100px;
    opacity: 0.1;
    pointer-events: none;
}

.cta-content {
    background: rgba(5, 25, 40, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: inline-block;
    /* Wrap content */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.cta-title {
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: black;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 219, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: white;
    box-shadow: 0 0 30px rgba(0, 219, 255, 0.6);
    transform: translateY(-5px);
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: bold;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--accent);
    color: black;
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-3px);
}