/* Austrian Luxury Design System - LocalRydes Austria */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Austrian Luxury Color Palette */
    --color-background: hsl(0, 0%, 2%);
    --color-foreground: hsl(0, 0%, 95%);
    --color-card: hsl(0, 0%, 5%);
    --color-primary: hsl(14, 100%, 69%);
    --color-primary-foreground: hsl(0, 0%, 100%);
    --color-primary-glow: hsl(14, 100%, 80%);
    --color-secondary: hsl(0, 0%, 12%);
    --color-muted: hsl(0, 0%, 15%);
    --color-muted-foreground: hsl(0, 0%, 70%);
    --color-border: hsl(14, 30%, 25%);
    --color-input: hsl(0, 0%, 12%);
    
    /* Austrian Luxury Gradients */
    --gradient-luxury: linear-gradient(135deg, hsl(14, 100%, 69%), hsl(14, 100%, 58%));
    --gradient-alpine: linear-gradient(180deg, hsl(0, 0%, 2%), hsl(0, 0%, 8%));
    --gradient-gold-black: linear-gradient(135deg, hsl(14, 100%, 69%) 0%, hsl(0, 0%, 5%) 100%);
    --gradient-hero: radial-gradient(ellipse at center, hsl(14, 100%, 69%, 0.1), transparent 70%);
    
    /* Luxury Shadows & Effects */
    --shadow-luxury: 0 25px 50px -12px hsl(14, 100%, 69%, 0.25);
    --shadow-gold-glow: 0 0 60px hsl(14, 100%, 69%, 0.4);
    --shadow-elegant: 0 20px 40px -8px hsl(0, 0%, 0%, 0.8);
    
    /* Typography */
    --font-luxury: 'Inter', 'Helvetica Neue', sans-serif;
    --letter-spacing-luxury: -0.025em;
    
    /* Transitions */
    --transition-luxury: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-luxury);
    background-color: var(--color-background);
    color: var(--color-foreground);
    letter-spacing: var(--letter-spacing-luxury);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.gradient-text {
    background: var(--gradient-luxury);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.luxury-glow {
    box-shadow: var(--shadow-gold-glow);
}

.elegant-shadow {
    box-shadow: var(--shadow-elegant);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.875rem;
}

.btn-primary {
    background: #FF4F1E;
    color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: #B3371A;
    box-shadow: 0 8px 24px rgba(255, 79, 30, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #FF4F1E;
    border: 2px solid #FF4F1E;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
    background: #FFF1E8;
    color: #FF4F1E;
    border-color: #FF4F1E;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 79, 30, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(255, 79, 30, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Header */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fa3600;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(14, 30%, 25%, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

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

.logo-image {
    height: 3rem;
    width: auto;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gradient-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-foreground);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-luxury);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--color-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

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

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

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    width: 1rem;
    height: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: hsla(0, 0%, 0%, 0.6);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem 0;
}

.hero-title {
    font-size: clamp(2.4rem, 6.4vw, 6.4rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-muted-foreground);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.booking-card {
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem;
    background: hsla(0, 0%, 5%, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(14, 30%, 25%, 0.5);
    border-radius: 1rem;
    box-shadow: var(--shadow-elegant);
}

.booking-form {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .booking-form {
        grid-template-columns: repeat(4, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-label i {
    width: 1rem;
    height: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    background: var(--color-input);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    color: var(--color-foreground);
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px hsl(14, 100%, 69%, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-primary);
    animation: bounce 2s infinite;
}

.scroll-icon {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--color-primary);
    border-radius: 9999px;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(-50%, 0, 0);
    }
    40%, 43% {
        transform: translate3d(-50%, -30px, 0);
    }
    70% {
        transform: translate3d(-50%, -15px, 0);
    }
    90% {
        transform: translate3d(-50%, -4px, 0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #FAF7F4;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 79, 30, 0.05), rgba(255, 212, 179, 0.08));
    transform: rotate(12deg) scale(1.5);
    opacity: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
    line-height: 0.9;
    margin: 1.5rem 0;
    color: #1A1A1A;
}

.section-description {
    font-size: 1.25rem;
    color: #4F4F4F;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 2.5rem;
    background: #FFFFFF;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 79, 30, 0.1);
    border-radius: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF4F1E, #FFD4B3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: rgba(255, 79, 30, 0.3);
    box-shadow: 0 12px 40px rgba(255, 79, 30, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon.airport {
    background: linear-gradient(135deg, rgba(255, 79, 30, 0.15), rgba(255, 212, 179, 0.1));
}

.service-icon.vip {
    background: linear-gradient(135deg, rgba(255, 212, 179, 0.1), rgba(255, 79, 30, 0.15));
}

.service-icon.hourly {
    background: linear-gradient(135deg, rgba(255, 79, 30, 0.15), rgba(255, 79, 30, 0.08));
}

.service-card:hover .service-icon {
    box-shadow: 0 8px 24px rgba(255, 79, 30, 0.25);
    transform: scale(1.05) translateY(-2px);
}

.service-icon i,
.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: #FF4F1E;
}

.service-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1A1A1A;
    letter-spacing: -0.02em;
}

.service-card p {
    color: #4F4F4F;
    margin-bottom: 1.75rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #4F4F4F;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.service-features li::before {
    content: '';
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #FF4F1E;
    box-shadow: 0 0 8px rgba(255, 79, 30, 0.4);
    flex-shrink: 0;
}

.luxury-features {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .luxury-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.feature-icon {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF4F1E, #FF7B4D);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(255, 79, 30, 0.2);
}

.feature-item:hover .feature-icon {
    box-shadow: 0 8px 32px rgba(255, 79, 30, 0.35);
    transform: scale(1.08) translateY(-4px);
}

.feature-icon i,
.feature-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #FFFFFF;
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1A1A1A;
    letter-spacing: -0.02em;
}

.feature-item p {
    color: #4F4F4F;
    line-height: 1.7;
}

/* Fleet Section */
.fleet {
    padding: 6rem 0;
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
}

.fleet .section-title {
    color: #1A1A1A;
}

.fleet .section-description {
    color: #4F4F4F;
}

.fleet .text-white {
    color: #1A1A1A !important;
}

.fleet-grid {
    display: grid;
    gap: 2rem;
    max-width: 96rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vehicle-card {
    overflow: hidden;
    background: #FFFFFF;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 79, 30, 0.1);
    border-radius: 1rem;
    transition: var(--transition-luxury);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vehicle-card:hover {
    border-color: rgba(255, 79, 30, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 79, 30, 0.15);
}

.vehicle-image {
    position: relative;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: var(--transition-luxury);
}

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

.popular-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: hsl(0, 0%, 100%);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 79, 30, 0.3);
}

.price-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}

.price-badge span,
.price-badge {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
}

.vehicle-content {
    padding: 1.5rem;
}

.vehicle-category {
    background: rgba(255, 79, 30, 0.1);
    color: #FF4F1E;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.vehicle-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1A1A1A;
}

.vehicle-capacity {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4F4F4F;
}

.capacity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.capacity-item i {
    width: 1.25rem;
    height: 1.25rem;
}

.vehicle-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4F4F4F;
}

.feature i {
    width: 1rem;
    height: 1rem;
    color: var(--color-primary);
}

.fleet-footer {
    text-align: center;
    margin-top: 4rem;
}

.fleet-footer p {
    color: #4F4F4F;
    margin-bottom: 1.5rem;
}

/* Contact CTA Section */
.contact-cta {
    padding: 4rem 0;
    background: #FFFFFF;
}

.contact-card {
    max-width: 64rem;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    background: hsla(0, 0%, 5%, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(14, 30%, 25%, 0.5);
    border-radius: 1rem;
    box-shadow: var(--shadow-elegant);
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--gradient-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-gold-glow);
}

.contact-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-primary-foreground);
}

.contact-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1.25rem;
    color: var(--color-muted-foreground);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: var(--color-background);
    border-top: 1px solid hsl(14, 30%, 25%, 0.5);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h5 {
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 2.5rem;
    width: auto;
}

.footer-logo .logo-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-luxury);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo .logo-text p {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
}

.footer-description {
    color: var(--color-muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.rating, .certification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
    fill: currentColor;
}

.certification i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
}

.rating span {
    font-weight: 600;
}

.certification span {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-locations {
    list-style: none;
}

.footer-locations li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted-foreground);
    margin-bottom: 0.75rem;
}

