/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1F5FE0;
    --primary-dark: #143D94;
    --primary-light: #4B85F0;
    --accent: #FF6A2C;
    --accent-dark: #E5551A;
    --ink: #0E1729;
    --slate: #3E4C63;
    --muted: #7C8AA0;
    --muted-light: #A7B2C4;
    --bg: #FFFFFF;
    --bg-soft: #F4F7FB;
    --bg-soft-2: #EAF0F9;
    --surface: #FFFFFF;
    --white: #FFFFFF;
    --dark: #0E1729;
    --dark-2: #16213A;
    --line: #E5EAF1;
    --line-strong: #D3DBE8;
    --shadow-sm: 0 2px 10px rgba(14, 23, 41, 0.05);
    --shadow-md: 0 12px 34px rgba(14, 23, 41, 0.08);
    --shadow-lg: 0 24px 60px rgba(14, 23, 41, 0.12);
    --shadow-xl: 0 34px 80px rgba(14, 23, 41, 0.16);
    --shadow-primary: 0 14px 34px rgba(31, 95, 224, 0.28);
    --shadow-accent: 0 14px 34px rgba(255, 106, 44, 0.3);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    color: var(--ink);
    line-height: 1.2;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-road {
    width: 120px;
    height: 6px;
    margin: 0 auto 20px;
    border-radius: 3px;
    background: var(--bg-soft-2);
    position: relative;
    overflow: hidden;
}

.preloader-road::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    animation: roadRun 1s ease-in-out infinite;
}

@keyframes roadRun {
    0% { left: -40%; }
    100% { left: 100%; }
}

.preloader-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--ink);
}

.preloader-text span { color: var(--primary); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--line);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: var(--shadow-primary);
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: var(--ink);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 11px 26px;
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

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

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--line-strong);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--bg-soft);
    transform: translateY(-3px);
}

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

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-full { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===== SECTION STYLES ===== */
.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(31, 95, 224, 0.08);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-tag.accent {
    background: rgba(255, 106, 44, 0.1);
    color: var(--accent-dark);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-title em {
    color: var(--primary);
    font-style: normal;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 150px 0 120px;
    background:
        radial-gradient(ellipse at 85% 10%, rgba(31, 95, 224, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 90%, rgba(255, 106, 44, 0.07) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 22px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-title em {
    color: var(--primary);
    font-style: normal;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 34px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 44px;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat { text-align: left; }

.stat-number {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--ink);
}

.stat-suffix {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: var(--line-strong);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.9s ease-out 0.4s both;
}

.hero-visual-blob {
    position: absolute;
    inset: -8% -6% -8% 6%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 42% 58% 55% 45% / 55% 45% 55% 45%;
    z-index: 0;
    animation: blobMorph 12s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 42% 58% 55% 45% / 55% 45% 55% 45%; }
    50% { border-radius: 55% 45% 42% 58% / 45% 55% 45% 55%; }
}

.hero-visual-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-visual-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-float-card.top {
    top: 24px;
    left: -28px;
    animation: floatY 4s ease-in-out infinite;
}

.hero-float-card.bottom {
    bottom: 28px;
    right: -22px;
    animation: floatY 4s ease-in-out infinite 1.5s;
}

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

.hero-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-float-icon.blue { background: rgba(31,95,224,0.1); color: var(--primary); }
.hero-float-icon.orange { background: rgba(255,106,44,0.12); color: var(--accent-dark); }

.hero-float-card .fc-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.hero-float-card .fc-sub { font-size: 0.72rem; color: var(--muted); }

/* ===== BOOKING BAR ===== */
.booking-bar {
    position: relative;
    z-index: 20;
    max-width: 1180px;
    margin: -50px auto 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 18px;
    align-items: end;
}

.booking-field { display: flex; flex-direction: column; gap: 7px; text-align: left; }

.booking-field label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--muted);
    padding-left: 2px;
}

.booking-field input,
.booking-field select {
    padding: 13px 16px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--bg-soft);
    outline: none;
    transition: all var(--transition);
    width: 100%;
}

.booking-field input:focus,
.booking-field select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(31,95,224,0.1);
}

.booking-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231F5FE0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.booking-bar .btn { height: 49px; }

/* ===== FEATURES STRIP ===== */
.features {
    padding: 90px 0;
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(31,95,224,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-card:nth-child(2) .feature-card-icon { background: rgba(255,106,44,0.1); color: var(--accent-dark); }
.feature-card:nth-child(4) .feature-card-icon { background: rgba(255,106,44,0.1); color: var(--accent-dark); }

.feature-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--muted); }

/* ===== CATEGORIES ===== */
.categories {
    padding: 110px 0;
    background: var(--bg-soft);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 30px 22px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.category-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    line-height: 1;
}

.category-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.category-card span { font-size: 0.82rem; color: var(--muted); }

