:root {
    --color-bg: #0a0b0e;
    --color-card: #111218;
    --color-soft: #181a21;
    --color-stroke: #262933;
    --color-gold: #c7a567;
    --color-gold-soft: #b99554;
    --color-text: #eceae6;
    --color-sub: #b6b4ae;


    --font-sans: 'Inter', ui-sans-serif, system-ui;
    --font-serif: 'Playfair Display', ui-serif, Georgia;
}

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

html {
    overflow-x: hidden;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--color-soft);
    width: 100%;
    box-sizing: border-box;
}

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

h1 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin: 0;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--color-text);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease-in-out;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease-in-out;
}

nav a:hover {
    color: var(--color-gold-soft);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--color-gold);
}


.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar {
    background: var(--color-card);
    border: 2px solid var(--color-stroke);
    border-radius: 25px;
    padding: 8px 40px 8px 16px;
    color: var(--color-text);
    font-size: 0.9rem;
    width: 100%;
    max-width: 250px;
    min-width: 200px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.search-bar::placeholder {
    color: var(--color-sub);
}

.search-bar:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(199, 165, 103, 0.1);
    max-width: 300px;
}

.search-btn {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: var(--color-sub);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.search-btn:hover {
    color: var(--color-gold);
    background: rgba(199, 165, 103, 0.1);
}

.video-banner {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.catalogue-hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--color-soft) 0%, var(--color-card) 100%);
    margin-bottom: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.catalogue-hero h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.catalogue-hero p {
    color: var(--color-sub);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.filters {
    padding: 0 1rem;
    margin-bottom: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.filter-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-select {
    background: var(--color-card);
    border: 2px solid var(--color-stroke);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--color-text);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    min-width: 150px;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--color-gold);
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
    width: 100%;
    box-sizing: border-box;
}

.catalogue-grid .car-card:only-child {
    max-width: 380px;
    width: 100%;
}

.car-card {
    background: var(--color-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--color-stroke);
    position: relative;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-gold);
}

.car-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

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

.car-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.car-badge.sold {
    background: #dc3545;
    color: white;
}

.car-info {
    padding: 1.5rem;
}

.car-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.car-details {
    color: var(--color-sub);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.car-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    background: var(--color-soft);
    color: var(--color-text);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    border: 1px solid var(--color-stroke);
}

.car-price {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-btn {
    background: linear-gradient(135deg, var(--color-gold), #d4af37);
    color: var(--color-bg);
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(199, 165, 103, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.contact-btn:hover {
    background: linear-gradient(135deg, #d4af37, var(--color-gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(199, 165, 103, 0.4);
}

.contact-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(199, 165, 103, 0.3);
}

.contact-btn:disabled {
    background: var(--color-stroke);
    color: var(--color-sub);
    cursor: not-allowed;
    transform: none;
}

.contact-btn:disabled:hover {
    background: var(--color-stroke);
    transform: none;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 11, 14, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.banner-overlay h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.banner-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background: var(--color-gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 165, 103, 0.3);
}

.home-intro {
    padding: 4rem 1rem;
    text-align: center;
    background: var(--color-soft);
    width: 100%;
    box-sizing: border-box;
}

.intro-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--color-sub);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-cars {
    padding: 4rem 1rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.featured-cars h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    justify-items: center;
}

.featured-car {
    background: var(--color-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--color-stroke);
    width: 100%;
    max-width: 350px;
}

.featured-car:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-gold);
}

.featured-car .car-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.featured-car .car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

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

.featured-car .car-info {
    padding: 1.5rem;
}

.featured-car .car-info h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.featured-car .car-details {
    color: var(--color-sub);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.featured-car .car-plate,
.car-plate {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: monospace;
    letter-spacing: 0.1rem;
}

.featured-car .car-price {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-gold);
    font-weight: 600;
}

.view-all-btn {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease-in-out;
}

.view-all-btn:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.services {
    padding: 4rem 1rem;
    background: var(--color-soft);
    width: 100%;
    box-sizing: border-box;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-card);
    border-radius: 12px;
    border: 1px solid var(--color-stroke);
    transition: all 0.3s ease-in-out;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

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

.service-item h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--color-sub);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .banner-overlay h2 {
        font-size: 2.5rem;
    }
    
    .banner-overlay p {
        font-size: 1.1rem;
    }
    
    .intro-content h2,
    .featured-cars h2 {
        font-size: 2rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .catalogue-hero h2 {
        font-size: 2rem;
    }
    
    .catalogue-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-select {
        width: 100%;
        max-width: 300px;
    }
}

