/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --dark-gray: #1A1A1A;
    --medium-gray: #333333;
    --light-gray: #666666;
    --lighter-gray: #999999;
    --off-white: #F5F5F5;
    --pure-white: #FFFFFF;
    --accent-gold: #C9A961;
    --accent-gold-dark: #B8984A;
    
    --font-primary: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    font-weight: 300;
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--pure-white);
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--pure-white);
    z-index: 1000;
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--primary-black);
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--light-gray);
    margin-top: 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: var(--transition-base);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--pure-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-link:hover {
    color: var(--primary-black);
    background: var(--off-white);
    padding-left: 2rem;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent-gold);
    transition: height 0.3s ease;
}

.dropdown-link:hover::before {
    height: 70%;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition-base);
}

.nav-phone:hover {
    color: var(--accent-gold);
}

.nav-phone i {
    font-size: 0.9rem;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0A0A0A;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 70px); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    animation: float 20s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 7s;
}

.floating-element:nth-child(3) {
    bottom: 10%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: var(--primary-black);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Ensure images load */
.hero-slide[src] {
    background-color: var(--primary-black);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 700px;
    color: var(--pure-white);
}

.hero-label {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-label.animated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    animation: slideIn 1s ease forwards 0.2s;
}

@keyframes slideIn {
    to {
        left: 0;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-rotating {
    background: linear-gradient(45deg, var(--accent-gold), var(--pure-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title.animated {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-subtitle.animated {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

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

.hero-buttons.animated {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

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

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

/* Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll[data-delay="100"] {
    transition-delay: 0.1s;
}

.reveal-on-scroll[data-delay="200"] {
    transition-delay: 0.2s;
}

.reveal-on-scroll[data-delay="300"] {
    transition-delay: 0.3s;
}

.reveal-on-scroll[data-delay="400"] {
    transition-delay: 0.4s;
}

.reveal-on-scroll[data-delay="500"] {
    transition-delay: 0.5s;
}

.reveal-on-scroll[data-delay="600"] {
    transition-delay: 0.6s;
}

.reveal-on-scroll[data-delay="700"] {
    transition-delay: 0.7s;
}

/* Parallax Effects */
.parallax-section {
    position: relative;
}

.parallax-bg {
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.parallax-img {
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.stat-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-gray);
    letter-spacing: 0.05em;
}

/* Video Showcase Section */
.video-showcase {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A0A0A;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Fallback background image */
.video-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600&q=80');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pure-white);
    padding: 0 20px;
}

.video-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.video-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Fleet Section */
.fleet {
    padding: 100px 0;
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.fleet-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600&q=80');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
}

.fleet .container {
    position: relative;
    z-index: 1;
}

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

.section-label {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Search and Filter Section */
.search-filter-section {
    margin-bottom: 4rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.search-container i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-gray);
    font-size: 1.1rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    font-size: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.search-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

/* Filter Buttons */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 20px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--pure-white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    color: var(--medium-gray);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.filter-btn i {
    font-size: 1rem;
}

.filter-btn span:first-of-type {
    font-weight: 500;
}

.filter-count {
    background: var(--off-white);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--light-gray);
}

.filter-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--light-gray);
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.no-results h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

.no-results p {
    font-size: 1rem;
}

/* Cars Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

.car-card {
    background: var(--pure-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--index) * 0.05s);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.car-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.05);
}

.car-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.car-info {
    padding: 1.25rem;
}

.car-header {
    margin-bottom: 0.75rem;
}

.car-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.car-year {
    font-size: 0.9rem;
    color: var(--lighter-gray);
}

.car-price {
    margin: 0.75rem 0;
}

.car-price span {
    font-size: 0.9rem;
    color: var(--light-gray);
}

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

.car-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.car-feature i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.car-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-black);
    border: 1px solid var(--primary-black);
}

.btn-outline:hover {
    background: var(--primary-black);
    color: var(--pure-white);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: modalFadeIn 0.3s ease;
}

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

.modal-content {
    background-color: var(--pure-white);
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 1.5rem;
    color: var(--light-gray);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pure-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
}

.close:hover {
    color: var(--primary-black);
    transform: rotate(90deg);
}

.modal-car-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.modal-car-info {
    padding: 3rem;
}

.modal-car-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-car-title h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.modal-car-title p {
    color: var(--light-gray);
}

.modal-car-pricing {
    text-align: right;
}

.modal-price {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-black);
    line-height: 1;
}

.modal-price span {
    font-size: 1rem;
    color: var(--light-gray);
}

.modal-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.modal-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-feature-item i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.modal-description {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.modal-description p {
    line-height: 1.8;
    color: var(--light-gray);
}

.modal-cta {
    background: var(--off-white);
    padding: 2.5rem;
    text-align: center;
    margin: -3rem;
    margin-top: 3rem;
}

.modal-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.modal-cta p {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

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

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

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

.about-feature i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.about-feature span {
    color: var(--medium-gray);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

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

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.about-image:hover .about-image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--pure-white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.overlay-content span {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Premium Services Section */
.premium-services {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #0A0A0A;
}

.services-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=1600&q=80');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--pure-white);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    color: var(--pure-white);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.service-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(201, 169, 97, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(201, 169, 97, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(201, 169, 97, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(201, 169, 97, 0.02) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-gold);
    width: 30px;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--primary-black);
}

.contact-item p {
    color: var(--light-gray);
}

.contact-cta {
    background: var(--primary-black);
    padding: 3rem;
    color: var(--pure-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--pure-white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-phone {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin: 1rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-dropdown-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 0;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floating-element {
        display: none;
    }
    
    .video-showcase {
        height: 50vh;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        position: fixed;
        left: 0;
        top: 80px;
        width: 100%;
        flex-direction: column;
        background: var(--pure-white);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
        z-index: 999;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: var(--off-white);
        margin: 0.5rem 0 0 1rem;
    }
    
    .hero {
        text-align: center;
        padding-top: 80px;
    }
    
    .hero-content {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: left;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
        font-size: 0.8rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .search-container {
        padding: 0 15px;
        margin-bottom: 1.5rem;
    }
    
    .search-input {
        font-size: 0.95rem;
        padding: 0.9rem 1rem 0.9rem 3rem;
    }
    
    .filter-container {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 15px;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem;
        padding-bottom: 1rem;
    }
    
    .filter-container::-webkit-scrollbar {
        height: 4px;
    }
    
    .filter-container::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
    }
    
    .filter-container::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .filter-btn i {
        font-size: 0.9rem;
    }
    
    .filter-count {
        padding: 0.15rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .car-card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }
    
    .car-image {
        height: 220px;
    }
    
    .car-info {
        padding: 1.5rem;
    }
    
    .car-name {
        font-size: 1.3rem;
    }
    
    .car-price {
        font-size: 1.8rem;
        margin: 1rem 0;
    }
    
    .car-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .car-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .car-buttons .btn {
        width: 100%;
    }
    
    .modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .modal-car-image {
        height: 300px;
    }
    
    .modal-car-info {
        padding: 2rem 1.5rem;
    }
    
    .modal-car-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: left;
    }
    
    .modal-car-pricing {
        text-align: left;
    }
    
    .modal-price {
        font-size: 2.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* New UI Elements for Car Rental */
.car-reviews {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--light-gray);
}

.stars {
    display: flex;
    gap: 0.1rem;
    color: #FFD700;
}

.stars .fa-star,
.stars .far.fa-star {
    font-size: 0.7rem;
}

.minimum-booking {
    font-size: 0.7rem;
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    font-style: normal;
    opacity: 0.8;
}

.starting-from {
    font-size: 0.7rem;
    color: var(--light-gray);
    display: block;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-black);
    line-height: 1;
}

.price-amount span {
    font-size: 0.75rem;
    color: var(--light-gray);
    font-weight: 400;
}

.no-hidden {
    font-size: 0.7rem;
    color: #2ECC71;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.call-to-book-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    transition: var(--transition-base);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    margin-right: 0.5rem;
}

.btn-outline i {
    margin-right: 0.5rem;
}

/* Fully Booked State */
.car-card.fully-booked {
    position: relative;
    opacity: 0.7;
}

.car-card.fully-booked .car-image {
    filter: grayscale(0.8);
}

.out-of-stock-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #E74C3C;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 5px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.car-card.fully-booked .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal Reviews */
.modal-reviews {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.modal-reviews .stars {
    color: #FFD700;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

/* Car Features Grid Update */
.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    margin-top: 0.75rem;
}

.car-feature {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--medium-gray);
    flex: 0 0 auto;
    background: var(--off-white);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.car-feature i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* Modal Features Update */
.modal-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 10px;
}

.modal-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.modal-feature-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.modal-feature-item span {
    font-size: 0.85rem;
    color: var(--light-gray);
}

.modal-feature-item strong {
    font-size: 1rem;
    color: var(--primary-black);
    font-weight: 500;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .call-to-book-buttons {
        width: 100%;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .car-buttons {
        flex-wrap: wrap;
    }
    
    .btn-small {
        flex: 1 1 100%;
    }
}

/* Additional UI Improvements */
.car-price {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

/* Fix for background images not loading */
.fleet-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.02) 0%, rgba(26, 26, 26, 0.02) 100%);
    z-index: 1;
}

/* Disable parallax on mobile for better performance */
@media (max-width: 768px) {
    .fleet-bg-image,
    .services-bg-image {
        background-attachment: scroll !important;
    }
}

/* Improve button styles */
.btn {
    transition: all 0.2s ease;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary-black);
    border: 1px solid var(--primary-black);
}

.btn-primary:hover {
    background: var(--medium-gray);
    border-color: var(--medium-gray);
    transform: translateY(-1px);
}

.btn-outline {
    font-size: 0.8rem;
}

.btn-whatsapp {
    font-size: 0.8rem;
}

/* Better alignment for mobile */
@media (max-width: 768px) {
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .car-image {
        height: 180px;
    }
    
    .car-name {
        font-size: 0.95rem;
    }
    
    .price-amount {
        font-size: 1.2rem;
    }
    
    .car-feature {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .minimum-booking {
        font-size: 0.65rem;
    }
    
    .no-hidden {
        font-size: 0.65rem;
    }
}