/* ===== VEHICLES ===== */
.vehicles {
    padding: 110px 0;
    background: var(--bg);
}

.vehicles-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.vehicles-head .section-header {
    text-align: left;
    margin: 0;
    max-width: none;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vehicle-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vehicle-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-soft);
}

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

.vehicle-card:hover .vehicle-img img { transform: scale(1.07); }

.vehicle-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
}

.vehicle-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.vehicle-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vehicle-name {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}

.vehicle-name h3 { font-size: 1.2rem; font-weight: 700; }

.vehicle-rating { font-size: 0.82rem; color: var(--muted); white-space: nowrap; }
.vehicle-rating strong { color: var(--accent-dark); }

.vehicle-class { font-size: 0.82rem; color: var(--muted); margin-bottom: 18px; }

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 18px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.85rem;
    color: var(--slate);
}

.spec svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.7;
}

.vehicle-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 12px;
}

.vehicle-price .amount {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
}

.vehicle-price .amount span { color: var(--primary); }
.vehicle-price .per { font-size: 0.78rem; color: var(--muted); display: block; margin-top: -2px; }

.vehicle-card.hidden { display: none; }

/* ===== HOW IT WORKS ===== */
.how {
    padding: 110px 0;
    background: var(--bg-soft);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

.how-step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.how-num {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.how-step:nth-child(2) .how-num { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: var(--shadow-accent); }

.how-step h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.how-step p { font-size: 0.92rem; color: var(--muted); }

/* ===== ABOUT ===== */
.about {
    padding: 110px 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-images { position: relative; }

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -26px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 22px 26px;
    text-align: center;
}

.about-badge .num {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-badge .lbl { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

.about-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}

.about-list-item { display: flex; gap: 14px; align-items: flex-start; }

.about-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(31,95,224,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-list-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.about-list-item p { font-size: 0.9rem; color: var(--muted); }

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 110px 0;
    background: var(--bg-soft);
}

.testimonials-slider {
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.testimonial-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author h4 { font-size: 1rem; font-weight: 700; }
.testimonial-author span { font-size: 0.82rem; color: var(--muted); }

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--white);
    font-size: 1.1rem;
    color: var(--slate);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.testimonial-dots { display: flex; gap: 8px; }

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line-strong);
    cursor: pointer;
    transition: all var(--transition);
}

.testimonial-dots .dot.active { background: var(--primary); width: 30px; border-radius: 5px; }

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(14,23,41,0.94), rgba(20,61,148,0.9)), url('assets/cta-bg.jpeg') center/cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-content h2 em { color: var(--accent); font-style: normal; }

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
    padding: 110px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 18px; }

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(31,95,224,0.08);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-card h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 26px; }

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

.form-group { margin-bottom: 0; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--bg-soft);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(31,95,224,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231F5FE0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.contact-form .btn { margin-top: 8px; padding: 16px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--muted-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.social-link {
    padding: 8px 16px;
    background: rgba(255,255,255,0.07);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}

.social-link:hover { background: var(--primary); color: var(--white); }

.footer-links h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary-light); }

.footer-newsletter h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.footer-newsletter p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }

.newsletter-form { display: flex; }

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 50px 0 0 50px;
    background: rgba(255,255,255,0.09);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--primary-dark); }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== BACK TO TOP & WHATSAPP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all var(--transition);
}

.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4); }
.whatsapp-icon { font-size: 1.2rem; }

/* ===== PAGE HEADER (vehicles.html) ===== */
.page-header {
    padding: 160px 0 70px;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(31, 95, 224, 0.1) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    text-align: center;
}

.page-header .breadcrumb {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 14px;
}

.page-header .breadcrumb a:hover { color: var(--primary); }

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.page-header h1 em { color: var(--primary); font-style: normal; }
.page-header p { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 26px;
    border: 1px solid var(--line-strong);
    background: var(--white);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.filter-empty {
    display: none;
    text-align: center;
    padding: 60px 0;
    color: var(--muted);
    font-size: 1rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 560px; }
    .booking-bar { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
    .booking-bar .btn { grid-column: span 2; width: 100%; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--line);
    }

    .hero { padding: 130px 0 90px; }
    .hero-stats { gap: 22px; flex-wrap: wrap; }
    .stat-number { font-size: 1.9rem; }
    .hero-float-card.top { left: 8px; }
    .hero-float-card.bottom { right: 8px; }

    .booking-bar { grid-template-columns: 1fr; }
    .booking-bar .btn { grid-column: span 1; }

    .features-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicles-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .vehicles-head { flex-direction: column; align-items: flex-start; }

    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-img-main img { height: 340px; }
    .about-badge { right: 16px; bottom: -20px; }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .testimonial-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.3rem; }
    .whatsapp-btn { padding: 12px 18px; font-size: 0.8rem; }
    .whatsapp-text { display: none; }
}
