/* ========================================
   LUXURY CAR TRANSPORT RIYADH
   Premium Transportation Theme
   ======================================== */

/* ── CSS Custom Properties ── */
:root {
    /* Brand Colors */
    --coral: #F68484;
    --coral-light: #F89E9E;
    --coral-dark: #E46B6B;
    --purple: #7C6CF4;
    --purple-light: #9B8EF7;
    --purple-dark: #6355D4;
    --coral-glow: rgba(246, 132, 132, 0.15);
    --purple-glow: rgba(124, 108, 244, 0.15);

    /* Primary Palette — White */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F8FB;
    --bg-tertiary: #F0F0F5;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FAFAFD;

    /* Alternate Sections */
    --bg-light: #F9F9FC;
    --bg-light-alt: #F2F1F8;

    /* Dark Sections */
    --bg-dark: #1A1428;
    --bg-dark-card: #241E36;

    /* Text */
    --text-primary: #1A1428;
    --text-secondary: #5A5470;
    --text-muted: #8E88A0;
    --text-dark: #1A1428;
    --text-dark-secondary: #5A5470;

    /* Borders */
    --border: rgba(124, 108, 244, 0.1);
    --border-light: rgba(124, 108, 244, 0.08);

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1240px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(124, 108, 244, 0.06);
    --shadow-md: 0 4px 20px rgba(124, 108, 244, 0.1);
    --shadow-lg: 0 10px 40px rgba(124, 108, 244, 0.12);
    --shadow-coral: 0 4px 20px rgba(246, 132, 132, 0.3);
    --shadow-purple: 0 4px 20px rgba(124, 108, 244, 0.25);

    /* Typography */
    --font-display: 'Google Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-body: 'Google Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-accent: 'Google Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── Utilities ── */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 860px;
}

.text-gold { color: var(--coral); }

/* On dark backgrounds, accent text uses coral */
.hero .text-gold,
.cta-banner .text-gold,
.final-cta .text-gold,
.services .text-gold,
.coverage .text-gold { color: var(--coral); }

.icon-xs { width: 16px; height: 16px; flex-shrink: 0; }
.icon-sm { width: 20px; height: 20px; flex-shrink: 0; }
.icon-md { width: 28px; height: 28px; flex-shrink: 0; }
.icon-lg { width: 40px; height: 40px; flex-shrink: 0; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn--gold {
    background: linear-gradient(135deg, var(--coral), var(--purple));
    color: #FFFFFF;
    border-color: transparent;
}
.btn--gold:hover {
    background: linear-gradient(135deg, var(--coral-dark), var(--purple-dark));
    box-shadow: var(--shadow-coral);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
    border-color: #FFFFFF;
    background: rgba(255,255,255,0.15);
    color: #FFFFFF;
}

.btn--outline-gold {
    background: transparent;
    color: var(--purple);
    border-color: var(--purple);
}
.btn--outline-gold:hover {
    background: var(--purple);
    color: #FFFFFF;
}

.btn--whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}
.btn--whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ── Section Headers ── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--purple);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header--light .section-title {
    color: #FFFFFF;
}
.section-header--light .section-eyebrow {
    color: var(--coral);
}
.section-header--light .section-subtitle {
    color: rgba(255,255,255,0.65);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text__main {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--purple);
    letter-spacing: 0.1em;
}

.logo-text__sub {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--purple);
    background: var(--purple-glow);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.header__phone:hover { color: var(--purple); }

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

.header__hamburger span {
    width: 24px;
    height: 2px;
    background: #111111;
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero__slider {
    position: relative;
    flex: 1;
    min-height: 100vh;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    overflow: hidden;
}

.hero__slide.active {
    opacity: 1;
    pointer-events: all;
}

.hero__bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    transition: transform 8s ease;
}

.hero__slide.active .hero__bg {
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 20, 40, 0.92) 0%,
        rgba(26, 20, 40, 0.8) 50%,
        rgba(26, 20, 40, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 180px;
    max-width: 720px;
}

