/* ===================================
   GENEL STILLER & RESET
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn-block {
    width: 100%;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1485291571150-772bcfc10da5?w=1920&q=80&fit=crop') center/cover no-repeat;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(37, 99, 235, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-text {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    z-index: 3;
}

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

.feature-item {
    text-align: center;
    animation: fadeInUp 1s ease-out both;
}

.feature-item:nth-child(1) { animation-delay: 1s; }
.feature-item:nth-child(2) { animation-delay: 1.1s; }
.feature-item:nth-child(3) { animation-delay: 1.2s; }
.feature-item:nth-child(4) { animation-delay: 1.3s; }

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   SEARCH SECTION
   =================================== */
.search-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.search-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 1s ease-out;
}

.search-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-control {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===================================
   CARS SECTION
   =================================== */
.cars-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
}

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

.car-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    animation: fadeInUp 1s ease-out both;
}

.car-card:nth-child(1) { animation-delay: 0.1s; }
.car-card:nth-child(2) { animation-delay: 0.2s; }
.car-card:nth-child(3) { animation-delay: 0.3s; }
.car-card:nth-child(4) { animation-delay: 0.4s; }
.car-card:nth-child(5) { animation-delay: 0.5s; }
.car-card:nth-child(6) { animation-delay: 0.6s; }

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.car-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.car-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.car-image img[src=""],
.car-image img:not([src]) {
    display: none;
}

.car-image::after {
    content: '🚗';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
}

.car-image img[src]:not([src=""]) ~ ::after {
    display: none;
}

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

.car-content {
    padding: 1.5rem;
}

.car-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.car-category {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    white-space: nowrap;
}

.spec-icon {
    font-size: 1.25rem;
}

.car-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.car-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: fadeInUp 1s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid2)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column h3 span {
    color: var(--primary-color);
}

.footer-column h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

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

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .cars-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .search-box {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .car-specs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* ===================================
   MODAL STYLES
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--border-color);
    transform: rotate(90deg);
}

/* Auth Modal */
.auth-modal {
    padding: 3rem;
}

.auth-modal h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.auth-modal form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    text-align: center;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Car Detail Modal */
.car-detail-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.car-detail-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.car-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.car-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.car-year {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.car-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.car-detail-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-light);
}

.car-features {
    margin-bottom: 1.5rem;
}

.car-features h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.car-features p {
    color: var(--text-light);
    line-height: 1.7;
}

.car-detail-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.price-label {
    font-weight: 600;
    color: var(--text-dark);
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Reservation Modal */
.reservation-modal {
    padding: 3rem;
}

.reservation-modal h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.reservation-modal form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reservation-summary {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-color);
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--border-color);
}

/* ===================================
   CAR STATUS STYLES
   =================================== */
.car-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.status-available {
    background: #10b981;
    color: white;
}

.status-ready {
    background: #3b82f6;
    color: white;
}

.status-reserved {
    background: #f59e0b;
    color: white;
}

.status-unavailable {
    background: #ef4444;
    color: white;
}

/* ===================================
   NOTIFICATION STYLES
   =================================== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    min-width: 300px;
    transform: translateX(400px);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #10b981;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-info {
    border-left-color: #3b82f6;
}

/* ===================================
   BUTTON VARIANTS
   =================================== */
.btn-secondary {
    background: var(--text-light);
    color: white;
}

.btn-secondary:hover {
    background: var(--text-dark);
}

