/* ==========================================
   FOUAD CAR — Deep Navy & Electric Blue CSS
   ========================================== */

/* === Design Tokens === */
:root {
    --primary: #29b6f6;
    --primary-light: #4fc3f7;
    --primary-dark: #0288d1;
    --primary-glow: rgba(41, 182, 246, 0.25);

    --accent: #00e5ff;
    --accent-warm: #ffd740;

    --bg-dark: #060e1a;
    --bg-section: #0b1628;
    --bg-alt: #0d1f35;
    --bg-card: #0f2440;
    --bg-card-hover: #143052;
    --bg-glass: rgba(11, 22, 40, 0.85);

    --text-primary: #eaf6ff;
    --text-secondary: #8bb8d8;
    --text-muted: #5a8aaa;

    --border-color: rgba(41, 182, 246, 0.12);
    --border-hover: rgba(41, 182, 246, 0.35);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 35px rgba(41, 182, 246, 0.12);
    --shadow-glow-strong: 0 0 50px rgba(41, 182, 246, 0.2);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s cubic-bezier(.4, 0, .2, 1);
    --transition-base: 0.35s cubic-bezier(.4, 0, .2, 1);
    --transition-slow: 0.5s cubic-bezier(.4, 0, .2, 1);
}

/* === Reset === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-secondary);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Preloader === */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.car-icon-loader {
    font-size: 64px;
    animation: carDrive 1.2s ease-in-out infinite;
}

@keyframes carDrive {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(12px) rotate(2deg);
    }

    75% {
        transform: translateX(-12px) rotate(-2deg);
    }
}

.loader-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 18px 0;
    letter-spacing: 4px;
}

.loader-bar {
    width: 220px;
    height: 4px;
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    animation: loaderFill 1.6s ease-in-out forwards;
}

@keyframes loaderFill {
    to {
        width: 100%;
    }
}

/* === Particles === */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* === Navigation === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition-base);
    background: transparent;
}

#navbar.scrolled,
#navbar.nav-solid {
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 30px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.logo-highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 0.87rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(41, 182, 246, 0.06);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 30%, rgba(41, 182, 246, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 229, 255, 0.05) 0%, transparent 60%),
        var(--bg-dark);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(41, 182, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -250px;
    right: -200px;
    animation: floatShape 16s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -150px;
    left: -150px;
    animation: floatShape 13s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--primary-dark);
    top: 40%;
    left: 10%;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: var(--accent);
    bottom: 30%;
    right: 10%;
    animation: floatShape 18s ease-in-out infinite reverse;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -40px) scale(1.07);
    }

    66% {
        transform: translate(-25px, 25px) scale(0.93);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 130px 0 90px;
}

.hero-badge {
    display: inline-block;
    background: rgba(41, 182, 246, 0.08);
    border: 1px solid var(--border-color);
    color: var(--primary-light);
    padding: 10px 26px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(41, 182, 246, 0.15);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(41, 182, 246, 0);
    }
}

.hero-title {
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 900;
    letter-spacing: 8px;
    line-height: 1.05;
    margin-bottom: 22px;
    text-shadow: 0 0 60px rgba(41, 182, 246, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    border: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.btn:hover .btn-shine {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 22px rgba(41, 182, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(41, 182, 246, 0.45);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(41, 182, 246, 0.08);
    transform: translateY(-3px);
    color: var(--primary-light);
    box-shadow: 0 4px 20px rgba(41, 182, 246, 0.15);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === Hero Stats === */
.hero-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px 40px;
    max-width: 750px;
    margin: 0 auto;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Scroll Indicator === */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-hover);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 9px;
    background: var(--primary);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* === Sections === */
.section {
    padding: 110px 0;
    background: var(--bg-dark);
    position: relative;
}

.section-alt {
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    background: rgba(41, 182, 246, 0.08);
    border: 1px solid var(--border-color);
    color: var(--primary);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

/* === About Section === */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.about-text-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.about-emoji-large {
    font-size: 60px;
    margin-bottom: 20px;
}

.about-text-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-text-card p {
    font-size: 1rem;
    line-height: 1.85;
    max-width: 700px;
    margin: 0 auto 12px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-base);
}

.about-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.about-card-icon {
    font-size: 44px;
    margin-bottom: 18px;
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.93rem;
    line-height: 1.7;
}

/* === Services === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-glow), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover .service-glow {
    opacity: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 46px;
    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.service-tag {
    display: inline-block;
    background: rgba(41, 182, 246, 0.07);
    color: var(--primary);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(41, 182, 246, 0.1);
}

/* === Advantages === */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    transition: all var(--transition-base);
    position: relative;
}

.advantage-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.advantage-number {
    position: absolute;
    top: 16px;
    right: 22px;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(41, 182, 246, 0.06);
    line-height: 1;
}

.advantage-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.advantage-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.93rem;
    line-height: 1.75;
}

/* === Fleet === */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 28px 32px;
    transition: all var(--transition-base);
    position: relative;
}