.hero__tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--coral-light);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Controls */
.hero__controls {
    position: absolute;
    bottom: 160px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero__lines {
    display: flex;
    gap: 8px;
}

.hero__line {
    width: 48px;
    height: 3px;
    border-radius: 3px;
    border: none;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.hero__line.active {
    background: var(--coral);
    width: 72px;
}

/* Hero Stats */
.hero__stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(26, 20, 40, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-stats {
    display: none;
    background: var(--purple-deep, #1A1428);
    padding: 24px 0;
}

.mobile-stats .stats-bar {
    color: #fff;
}

.mobile-stats .stat__number,
.mobile-stats .stat__suffix {
    color: #fff;
}

.mobile-stats .stat__label {
    color: rgba(255,255,255,0.6);
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 28px 0;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
}

.stat__suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.stat__label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    letter-spacing: 0.05em;
}

/* ========================================
   BOOKING FORM
   ======================================== */
.booking {
    padding: 80px 0;
    background: var(--bg-light);
}

.booking__card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.booking__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.booking__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark-secondary);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #E1E4E8;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #FAFBFC;
    transition: var(--transition);
    outline: none;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    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='%23555' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 40px;
    cursor: pointer;
    font-size: 16px;
}

/* Custom Dropdown */
.custom-select {
    position: relative;
}

.custom-select select {
    display: none;
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1.5px solid #E1E4E8;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background: #FAFBFC;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    user-select: none;
}

.custom-select__trigger.placeholder {
    color: #999;
}

.custom-select__trigger:hover {
    border-color: #ccc;
}

.custom-select.open .custom-select__trigger {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    background: #fff;
}

.custom-select__arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select__arrow {
    transform: rotate(180deg);
}

.custom-select__options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #E1E4E8;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 100;
    max-height: 240px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.custom-select.open .custom-select__options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select__option {
    padding: 11px 16px;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.15s ease;
}

.custom-select__option:hover {
    background: #f0f0f0;
}

.custom-select__option.selected {
    background: var(--gold-glow);
    font-weight: 600;
}

.custom-select__options::-webkit-scrollbar {
    width: 6px;
}

.custom-select__options::-webkit-scrollbar-track {
    background: transparent;
}

.custom-select__options::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.custom-select.error .custom-select__trigger {
    border-color: #e74c3c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    background: #fff;
}

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

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-us__card {
    text-align: center;
    padding: 40px 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.why-us__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-us__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-glow);
    border-radius: 16px;
    color: var(--purple);
}

.why-us__icon i {
    width: 28px;
    height: 28px;
}

.why-us__card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-us__card p {
    font-size: 0.92rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

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

.service-card {
    background: var(--bg-dark-card);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid rgba(124, 108, 244, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: rgba(246, 132, 132, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(124, 108, 244, 0.15);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral), var(--purple));
    border-radius: 14px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.service-card__icon i {
    width: 26px;
    height: 26px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.service-card__desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.service-card__features li i {
    color: var(--coral);
}

.service-card .btn--gold {
    background: linear-gradient(135deg, var(--coral), var(--purple));
    color: #FFFFFF;
    border-color: transparent;
}
.service-card .btn--gold:hover {
    background: linear-gradient(135deg, var(--coral-light), var(--purple-light));
    box-shadow: var(--shadow-coral);
}

.services__cta {
    text-align: center;
    margin-top: 48px;
}

.services__cta .btn--outline-gold {
    color: var(--coral-light);
    border-color: var(--coral);
}
.services__cta .btn--outline-gold:hover {
    background: var(--coral);
    color: #FFFFFF;
}

/* ========================================
   FLEET
   ======================================== */
.fleet {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.fleet .section-title,
.fleet .section-eyebrow {
    color: var(--text-dark);
}

.fleet .section-subtitle {
    color: var(--text-dark-secondary);
}

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

.fleet-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.fleet-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.fleet-card:hover .fleet-card__image img {
    transform: scale(1.05);
}

.fleet-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(26, 20, 40, 0.85);
    color: var(--coral-light);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fleet-card__body {
    padding: 20px;
}

.fleet-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.fleet-card__specs {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.fleet-card__specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-dark-secondary);
}

.fleet-card__specs i {
    color: var(--purple);
}

.fleet-card__features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    padding-left: 0;
}

.fleet-card__features li {
    font-size: 0.8rem;
    color: var(--text-dark-secondary);
    padding-left: 16px;
    position: relative;
}

.fleet-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
}

/* Fleet Stats */
.fleet__stats {
    margin-top: 60px;
    padding: 32px 40px;
    background: var(--bg-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.fleet__stats-icon {
    color: var(--coral);
}

.fleet__stats-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.fleet__stats-row {
    display: flex;
    gap: 48px;
    margin-left: auto;
}

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

.fleet-stat__number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
}

.fleet-stat__label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

/* ========================================
   AMENITIES
   ======================================== */
.amenities {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

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

.amenities__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.amenities__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.amenities__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 20, 40, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid rgba(124, 108, 244, 0.25);
}

.amenities__image-badge span {
    color: var(--coral-light);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-accent);
    font-style: italic;
    letter-spacing: 0.02em;
}

.amenities__content .section-title {
    text-align: left;
    color: var(--text-dark);
}

.amenities__content .section-eyebrow {
    text-align: left;
}

.amenities__desc {
    font-size: 1rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.amenities__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.amenity-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.amenity-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.amenity-item p {
    font-size: 0.82rem;
    color: var(--text-dark-secondary);
    line-height: 1.5;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,20,40,0.92), rgba(26,20,40,0.7));
}