.btn-logout {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE MODAL
   =================================== */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        margin: 20px;
    }

    .auth-modal,
    .reservation-modal {
        padding: 2rem 1.5rem;
    }

    .car-detail-modal {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .car-detail-image {
        height: 250px;
    }

    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===================================
   ABOUT PAGE STYLES
   =================================== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-intro {
    padding: 5rem 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.mission-vision {
    padding: 5rem 0;
    background: white;
}

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

.mv-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

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

.mv-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-choose-us {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.feature-box {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--transition);
    color: white;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    width: 35px;
    height: 35px;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-section {
    padding: 5rem 0;
    background: white;
}

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

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.contact-social {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-social .social-links {
    display: flex;
    gap: 1rem;
}

.contact-social .social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-social .social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-social .social-link svg {
    width: 24px;
    height: 24px;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 16px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.map-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.map-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* User Greeting */
.user-greeting {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 1rem;
}

/* Logo Link */
.logo a {
    text-decoration: none;
    color: inherit;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-social .social-links {
        justify-content: center;
    }
}

/* ===================================
   2026 MODERN OVERRIDES - DEMO1
   =================================== */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #f59e0b;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-soft: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-xl: 0 28px 70px rgba(15, 23, 42, 0.14);
    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;
}

html, body {
    overflow-x: hidden;
}

body {
    background: #ffffff;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

section {
    position: relative;
}

.container {
    max-width: 1240px;
    padding-left: 24px;
    padding-right: 24px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.86) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 10px 30px rgba(15, 23, 42, 0.04);
}

.navbar {
    padding: 0.95rem 0 !important;
}

.logo h1,
.footer-column h3,
.footer-title {
    letter-spacing: -0.03em;
}

.nav-link {
    font-size: 0.98rem;
    font-weight: 600;
}

.nav-buttons {
    align-items: center;
}

.btn {
    border-radius: 16px !important;
    padding: 0.9rem 1.45rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.20);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border-width: 1.5px !important;
    background: rgba(255,255,255,0.9);
}

.btn-white {
    color: var(--primary-dark) !important;
    border-radius: 18px !important;
}

/* Global cards and forms */
.form-control,
input,
select,
textarea {
    border-radius: 16px !important;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: #60a5fa !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10) !important;
}

/* Page header on inner pages */
.page-header {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%) !important;
    color: var(--text-dark) !important;
    text-align: left !important;
    padding: 8.5rem 0 2.5rem !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 28%),
        radial-gradient(circle at left center, rgba(59, 130, 246, 0.08), transparent 30%);
    pointer-events: none;
}

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

.page-header h1 {
    color: var(--text-dark) !important;
    font-size: clamp(2.3rem, 4vw, 3.6rem) !important;
    line-height: 1.05 !important;
    margin-bottom: 0.65rem !important;
    letter-spacing: -0.04em;
}

.page-header p {
    color: var(--text-light) !important;
    font-size: 1.05rem !important;
    max-width: 720px;
    opacity: 1 !important;
}

/* About page */
.about-intro,
.stats-section,
.mission-vision,
.features-section,
.team-section,
.contact-section,
.faq-section,
.cars-listing {
    background: var(--bg-light) !important;
}

.about-intro {
    padding: 2.5rem 0 1rem !important;
}

.about-content {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    padding: 34px;
    gap: 38px !important;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-size: clamp(2rem, 3vw, 3rem) !important;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.about-text .lead {
    display: inline-flex;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.95rem !important;
    margin-bottom: 1.2rem !important;
}

.about-image,
.team-member,
.mv-card,
.feature-box,
.contact-info-item,
.contact-form-wrapper,
.faq-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.about-image {
    border-radius: 26px !important;
    box-shadow: var(--shadow-xl) !important;
}

.stats-section {
    padding: 1rem 0 1.25rem !important;
}

.stats-grid {
    gap: 22px !important;
}

.stat-item {
    border-radius: 24px !important;
    box-shadow: var(--shadow-md) !important;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 2rem 1.25rem !important;
}

.stat-number {
    font-size: clamp(2.2rem, 3vw, 3rem) !important;
    letter-spacing: -0.03em;
}

.mission-vision,
.features-section,
.team-section {
    padding: 2rem 0 1rem !important;
}

.mv-grid {
    gap: 22px !important;
}

.mv-card {
    background: #fff !important;
    border-radius: 24px !important;
    box-shadow: var(--shadow-md);
}

.mv-card h3 {
    margin-bottom: 0.8rem;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch !important;
}

.feature-box {
    background: #fff !important;
    border-radius: 24px !important;
    padding: 28px 24px !important;
    box-shadow: var(--shadow-md) !important;
    transition: transform .22s ease, box-shadow .22s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    font-size: 1.7rem !important;
    margin-bottom: 1rem !important;
}

.feature-box h4,
.feature-box h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem !important;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.75;
}

.team-section .section-header,
.features-section .section-header,
.mission-vision .section-header {
    margin-bottom: 2rem !important;
}

.team-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px !important;
}

