/* Travito - Modern Premium Design 2026 */
/* Inspired by: Everest Taxis (warm colors) + Uber/Lyft (app-like) + Blacklane (premium) */

:root {
    /* Warm Professional Color Palette */
    --primary: #ff5722;
    --primary-dark: #e64a19;
    --primary-light: #ff7043;
    --secondary: #ff9800;
    --accent: #ffc107;
    
    /* Neutrals */
    --dark: #0d1117;
    --grey-900: #1a1f2e;
    --grey-800: #2d3548;
    --grey-700: #4a5568;
    --grey-600: #718096;
    --grey-500: #a0aec0;
    --grey-400: #cbd5e0;
    --grey-300: #e2e8f0;
    --grey-200: #edf2f7;
    --grey-100: #f7fafc;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
    --gradient-soft: linear-gradient(135deg, #ff7043 0%, #ffb74d 100%);
    --gradient-dark: linear-gradient(135deg, #0d1117 0%, #1a1f2e 100%);
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(13, 17, 23, 0.06);
    --shadow-md: 0 4px 16px rgba(13, 17, 23, 0.1);
    --shadow-lg: 0 8px 32px rgba(13, 17, 23, 0.15);
    --shadow-xl: 0 16px 48px rgba(13, 17, 23, 0.2);
    --glow: 0 0 40px rgba(255, 87, 34, 0.3);
    
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--grey-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

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

.container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--grey-200);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-warm);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--grey-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--grey-700);
    text-decoration: none;
    font-weight: 600;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-phone:hover {
    background: rgba(255, 87, 34, 0.1);
    color: var(--primary);
}

.btn-cta-nav {
    background: var(--gradient-warm);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--grey-900);
    cursor: pointer;
}

/* Hero Section */
.hero-modern {
    padding: 7rem 2rem 4rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fef5f1 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content-box {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 87, 34, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--grey-700);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--grey-300);
    border-bottom: 1px solid var(--grey-300);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--grey-600);
    font-weight: 600;
}

.hero-trust {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--grey-800);
    box-shadow: var(--shadow-sm);
}

.trust-badge i {
    color: var(--primary);
}

.hero-image-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-fleet-img {
    width: 110%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: floatImage 6s ease-in-out infinite;
}

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

/* Booking Bar */
.booking-bar {
    background: var(--gradient-warm);
    padding: 2.5rem 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 100;
}

.booking-wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.booking-title {
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.booking-title h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.booking-title p {
    opacity: 0.95;
    font-size: 1rem;
}

.booking-form-modern {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.form-fields-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr 1fr 1.2fr 1.5fr;
    gap: 1rem;
    align-items: end;
}

.field-group,
.field-group-small {
    display: flex;
    flex-direction: column;
}

.field-group label,
.field-group-small label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--grey-700);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.field-group label i,
.field-group-small label i {
    color: var(--primary);
    font-size: 0.875rem;
}

.field-group input,
.field-group select,
.field-group-small input {
    padding: 0.875rem 1rem;
    border: 2px solid var(--grey-300);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--grey-900);
    transition: var(--transition);
    background: var(--white);
    font-family: 'Inter', sans-serif;
}

.field-group input:focus,
.field-group select:focus,
.field-group-small input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.price-box {
    background: var(--gradient-warm);
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.price-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 900;
}

.btn-book {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-family: 'Inter', sans-serif;
}

.btn-book:hover {
    background: var(--grey-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Sections */
.section {
    padding: 5rem 2rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-header-center p {
    font-size: 1.125rem;
    color: var(--grey-600);
}

/* Why Choose Us */
.why-section {
    background: var(--white);
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--grey-200);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-warm);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.3);
}

.feature-card-modern h3 {
    font-size: 1.375rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-card-modern p {
    color: var(--grey-700);
    line-height: 1.7;
    font-size: 1rem;
}

/* Services */
.services-modern {
    background: linear-gradient(180deg, #fef5f1 0%, #ffffff 100%);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card-large {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--grey-200);
    transition: var(--transition);
    position: relative;
}

.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 87, 34, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
}

.service-icon-modern {
    width: 64px;
    height: 64px;
    background: var(--gradient-warm);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

.service-card-large h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-card-large p {
    color: var(--grey-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--grey-800);
}

.service-features i {
    color: var(--primary);
    font-size: 0.875rem;
}

/* Fleet */
.fleet-modern {
    background: var(--white);
}

.fleet-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.fleet-card-premium {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.fleet-card-premium.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.fleet-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.fleet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--grey-900);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.fleet-badge.premium {
    background: var(--gradient-warm);
}

.fleet-image-modern {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1), rgba(255, 152, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--primary);
}

.fleet-card-premium h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.fleet-subtitle {
    color: var(--grey-600);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.fleet-specs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--grey-800);
}

.spec i {
    color: var(--primary);
}

.fleet-price {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
}

.btn-fleet {
    display: inline-block;
    background: var(--gradient-warm);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.btn-fleet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

/* How It Works */
.how-it-works {
    background: linear-gradient(180deg, #fef5f1 0%, #ffffff 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--grey-200);
    transition: var(--transition);
    position: relative;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-warm);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 87, 34, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--grey-700);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.step-arrow {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials-modern {
    background: var(--white);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--grey-200);
    transition: var(--transition);
}

.testimonial-modern.featured-review {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.02), rgba(255, 152, 0, 0.02));
}

.testimonial-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.review-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--grey-800);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.reviewer-info strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.reviewer-info span {
    color: var(--grey-600);
    font-size: 0.875rem;
}

/* FAQ */
.faq-modern {
    background: linear-gradient(180deg, #fef5f1 0%, #ffffff 100%);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--grey-300);
    transition: var(--transition);
}

.faq-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-q i {
    color: var(--primary);
    font-size: 1.5rem;
}

.faq-q h3 {
    font-size: 1.125rem;
    color: var(--dark);
    font-weight: 700;
}

.faq-card p {
    color: var(--grey-700);
    line-height: 1.7;
    padding-left: 2.5rem;
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-warm);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary);
    padding: 1.25rem 3rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.125rem;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer-modern {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col-main {
    max-width: 400px;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.contact-item i {
    color: var(--secondary);
}

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

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

.footer-col h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer-col a,
.footer-col p {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.license-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.badge i {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 1200px) {
    .form-fields-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .btn-book {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-phone {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-modern {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-fields-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-book {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .features-grid-large,
    .services-grid-modern,
    .fleet-showcase,
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
}
