/* Prive Luxury - Main Stylesheet */
/* Consolidated and optimized version */

:root {
    --background: #000000;
    --primary-text: #FFFFFF;
    --accent: #AAAAAA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal scroll on images and media */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    max-width: 180px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #E5E5E5;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFFFFF, #E5E5E5);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Prevent body scroll when mobile menu is open */
body.nav-open {
    overflow: hidden;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        text-align: center;
        padding: 80px 0 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        justify-content: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    /* Mobile Hero Adjustments */
    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .logo {
        width: 100px;
    }
    
    .logo-container {
        margin-bottom: 40px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    /* Fleet Section Mobile */
    .fleet-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        max-width: 100%;
    }
    
    .vehicle-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .vehicle-image-container {
        height: 250px;
    }
    
    .vehicle-info {
        padding: 25px;
    }
    
    .vehicle-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .vehicle-name {
        font-size: 1.6rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .vehicle-specs {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .vehicle-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .reserve-primary-btn {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .learn-more-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .upcoming-fleet {
        width: 100%;
        box-sizing: border-box;
    }
    
    .fleet-title {
        font-size: 1.5rem;
    }
    
    .upcoming-vehicles {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .upcoming-vehicle {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-items: center;
        min-height: 120px;
    }
    
    .upcoming-image {
        height: 120px;
        width: 120px;
        flex-shrink: 0;
    }
    
    .upcoming-info {
        padding: 15px;
        flex: 1;
    }
    
    .upcoming-name {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .upcoming-desc {
        font-size: 0.85rem;
    }
    
    /* Stats container mobile fix */
    .stats-container {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .stat-card {
        min-width: auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonials-slider {
        min-height: 500px;
    }
    
    .testimonial-content {
        padding: 40px 30px;
        min-height: 400px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    /* Fleet Section Small Mobile */
    .fleet-showcase {
        width: 100%;
        max-width: 100%;
        gap: 30px;
    }
    
    .vehicle-card {
        width: 100%;
        max-width: 100%;
    }
    
    .vehicle-info {
        padding: 20px;
    }
    
    .vehicle-name {
        font-size: 1.4rem;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .spec-item {
        padding: 12px;
    }
    
    .reserve-primary-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .learn-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .upcoming-fleet {
        width: 100%;
    }
    
    .upcoming-vehicles {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .upcoming-vehicle {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        min-height: 100px;
    }
    
    .fleet-title {
        font-size: 1.3rem;
    }
    
    .upcoming-image {
        height: 100px;
        width: 100px;
        flex-shrink: 0;
    }
    
    .upcoming-info {
        padding: 12px;
        flex: 1;
    }
    
    .upcoming-name {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .upcoming-desc {
        font-size: 0.8rem;
    }
    
    /* Stats container small mobile fix */
    .stats-container {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .stat-card {
        min-width: auto;
        width: 100%;
    }
    
    .testimonials-slider {
        min-height: 450px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
        min-height: 350px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .client-avatar {
        margin-bottom: 20px;
    }
    
    .avatar-img {
        width: 70px;
        height: 70px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1617814076367-b759c7d7e738?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.15) 70%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.25), rgba(20, 20, 20, 0.15));
    backdrop-filter: blur(0.5px);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: heroEntrance 1.5s ease forwards;
}

.logo-container {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(-30px);
    animation: logoFloat 2s ease forwards 0.5s;
}

.logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(255, 255, 255, 0.2));
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF, #E5E5E5, #FFFFFF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--accent);
}

/* Buttons */
.btn,
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.2s;
}

.btn {
    padding: 12px 30px;
    letter-spacing: 1px;
    border-radius: 25px;
}

.cta-button::before,
.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFFFFF, #E5E5E5);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover,
.cta-button:hover,
.submit-button:hover {
    border-color: #FFFFFF;
    color: #000000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.cta-button:hover::before,
.submit-button:hover::before {
    left: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 2s ease forwards 2s;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.2);
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    position: relative;
    animation: scrollBounce 2s infinite;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Sections */
section,
.fleet-section,
.why-choose-section,
.contact-section {
    padding: 120px 0;
}

section {
    padding: 100px 0;
}

.fleet-section {
    background-color: #0a0a0a;
}

.why-choose-section {
    background-color: var(--background);
}

.contact-section {
    background-color: #0a0a0a;
}

.why-us {
    background-color: #0a0a0a;
}

/* Section Headers */
.section-title,
.section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2,
.section-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after,
.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.section-title h2::after {
    bottom: -10px;
    width: 50px;
    height: 2px;
}

.section-title p,
.section-subtitle {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 300;
}

.section-title p {
    font-size: 1.1rem;
}

/* Fleet Section */
.fleet-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.featured-car {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.car-card {
    width: 100%;
    max-width: 800px;
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.car-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.car-image img,
.car-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.car-image:hover .car-img,
.car-image:hover img {
    transform: scale(1.05);
}

.car-details {
    padding: 30px;
}

.car-details h3,
.car-name {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-text);
}

.car-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.car-specs {
    list-style: none;
    margin-bottom: 20px;
}

.car-specs li {
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 1.1rem;
    position: relative;
    padding-left: 25px;
    display: flex;
    align-items: center;
}

.car-specs li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-text);
    font-weight: bold;
}

.car-specs li i {
    margin-right: 10px;
    color: var(--primary-text);
}

.coming-soon,
.fleet-expansion {
    text-align: center;
    color: var(--accent);
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.6s;
    margin-top: 20px;
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.feature-card,
.feature-item {
    text-align: center;
    padding: 50px 30px;
    background-color: rgba(20, 20, 20, 0.6);
    border-radius: 8px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    border: 1px solid rgba(170, 170, 170, 0.1);
}

.feature-card {
    padding: 40px 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    transform: translateY(20px);
}

.feature-item:nth-child(1),
.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2),
.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3),
.feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-item:hover,
.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(30, 30, 30, 0.8);
    border-color: rgba(170, 170, 170, 0.3);
}

.feature-icon {
    margin-bottom: 30px;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.feature-title,
.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-description,
.feature-card p {
    color: var(--accent);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-container,
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p,
.contact-description {
    color: var(--accent);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 30px;
    margin-top: 0;
}

.contact-form,
.booking-form {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control,
.form-group input {
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--primary-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.form-control {
    padding: 15px;
    border: 1px solid #333;
    border-radius: 0;
}

.form-control:focus,
.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-control::placeholder,
.form-group input::placeholder {
    color: #666;
}

.datetime-label {
    position: absolute;
    top: -10px;
    left: 15px;
    background-color: #0a0a0a;
    padding: 0 10px;
    color: var(--accent);
    font-size: 0.9rem;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    color: var(--primary-text);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Enhanced About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.about-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

/* About Content Styles */
.about-content-wrapper {
    padding-right: 20px;
}

.about-header {
    margin-bottom: 40px;
}

.section-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.about-story {
    margin-bottom: 40px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 35px 0;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(8px);
}

.highlight-icon {
    color: #fff;
    flex-shrink: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
}

.highlight-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.about-cta {
    margin-top: 40px;
}

.learn-more-detailed-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.learn-more-detailed-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* About Visual Styles */
.about-visual {
    position: relative;
}

.visual-container {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.about-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-image:hover .about-main-img {
    transform: scale(1.05);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(224, 224, 224, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.main-image:hover .image-overlay-gradient {
    opacity: 1;
}

.stats-showcase {
    position: relative;
}

.stats-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 200px;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    color: #fff;
    flex-shrink: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 30px 0 40px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
}

.image-wrapper:hover .about-img {
    transform: scale(1.05);
}

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

/* Enhanced Fleet Section */
.fleet-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Featured Vehicle Styles */
.featured-vehicle {
    position: relative;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.vehicle-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.vehicle-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.vehicle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.vehicle-image-container:hover .vehicle-overlay {
    opacity: 1;
}

.view-gallery-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.view-gallery-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.vehicle-info {
    padding: 35px;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.vehicle-name {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.vehicle-price {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.spec-icon {
    color: #fff;
    flex-shrink: 0;
}

.spec-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.spec-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
}

.vehicle-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reserve-primary-btn {
    background: linear-gradient(135deg, #fff, #e0e0e0);
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    flex: 1;
    justify-content: center;
}

.reserve-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #e0e0e0, #fff);
}

.learn-more-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Upcoming Fleet Styles */
.upcoming-fleet {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: fit-content;
}

.fleet-header {
    text-align: center;
    margin-bottom: 30px;
}

.fleet-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.fleet-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

.upcoming-vehicles {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.upcoming-vehicle {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.upcoming-vehicle:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.3);
}

.upcoming-image {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.upcoming-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4);
    transition: all 0.4s ease;
}

.upcoming-vehicle:hover .upcoming-img {
    filter: grayscale(70%) brightness(0.6);
    transform: scale(1.05);
}

.coming-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-label {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.upcoming-info {
    padding: 20px;
}

.upcoming-name {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.upcoming-desc {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

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

.notify-btn {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.notify-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(170, 170, 170, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    border-color: rgba(170, 170, 170, 0.3);
}

.service-icon {
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-title {
    font-size: 1.3rem;
    color: var(--primary-text);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    position: relative;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    position: relative;
    margin: 80px auto 40px;
    overflow: visible;
    min-height: 600px;
    display: flex;
    align-items: stretch;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.testimonial-card.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.testimonial-card.next {
    opacity: 0;
    transform: translateX(100%);
    z-index: 1;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.client-avatar {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-img {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.4;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 300;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 25px;
}

.star {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.star.filled {
    color: #E5E5E5;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.testimonial-author {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.author-name {
    color: var(--primary-text);
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.author-title {
    color: var(--accent);
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.author-location {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.dot.active {
    background: #FFFFFF;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Hero Animations */
@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoFloat {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmerText {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Testimonials Animation */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideOutToLeft {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-100%) scale(0.95);
    }
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--accent);
    color: var(--background);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}



/* Footer */
footer,
.footer {
    background-color: var(--background);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(170, 170, 170, 0.1);
    text-align: center;
}

footer {
    background-color: #0a0a0a;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo {
    text-align: left;
}

.footer-logo-img,
.footer-logo {
    height: 50px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-info {
    text-align: right;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 50%;
    margin: 0 10px;
    color: var(--primary-text);
    transition: all 0.3s ease;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item {
    color: var(--accent);
    font-size: 1rem;
}

.contact-label {
    color: var(--primary-text);
    font-weight: 600;
    margin-right: 10px;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-details p {
    margin-bottom: 10px;
    color: var(--accent);
}

.footer-bottom,
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(170, 170, 170, 0.1);
    color: #666;
    font-size: 0.9rem;
}

.copyright {
    color: #555;
    padding-top: 0;
    border-top: none;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Removed slideUp animation - using clean horizontal transitions instead */

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Loading States */
.loading {
    overflow: hidden;
}

.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.5s ease-in-out 2s forwards;
}

.loading::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(170, 170, 170, 0.3);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10000;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loaded .animate-on-scroll {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Enhanced Hover Effects */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
    left: 100%;
}

.gallery-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-overlay {
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Testimonial Slider Enhancements - Removed duplicate styles */

.slider-nav .dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-nav .dot:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.6);
}

/* Fleet Card Enhancements */
.car-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.car-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(170, 170, 170, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.car-card:hover::after {
    transform: translateX(100%);
}

/* Button Enhancements */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn:hover::before {
    left: 100%;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect */
.hero {
    will-change: transform;
}

/* Performance Optimizations */
.car-card,
.service-card,
.feature-card,
.gallery-item,
.testimonial-card {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Enhanced Contact Section Styles */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.95));
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .section-title {
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subtitle {
    color: #CCCCCC;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-card p {
    color: #CCCCCC;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-note {
    color: #AAAAAA;
    font-size: 0.9rem;
    font-style: italic;
}

.booking-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.form-header p {
    color: #CCCCCC;
    font-size: 1rem;
    line-height: 1.5;
}

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

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #AAAAAA;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #FFFFFF;
}

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

.datetime-label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #AAAAAA;
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 6px;
    backdrop-filter: blur(5px);
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title,
    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle,
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title,
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }

    .fleet-showcase{
        grid-template-columns: 1fr;
    }

    .vehicle-specs{
        grid-template-columns: 1fr;
    }

    .featured-car {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        padding: 40px 25px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .car-image,
    .car-image img,
    .car-img {
        height: 300px;
    }
    
    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    /* Contact Section Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 1.1rem;
    }
    
    .contact-info {
        font-size: 0.9rem;
    }
    
    /* Form Improvements */
    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 1rem;
    }
    
    .submit-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* About Section Responsive */
    .about-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content-wrapper {
        padding-right: 0;
        order: 1;
    }
    
    .about-visual {
        order: 2;
    }
    
    .about-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .about-subtitle {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .section-badge {
        margin: 0 auto 20px;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-content h4 {
        font-size: 1rem;
    }
    
    .about-cta {
        text-align: center;
    }
    
    .main-image {
        margin-bottom: 20px;
    }
    
    .about-main-img {
        height: 300px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px;
        gap: 12px;
        min-width: auto;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .fleet-section,
    .why-choose-section,
    .contact-section,
    .services-section {
        padding: 60px 0;
    }
    
    /* Enhanced Navigation */
    .nav-link {
        padding: 1.5rem 0;
        font-size: 1.2rem;
    }
    
    .logo {
        width: 80px;
    }
    
    /* Typography Improvements */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Services Section Small Mobile */
    .service-card {
        padding: 25px 15px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    /* Contact Section Small Mobile */
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-title {
        font-size: 1rem;
    }
    
    .contact-info {
        font-size: 0.85rem;
    }
    
    /* Form Small Mobile */
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    /* Testimonials Small Mobile */
    .testimonial-content {
        padding: 25px 15px;
        min-height: 300px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
    
    .author-location {
        font-size: 0.75rem;
    }
    
    /* About Section Mobile */
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .story-text {
        font-size: 0.95rem;
    }
    
    .highlight-item {
        padding: 12px;
        gap: 12px;
    }
    
    .highlight-content h4 {
        font-size: 0.95rem;
    }
    
    .highlight-content p {
        font-size: 0.85rem;
    }
    
    .about-main-img {
        height: 250px;
    }
    
    .stat-card {
        padding: 15px;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .learn-more-detailed-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Navigation Extra Small */
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .logo {
        width: 70px;
    }
    
    /* Fleet Section Extra Small */
    .vehicle-info {
        padding: 15px;
    }
    
    .vehicle-name {
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 1.4rem;
    }
    
    .reserve-primary-btn,
    .learn-more-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Services Extra Small */
    .service-card {
        padding: 20px 10px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    /* Contact Extra Small */
    .contact-card {
        padding: 20px 10px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* About Section Extra Small */
    .about-title {
        font-size: 1.6rem;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    /* Testimonials Extra Small */
    .testimonial-content {
        padding: 20px 10px;
        min-height: 250px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-title {
        font-size: 0.75rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 30px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .testimonials-slider {
        min-height: 400px;
    }
    
    .testimonial-content {
        min-height: 300px;
        padding: 30px 25px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .reserve-primary-btn,
    .learn-more-btn,
    .submit-button,
    .notify-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .vehicle-card:hover,
    .service-card:hover,
    .contact-card:hover {
        transform: none;
    }
    
    .vehicle-card:active,
    .service-card:active,
    .contact-card:active {
        transform: scale(0.98);
    }
}