.fleet-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.fleet-featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.06), var(--bg-card));
}

.fleet-ribbon {
    position: absolute;
    top: 16px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(41, 182, 246, 0.3);
}

.fleet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.fleet-emoji {
    font-size: 52px;
}

.fleet-badge {
    background: rgba(41, 182, 246, 0.08);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.fleet-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.fleet-card>p {
    font-size: 0.93rem;
    margin-bottom: 22px;
    line-height: 1.75;
}

.fleet-features {
    margin-bottom: 24px;
}

.fleet-features li {
    padding: 7px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(41, 182, 246, 0.05);
}

.fleet-features li:last-child {
    border-bottom: none;
}

.fleet-price {
    padding: 16px;
    background: rgba(41, 182, 246, 0.05);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
}

.price-from {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.price-amount small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* === Testimonials === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.testimonial-quote {
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(41, 182, 246, 0.1);
    line-height: 1;
}

.testimonial-stars {
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 0.97rem;
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 28px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    font-size: 34px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 182, 246, 0.07);
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === FAQ === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.97rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-fast);
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(41, 182, 246, 0.08);
    transition: all var(--transition-base);
}

.faq-icon {
    width: 12px;
    height: 12px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 5px;
    left: 0;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 0;
    left: 5px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle {
    background: var(--primary);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 26px 22px;
    font-size: 0.93rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.contact-card:hover {
    border-color: var(--border-hover);
    transform: translateX(8px);
    box-shadow: var(--shadow-glow);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

.contact-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.9rem;
    line-height: 1.65;
}

.contact-card a {
    word-break: break-all;
}

/* === Form === */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
}

.contact-form h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.93rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(41, 182, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2329b6f6' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* === Footer === */
.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 44px;
}

.footer-brand p {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.75;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-group h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text-primary);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 12px;
    line-height: 1.65;
}

.footer-contact a {
    color: var(--primary);
    word-break: break-all;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--primary);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 22px rgba(41, 182, 246, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(41, 182, 246, 0.5);
}

/* === Privacy === */
.privacy-hero {
    padding: 170px 0 85px;
    background: radial-gradient(ellipse at 30% 30%, rgba(41, 182, 246, 0.07) 0%, transparent 60%),
        var(--bg-section);
    text-align: center;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.privacy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 38px 34px;
    transition: all var(--transition-base);
}

.privacy-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.privacy-icon {
    font-size: 38px;
    margin-bottom: 18px;
}

.privacy-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.privacy-card p {
    font-size: 0.95rem;
    line-height: 1.85;
}

.privacy-back {
    text-align: center;
    margin-top: 50px;
}

/* === Animations === */
[data-animate] {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* === Toast === */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 35px rgba(41, 182, 246, 0.4);
    z-index: 10000;
    transition: transform var(--transition-base);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        padding: 24px 28px;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right var(--transition-base);
        border-left: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    .about-grid,
    .services-grid,
    .advantages-grid,
    .fleet-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .scroll-indicator {
        display: none;
    }

    .about-text-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .hero-stats {
        padding: 20px 16px;
    }
}