.cta-banner__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.cta-banner__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-banner__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.testimonials .section-title {
    color: var(--text-dark);
}

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

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    color: var(--coral);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--purple));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.testimonial-card__author span {
    font-size: 0.78rem;
    color: var(--text-dark-secondary);
}

/* ========================================
   COVERAGE
   ======================================== */
.coverage {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

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

.coverage__city {
    background: var(--bg-dark-card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(124, 108, 244, 0.1);
    transition: var(--transition);
    text-align: center;
}

.coverage__city:hover {
    border-color: var(--coral);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(246, 132, 132, 0.15);
}

.coverage__city i {
    margin-bottom: 10px;
    color: var(--coral);
}

.coverage__city h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.coverage__city p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.faq .section-title {
    color: var(--text-dark);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item.open {
    border-color: var(--purple);
    box-shadow: 0 2px 12px var(--purple-glow);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 16px;
}

.faq__icon {
    width: 20px;
    height: 20px;
    color: var(--purple);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq__item.open .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.open .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.final-cta__content {
    max-width: 640px;
    margin: 0 auto;
}

.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.final-cta__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
}

.final-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #130F1E;
    padding: 80px 0 0;
    border-top: 1px solid rgba(124, 108, 244, 0.1);
}

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

.footer__about {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-top: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.footer__social a:hover {
    color: var(--coral);
    border-color: var(--coral);
}

.footer__social a i {
    width: 18px;
    height: 18px;
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col ul a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer__col ul a:hover {
    color: var(--coral);
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer__contact i {
    color: var(--coral);
    margin-top: 3px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    color: rgba(255,255,255,0.4);
}
.footer__links a:hover {
    color: var(--coral);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--purple);
    border: 1px solid transparent;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--purple-dark);
    box-shadow: var(--shadow-purple);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .fleet__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .fleet__stats {
        flex-direction: column;
        text-align: center;
    }

    .fleet__stats-row {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 48px;
    }

    /* Header Mobile */
    .header__nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px 24px;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
        border-bottom: 1px solid var(--border);
    }

    .header__nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__list {
        flex-direction: column;
        gap: 4px;
    }

    .nav__link {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .header__hamburger {
        display: flex;
    }

    .header__phone span {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
        height: 100svh;
        overflow: hidden;
    }

    .hero__slider {
        min-height: 100svh;
        height: 100svh;
    }

    .hero__content {
        min-height: 100svh;
        height: 100svh;
        padding-top: 100px;
        padding-bottom: 160px;
        box-sizing: border-box;
    }

    .hero__stats {
        display: none;
    }

    .mobile-stats {
        display: block;
    }

    .stats-bar {
        padding: 16px 0;
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__controls {
        bottom: 130px;
    }

    .stat {
        flex: 1 0 40%;
    }

    /* Booking */
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .booking {
        padding: 48px 0;
    }

    .booking__card {
        padding: 28px 20px;
    }

    /* Sections */
    .why-us__grid,
    .services__grid,
    .fleet__grid,
    .testimonials__grid,
    .coverage__grid {
        grid-template-columns: 1fr;
    }

    .amenities__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .amenities__image img {
        height: 300px;
    }

    .amenities__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .back-to-top {
        right: 16px;
        bottom: 96px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero__content {
        padding-top: 90px;
        padding-bottom: 140px;
    }

    .hero__desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
    }

    .cta-banner__actions,
    .final-cta__actions {
        flex-direction: column;
        align-items: center;
    }

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