.contact-hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--color-soft) 0%, var(--color-card) 100%);
    margin-bottom: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-hero h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-hero p {
    color: var(--color-sub);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 0 1rem 4rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form-container h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--color-card);
    border-radius: 12px;
    border: 1px solid var(--color-stroke);
    transition: all 0.3s ease-in-out;
    min-height: fit-content;
}

.contact-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 45px;
    max-width: 45px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.contact-details h4 {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.contact-details p {
    color: var(--color-sub);
    line-height: 1.4;
    font-size: 0.95rem;
    margin: 0;
}

.contact-details a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.contact-details a:hover {
    color: var(--color-gold-soft);
}

.contact-notice {
    background: var(--color-card);
    border: 1px solid var(--color-gold);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.contact-notice h4 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-notice p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-notice p:last-child {
    margin-bottom: 0;
    color: var(--color-sub);
    font-style: italic;
}

.quick-contact {
    background: var(--color-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--color-stroke);
}

.quick-contact h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quick-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.info-item span:last-child {
    color: var(--color-text);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--color-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-stroke);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--color-soft);
    border: 2px solid var(--color-stroke);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-text);
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(199, 165, 103, 0.1);
}

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

.form-group textarea::placeholder {
    color: var(--color-sub);
}

.submit-btn {
    width: 100%;
    background: var(--color-gold);
    color: var(--color-bg);
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.submit-btn:hover {
    background: var(--color-gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 165, 103, 0.3);
}

.contact-cta {
    text-align: center;
    padding: 4rem 1rem;
    background: var(--color-soft);
    width: 100%;
    box-sizing: border-box;
}

.contact-cta h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--color-sub);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    .search-container {
        width: 100%;
        max-width: 300px;
        order: 2;
    }
    
    .search-bar {
        width: 100%;
        max-width: 280px;
        min-width: 200px;
    }
    
    nav {
        order: 1;
        width: 100%;
    }
    
    nav ul {
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
    }
    
    nav ul li a {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .banner-overlay {
        padding: 2rem 1rem;
    }
    
    .banner-overlay h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .banner-overlay p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    .video-banner {
        height: 300px;
    }

    .filters {
        padding: 1rem;
    }
    
    .filter-group {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .filter-select {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }

    .catalogue-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .car-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .car-image {
        height: 200px;
        width: 100%;
    }
    
    .car-info {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .car-info h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
    }
    
    .car-details, .car-plate {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    .car-features {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-start;
    }
    
    .feature {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        white-space: nowrap;
    }
    
    .car-price {
        font-size: 1.3rem;
        word-wrap: break-word;
    }
    
    .contact-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .featured-car {
        max-width: 100%;
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-item {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-hero {
        padding: 2rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-hero h2 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .contact-hero p {
        font-size: 1rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
    }
    
    .contact-content {
        padding: 0 1rem 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-info h3 {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .contact-icon {
        font-size: 1.8rem;
        min-width: 45px;
        flex-shrink: 0;
    }
    
    .contact-details {
        flex: 1;
        min-width: 0;
    }
    
    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        word-wrap: break-word;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-notice {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-notice h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }
    
    .contact-notice p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }
    
    .quick-contact {
        padding: 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .info-item {
        text-align: left;
        width: 100%;
        word-wrap: break-word;
    }
    
    .contact-form {
        padding: 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .gps-maps {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .gps-map {
        max-width: 160px;
        width: 100%;
    }
    
    .contact-cta {
        padding: 2rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-cta h3 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }
    
    .contact-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
    }
    
    .home-intro {
        padding: 3rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .intro-content h2 {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .intro-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding: 1.5rem 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header-right {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .search-bar {
        width: 220px;
        max-width: 100%;
    }
    
    .search-bar:focus {
        width: 260px;
        max-width: 100%;
    }
    
    nav ul {
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .banner-overlay {
        padding: 3rem 2rem;
    }
    
    .banner-overlay h2 {
        font-size: 2.5rem;
    }
    
    .video-banner {
        height: 350px;
    }

    .filters {
        padding: 1.5rem 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .filter-group {
        gap: 1.5rem;
        justify-content: center;
    }

    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .car-card {
        max-width: 100%;
        width: 100%;
    }
    
    .car-image {
        height: 220px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 2rem;
    }
    
    .services {
        padding: 3rem 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-hero {
        padding: 3rem 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-hero h2 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        padding: 0 2rem 3rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1.75rem;
    }
    
    .contact-item {
        padding: 1.4rem;
        margin-bottom: 1.75rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-icon {
        font-size: 1.9rem;
        min-width: 48px;
        flex-shrink: 0;
    }
    
    .contact-details {
        flex: 1;
        min-width: 0;
    }
    
    .contact-details h4 {
        font-size: 1.05rem;
        word-wrap: break-word;
    }
    
    .contact-details p {
        font-size: 0.95rem;
        word-wrap: break-word;
    }
    
    .contact-notice,
    .quick-contact {
        padding: 1.4rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form {
        padding: 1.75rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .gps-maps {
        flex-direction: row;
        justify-content: center;
        gap: 1.25rem;
    }
    
    .gps-map {
        max-width: 160px;
    }
    
    .contact-cta {
        padding: 3rem 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-cta h3 {
        font-size: 1.8rem;
    }
    
    .contact-cta p {
        font-size: 1.05rem;
    }
    
    .home-intro {
        padding: 3rem 2rem;
    }
    
    .intro-content h2 {
        font-size: 2.2rem;
    }
    
    .intro-content p {
        font-size: 1.05rem;
    }
}

@media (min-width: 1025px) {
    header {
        padding: 2rem 3rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header-right {
        gap: 2.5rem;
    }
    
    .search-bar {
        width: 250px;
        max-width: 100%;
    }
    
    .search-bar:focus {
        width: 320px;
        max-width: 100%;
    }
    
    nav ul {
        gap: 2rem;
    }

    .banner-overlay {
        padding: 4rem 3rem;
    }
    
    .banner-overlay h2 {
        font-size: 3rem;
    }
    
    .video-banner {
        height: 400px;
    }

    .catalogue-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1400px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1200px;
        justify-items: center;
    }
    
    .featured-car {
        max-width: 380px;
    }
    
    .car-image {
        height: 250px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 3rem;
        justify-content: center;
        align-items: center;
    }
    
    .services {
        padding: 4rem 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }

    .contact-hero {
        padding: 4rem 3rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-hero h2 {
        font-size: 3rem;
    }
    
    .contact-hero p {
        font-size: 1.2rem;
    }
    
    .contact-content {
        padding: 0 3rem 4rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .contact-icon {
        font-size: 1.8rem;
        min-width: 45px;
        max-width: 45px;
        text-align: center;
        flex-shrink: 0;
    }
    
    .contact-details {
        flex: 1;
        min-width: 0;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
    
    .contact-notice,
    .quick-contact {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form {
        padding: 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .gps-maps {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .gps-map {
        max-width: 160px;
    }
    
    .gps-map:hover {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(199, 165, 103, 0.4);
    }
    
    .contact-cta {
        padding: 4rem 3rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-cta h3 {
        font-size: 2rem;
    }
    
    .contact-cta p {
        font-size: 1.1rem;
    }
    
    .home-intro {
        padding: 4rem 3rem;
    }
    
    .intro-content h2 {
        font-size: 2.5rem;
    }
    
    .intro-content p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1400px) {
    header {
        padding: 2rem 4rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .catalogue-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1600px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .featured-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1600px;
        padding: 0 4rem;
    }

    .services {
        padding: 5rem 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
    }
    
    .contact-hero {
        padding: 5rem 4rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-content {
        padding: 0 4rem 5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-grid {
        max-width: 1400px;
        gap: 4rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-cta {
        padding: 5rem 4rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .home-intro {
        padding: 5rem 4rem;
    }
}

footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-stroke);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-disclaimer {
    background: var(--color-card);
    border: 1px solid var(--color-gold);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-disclaimer h4 {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-disclaimer p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-credits {
    color: var(--color-sub);
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-stroke);
}

.footer-credits .creator {
    color: var(--color-gold);
    font-weight: 600;
}

.gps-maps {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.gps-map {
    width: 100%;
    max-width: 140px;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--color-stroke);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    object-fit: cover;
}

.gps-map:hover {
    border-color: var(--color-gold);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(199, 165, 103, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.gps-section {
    margin-bottom: 2rem;
}

.gps-description {
    color: var(--color-sub);
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--color-gold);
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    font-size: 1rem;
    max-width: 80%;
}

.gps-map {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gps-map:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(199, 165, 103, 0.4);
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .modal-caption {
        bottom: 10px;
        font-size: 0.9rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-disclaimer {
        padding: 1rem;
    }
    
    .footer-disclaimer h4 {
        font-size: 1rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.9rem;
    }
    
    .footer-credits {
        font-size: 0.8rem;
        padding-top: 0.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    footer {
        padding: 2rem 0;
        margin-top: 3rem;
    }
    
    .footer-content {
        padding: 0 2rem;
    }
    
    .footer-disclaimer {
        padding: 1.25rem;
    }
}

@media (min-width: 1025px) {
    footer {
        padding: 2.5rem 0;
        margin-top: 4rem;
    }
    
    .footer-content {
        padding: 0 3rem;
    }
    
    .footer-disclaimer {
        padding: 1.5rem;
    }
    
    .footer-disclaimer:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(199, 165, 103, 0.1);
    }
}