.team-member {
    background: #fff !important;
    border-radius: 26px !important;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.team-member img {
    height: 280px !important;
    object-fit: cover;
}

.team-member-info {
    padding: 18px 18px 22px !important;
}

/* Cars page */
.cars-listing {
    padding: 1.25rem 0 4.5rem !important;
}

.listing-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.filters-sidebar {
    position: sticky;
    top: 96px;
    background: #fff !important;
    border-radius: 28px !important;
    padding: 24px !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.filters-sidebar::before {
    content: "";
    display: block;
    height: 5px;
    margin: -24px -24px 18px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.filters-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.filters-header h3 {
    margin: 0 0 4px;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.filters-header p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.92rem;
}

.btn-close-filters {
    width: 42px;
    height: 42px;
    border-radius: 14px !important;
    border: 1px solid var(--border-color);
    background: #f8fafc !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#filtersForm,
.filters-form {
    display: grid;
    gap: 16px;
}

.filter-group {
    margin-bottom: 0 !important;
}

.filter-label {
    display: block;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-inputs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.price-inputs span {
    color: #94a3b8;
    font-weight: 700;
}

.filter-actions {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.filter-btn,
.filter-reset {
    height: 52px;
    border-radius: 16px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
}

.filter-btn {
    border: none;
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}

.filter-reset {
    background: #f8fafc !important;
    color: #334155 !important;
    border: 1px solid var(--border-color);
}

.listing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    border-radius: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.listing-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    margin: 0;
    letter-spacing: -0.03em;
}

.btn-show-filters {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: #f8fafc;
    font-weight: 700;
}

.listing-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.listing-sort label {
    color: var(--text-light);
    font-weight: 700;
}

.listing-sort .form-control {
    min-width: 240px;
    background: #fff;
}

.cars-grid {
    gap: 22px !important;
}

.car-card {
    border-radius: 26px !important;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md) !important;
}

.car-image {
    height: 230px !important;
    background: linear-gradient(180deg, #f8fafc, #eef2f7) !important;
}

.car-badge,
.car-status {
    z-index: 3;
    border-radius: 999px !important;
    backdrop-filter: blur(10px);
}

.car-badge {
    left: 16px !important;
    right: auto !important;
    top: 16px !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.car-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.car-status.available { color: #047857; }
.car-status.unavailable { color: #b91c1c; }
.car-status.maintenance { color: #b45309; }

.car-content {
    padding: 1.35rem !important;
}

.car-name {
    font-size: 1.35rem !important;
    letter-spacing: -0.02em;
}

.car-year {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.car-specs {
    gap: 0.8rem !important;
    margin-bottom: 1.2rem !important;
    padding-bottom: 1.2rem !important;
}

.spec-item {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 0.88rem !important;
}

.car-footer .btn {
    padding: 0.8rem 1.1rem !important;
    border-radius: 14px !important;
}

/* Contact */
.contact-section {
    padding: 1.75rem 0 4.5rem !important;
}

.contact-layout {
    display: grid !important;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px !important;
    align-items: start;
}

.contact-info,
.contact-form-wrapper {
    background: #fff !important;
    border-radius: 28px !important;
    padding: 28px !important;
    box-shadow: var(--shadow-lg) !important;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    font-size: 1.4rem !important;
}

.contact-info-content h4 {
    margin-bottom: 6px;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--text-light);
    line-height: 1.7;
    text-decoration: none;
}

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

.contact-social a,
.social-link,
.footer-social a {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 16px !important;
    font-size: 1.15rem !important;
}

.contact-form .form-group {
    margin-bottom: 16px !important;
}

.contact-form textarea.form-control {
    min-height: 170px;
    padding-top: 14px !important;
}

/* FAQ */
.faq-section {
    padding: 1.75rem 0 4.5rem !important;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px !important;
    background: transparent !important;
}

.faq-category-btn {
    border: 1px solid #dbe4f0 !important;
    background: #fff !important;
    color: #334155 !important;
    border-radius: 999px !important;
    padding: 12px 18px !important;
    font-weight: 700 !important;
    line-height: 1;
    box-shadow: var(--shadow-sm);
}

.faq-category-btn.active,
.faq-category-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #fff !important;
    border-radius: 22px !important;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 22px 24px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    background: #fff;
}

.faq-question h3,
.faq-question h4 {
    font-size: 1.08rem !important;
    line-height: 1.5;
    margin: 0;
    color: var(--text-dark);
}

.faq-toggle {
    width: 38px;
    height: 38px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eff6ff;
    color: var(--primary-color);
    font-size: 1.2rem !important;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 24px 22px !important;
    color: var(--text-light);
    line-height: 1.85;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.faq-answer p {
    padding-top: 18px;
}

/* Footer fixes */
.footer,
footer.footer {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%) !important;
    color: #fff;
    margin-top: 0 !important;
}

.footer-top,
.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content,
.footer-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px !important;
}

.footer,
.footer-top {
    padding-top: 3.25rem !important;
}

.footer-column,
.footer-col {
    min-width: 0;
}

.footer-column p,
.footer-description,
.footer-column ul li a,
.footer-links li a,
.footer-contact li,
.contact-info li {
    color: rgba(255,255,255,0.72) !important;
}

.footer-column ul li a:hover,
.footer-links li a:hover {
    color: #fff !important;
    padding-left: 0 !important;
}

.footer-social,
.social-links {
    flex-wrap: wrap;
    gap: 12px !important;
}

.footer-social a svg,
.footer-social svg,
.social-links svg,
.contact-social svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
}

.footer *::before,
.footer *::after {
    max-width: 100%;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}

.footer-bottom p,
.footer-bottom-content,
.footer-bottom-links a {
    color: rgba(255,255,255,0.62) !important;
}

.whatsapp-float,
.floating-whatsapp,
.whatsapp-button,
.phone-float,
.call-float {
    width: 58px !important;
    height: 58px !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.whatsapp-float svg,
.floating-whatsapp svg,
.whatsapp-button svg,
.phone-float svg,
.call-float svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
}

/* Utilities */
.no-results {
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 28px;
    padding: 42px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.pagination-link {
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.pagination-link.active,
.pagination-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
    .listing-layout,
    .about-content,
    .contact-layout,
    .footer-content,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .filters-sidebar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: min(92vw, 390px);
        height: 100vh;
        max-height: 100vh;
        border-radius: 0 28px 28px 0 !important;
        z-index: 1001;
        transform: translateX(-110%);
        transition: transform .28s ease;
        overflow-y: auto;
    }

    .filters-sidebar.active {
        transform: translateX(0);
    }

    .btn-show-filters {
        display: inline-flex !important;
    }

    .team-grid,
    .features-grid,
    .mv-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .page-header {
        padding-top: 7rem !important;
    }

    .nav-menu {
        border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .hero-title,
    .section-title,
    .about-text h2 {
        letter-spacing: -0.04em;
    }

    .listing-header {
        flex-direction: column;
        align-items: stretch;
    }

    .listing-sort {
        flex-direction: column;
        align-items: stretch;
    }

    .listing-sort .form-control {
        min-width: 0;
    }

    .team-grid,
    .features-grid,
    .mv-grid,
    .stats-grid,
    .cars-grid {
        grid-template-columns: 1fr !important;
    }

    .about-content,
    .contact-info,
    .contact-form-wrapper,
    .filters-sidebar {
        padding: 20px !important;
    }

    .car-image {
        height: 220px !important;
    }

    .faq-question {
        padding: 18px 18px !important;
    }

    .faq-answer {
        padding: 0 18px 18px !important;
    }
}

/* ===================================
   MODAL HOTFIX - LOGIN / REGISTER
   =================================== */

.modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    background: rgba(15, 23, 42, 0.72) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px !important;
    z-index: 99999 !important;
    overflow-y: auto !important;
}

.modal-content {
    position: relative !important;
    width: min(100%, 620px) !important;
    max-width: 620px !important;
    margin: auto !important;
    background: #ffffff !important;
    border-radius: 28px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28) !important;
    overflow: hidden !important;
    animation: modalHotfixIn 0.25s ease-out !important;
    transform: none !important;
}

@keyframes modalHotfixIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    border: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    z-index: 20 !important;
    transition: all .2s ease !important;
}

.modal-close:hover {
    background: #eff6ff !important;
    border-color: #bfdbfe !important;
    color: #2563eb !important;
    transform: rotate(90deg) !important;
}

.auth-modal {
    padding: 34px 30px 28px !important;
    background: transparent !important;
}

.auth-modal h2 {
    font-size: clamp(30px, 4vw, 38px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em !important;
    color: #0f172a !important;
    margin: 0 0 22px !important;
    text-align: left !important;
    padding-right: 48px !important;
}

.auth-modal form {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.auth-modal .form-group {
    margin-bottom: 0 !important;
}

.auth-modal label {
    display: block !important;
    margin-bottom: 8px !important;
    color: #334155 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

.auth-modal .form-control,
.auth-modal input,
.auth-modal select,
.auth-modal textarea {
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 16px !important;
    border-radius: 16px !important;
    border: 1px solid #dbe4f0 !important;
    background: #ffffff !important;
    color: #0f172a !important;
    box-shadow: none !important;
}

.auth-modal textarea {
    min-height: 120px !important;
    padding-top: 14px !important;
}

.auth-modal .btn,
.auth-modal .btn-block {
    width: 100% !important;
    min-height: 54px !important;
    margin-top: 4px !important;
    border-radius: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.auth-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 16px !important;
    text-align: center !important;
}

.auth-links a {
    color: #2563eb !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.auth-links a:hover {
    text-decoration: underline !important;
}

.modal-overlay .row,
.modal-overlay [class*="col-"] {
    width: 100% !important;
    margin: 0 !important;
}

body:has(.modal-overlay) {
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .modal-overlay {
        padding: 14px !important;
        align-items: flex-start !important;
    }

    .modal-content {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 18px !important;
        border-radius: 22px !important;
    }

    .auth-modal {
        padding: 24px 18px 20px !important;
    }

    .auth-modal h2 {
        font-size: 28px !important;
        margin-bottom: 18px !important;
    }

    .modal-close {
        top: 12px !important;
        right: 12px !important;
        width: 38px !important;
        height: 38px !important;
    }
}

/* ===== FINAL FIX LOGIN / REGISTER ===== */
.modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 0, 0, 0.65) !important;
    z-index: 999999 !important;
    padding: 20px !important;
    overflow-y: auto !important;
}

.modal-content {
    position: relative !important;
    width: 100% !important;
    max-width: 500px !important;
    margin: auto !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    transform: none !important;
}

.auth-modal {
    padding: 0 !important;
    background: transparent !important;
}

.auth-modal h2 {
    margin: 0 0 20px !important;
    color: #0f172a !important;
    font-size: 32px !important;
    line-height: 1.1 !important;
}

.auth-modal p {
    color: #64748b !important;
    margin-bottom: 16px !important;
}

.auth-modal form {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.auth-modal .form-group {
    margin-bottom: 0 !important;
}

.auth-modal label {
    display: block !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #334155 !important;
}

.auth-modal .form-control,
.auth-modal input,
.auth-modal select,
.auth-modal textarea {
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 16px !important;
    border: 1px solid #dbe4f0 !important;
    background: #ffffff !important;
    color: #0f172a !important;
    padding: 0 16px !important;
    box-shadow: none !important;
}

.auth-modal textarea {
    min-height: 120px !important;
    height: auto !important;
    padding-top: 14px !important;
}

.form-row {
    display: flex !important;
    gap: 10px !important;
    width: 100% !important;
}

.form-row .form-group {
    flex: 1 1 0 !important;
    width: 100% !important;
}

.auth-modal .btn,
.auth-modal .btn-block {
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 4px !important;
    font-weight: 700 !important;
}

.auth-links {
    margin-top: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
}

.auth-links a {
    color: #2563eb !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.auth-links a:hover {
    text-decoration: underline !important;
}

.modal-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
    font-size: 26px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    z-index: 10 !important;
}

.modal-close:hover {
    background: #eff6ff !important;
    border-color: #bfdbfe !important;
    color: #2563eb !important;
}

body {
    overflow-x: hidden !important;
}

@media (max-width: 600px) {
    .modal-overlay {
        padding: 12px !important;
        align-items: flex-start !important;
    }

    .modal-content {
        max-width: 95% !important;
        padding: 22px !important;
        margin-top: 20px !important;
    }

    .form-row {
        flex-direction: column !important;
    }

    .auth-modal h2 {
        font-size: 28px !important;
    }
}