.footer-locations i {
    width: 1rem;
    height: 1rem;
    color: var(--color-primary);
}

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

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item-footer i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
    margin-top: 0.125rem;
}

.contact-item-footer div p {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-item-footer div span {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.footer-bottom {
    border-top: 1px solid hsl(14, 30%, 25%, 0.5);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* Custom Container */
.container-wider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.mt-3 { margin-top: 1rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }

.text-center { text-align: center !important; }
.text-white { color: hsl(0, 0%, 95%) !important; }
.text-right { text-align: right !important; }

@media (min-width: 768px) {
    .text-md-start { text-align: left !important; }
    .text-md-end { text-align: right !important; }
    .mb-md-0 { margin-bottom: 0 !important; }
}

.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.list-inline-item {
    display: inline-block;
    margin-right: 0.5rem;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Footer Specific Styles */
.footer h3 {
    font-weight: 600;
    color: hsl(0, 0%, 95%);
}

.footer .list-unstyled a {
    color: hsl(0, 0%, 95%);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.footer .list-unstyled a:hover {
    color: var(--color-primary);
}

.footer .list-unstyled a {
    color: hsl(0, 0%, 95%);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.footer .list-unstyled a:hover {
    color: var(--color-primary);
}

.footer-address {
    color: hsl(0, 0%, 70%);
}

.app-download-links img {
    transition: var(--transition-smooth);
}

.app-download-links img:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.social-icons a {
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    color: var(--color-primary) !important;
}

.footer-bottom-images img {
    transition: var(--transition-smooth);
    filter: brightness(0.9);
}

.footer-bottom-images img:hover {
    filter: brightness(1);
}

.footer-links a {
    font-size: 13px;
}

.footer-links a:hover {
    padding-left: 4px;
}

/* Footer After Section */
.footer-after {
    background: hsl(0, 0%, 3%);
    border-top: 1px solid hsl(0, 0%, 15%);
    padding: 1.5rem 0;
}

.footer-after a {
    color: hsl(0, 0%, 70%);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-after a:hover {
    color: var(--color-primary);
}

.copyright {
    color: hsl(0, 0%, 70%);
}

.social-links a {
    color: hsl(0, 0%, 70%);
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--color-primary);
}

/* Additional Footer Styles */
.badge-new {
    background: var(--color-primary);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 10px;
    font-weight: 600;
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.text-nowrap {
    white-space: nowrap;
}

.overflow-hidden {
    overflow: hidden;
    text-overflow: ellipsis;
}

.d-none {
    display: none !important;
}

.collapse {
    display: block;
}

.collapsible-header {
    cursor: pointer;
    user-select: none;
}

.collapsible-header:hover {
    color: var(--color-primary) !important;
}

.fleet-arrow,
.blog-arrow,
.cities-arrow,
.events-arrow {
    transition: var(--transition-smooth);
}

.rotated {
    transform: rotate(180deg);
}

.dots-luxury,
.dots-blog,
.dots-cities,
.dots-events {
    color: hsl(0, 0%, 70%);
    cursor: default;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.text-light {
    color: hsl(0, 0%, 85%) !important;
}

/* Cities Section */
.cities-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4F4F4F;
    margin-top: 0.5rem;
}

.cities-grid-wrapper {
    margin: 0 auto;
}

.city-card-item {
    height: 100%;
    transition: transform 0.3s ease;
}

.city-card-item:hover {
    transform: translateY(-8px);
}

.city-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.city-card-image {
    position: relative;
    height: 280px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.city-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card-item:hover .city-bg-image {
    transform: scale(1.1);
}

.city-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.city-card-content {
    width: 100%;
}

.city-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.city-country {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-see-more {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: transparent;
    color: #FF4F1E;
    border: 2px solid #FF4F1E;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    background: #FF4F1E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 79, 30, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .vehicle-features {
        grid-template-columns: 1fr;
    }
}