@import "tailwindcss";

@font-face {
    font-family: "Azonix";
    src: url("../assets/fonts/Azonix.otf") format("opentype");
}

* {
    box-sizing: border-box;
}

html {
    /*****************/
    /*   VARIABLES   */
    /*****************/
    /* Fonts */
    --title-font: "Azonix";
    --content-font: "Poppins";
    /* Colors */
    --black: #223440;
    --darkgrey: #314a59;
    --turquoise: #1f98a6;
    --green: #17a6a6;
    --white: #fcfcfd;
    --lightgrey: #f2f2f2;
    --grey: #d7d7d7;

    /* Interval inputs Colors */
    --range-slider: var(--grey); /* slider main background color */
    --range-handle-inactive: var(--turquoise); /* inactive handle color */
    --range-handle: var(--turquoise); /* non-focussed handle color */
    --range-handle-focus: var(--darkgrey); /* focussed handle color */
    --range-handle-border: var(--range-handle);
    --range-range-inactive: var(
        --range-handle-inactive
    ); /* inactive range bar background color */
    --range-range: var(--range-handle); /* active range bar background color */
    --range-float-inactive: var(
        --range-handle-inactive
    ); /* inactive floating label background color */
    --range-float: var(
        --range-handle-focus
    ); /* floating label background color */
    --range-float-text: white; /* text color on floating label */

    font-family: var(--content-font), sans-serif;
    font-size: 14px;
    scroll-behavior: smooth;

    padding: 0;
    margin: 0;
}

body {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    background: var(--white);
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(34, 52, 64, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.nav-container > div:first-child {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-container > div:first-child a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--title-font);
}

.logo {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--turquoise);
    transition: width 0.3s ease;
}

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    padding: 30px 20px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav-links.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--darkgrey);
}

.mobile-nav-header img {
    height: 40px;
}

.mobile-nav-header a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--title-font);
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--darkgrey);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--turquoise);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, var(--darkgrey) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 80px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-family: var(--title-font);
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white) 0%, var(--turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title .divider {
    margin: 0 0.5rem;
    font-weight: 400;
    color: #4dd0e1; /* bleu clair */
}

.hero-title .highlight {
    display: block;
    font-size: 2.2rem;
    font-weight: 500;
    color: #80deea;
}
.hero-subtitle {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(252, 252, 253, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--green) 100%);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-text-mobile {
    display: none;
}

.btn-text-desktop {
    display: inline;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(31, 152, 166, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--turquoise);
    padding: 13px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--turquoise);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.car-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.price-banner {
    position: absolute;
    top: -50px;
    right: 20px;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--green) 100%);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
}

.certified-badge {
    font-family: var(--content-font);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
}

.price-text {
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%,
    100% {
        transform: rotate(-5deg) translateY(0px);
    }
    50% {
        transform: rotate(-5deg) translateY(-10px);
    }
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    padding: 15px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--lightgrey);
}

.gallery-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--darkgrey);
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item:first-child {
    grid-column: 1;
    grid-row: 1;
}

.gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.gallery-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 52, 64, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    color: var(--white);
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -10px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    color: var(--turquoise);
    background: rgba(255, 255, 255, 0.2);
}

.section-title {
    font-family: var(--title-font);
    font-size: 2.5rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--green) 100%);
    border-radius: 2px;
}

/* Specifications Section */
.specs-section {
    padding: 100px 0;
    background: var(--white);
}

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

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--lightgrey);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.spec-icon {
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-weight: bold;
}

.spec-icon svg {
    width: 28px;
    height: 28px;
}

.spec-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 5px 0;
}

.spec-details p {
    font-size: 0.95rem;
    color: var(--darkgrey);
    margin: 0;
}

.specs-image {
    position: relative;
}

.specs-car-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Market Section */
.market-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darkgrey) 0%, var(--black) 100%);
}

.market-section .section-title {
    color: var(--white);
}

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

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

.market-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.market-icon {
    margin-bottom: 20px;
    color: var(--turquoise);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(31, 152, 166, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.market-icon svg {
    width: 36px;
    height: 36px;
}

.market-item h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.market-item p {
    color: rgba(252, 252, 253, 0.8);
    line-height: 1.6;
}

.market-image {
    margin-top: 60px;
    text-align: center;
}

.market-car-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.market-car-image:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--lightgrey);
}

.contact-content-center {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--darkgrey);
    margin: 20px 0 40px 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: left;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--grey);
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--content-font);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(31, 152, 166, 0.1);
}

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

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

/* Simple Coming Soon Page Styles */
.simple-coming-soon {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, var(--darkgrey) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.simple-content {
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

.logo-container {
    margin-bottom: 60px;
}

.simple-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.simple-logo:hover {
    transform: scale(1.05);
}

.simple-title {
    font-family: var(--title-font);
    font-size: 4.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Preview Section */
.preview-section {
    padding: 100px 0;
    background: var(--white);
}

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

.preview-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--lightgrey);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.preview-icon {
    font-size: 2rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 20px auto;
    font-weight: bold;
}

.preview-item h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
}

.preview-item p {
    color: var(--darkgrey);
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: var(--lightgrey);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-description {
    font-size: 1.1rem;
    color: var(--darkgrey);
    margin: 20px 0 40px 0;
}

.newsletter-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-content > div:first-child {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-content > div:first-child a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--title-font);
}

.footer-logo {
    height: 50px;
}

.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    gap: 30px;
    margin-top: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal p {
    color: rgba(252, 252, 253, 0.7);
    margin: 0;
    font-size: 14px;
}

.footer-legal a {
    color: var(--turquoise);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.social-links a {
    color: rgba(252, 252, 253, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: var(--turquoise);
    background: rgba(31, 152, 166, 0.2);
    transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */

/* Large Tablets and Small Desktops: 769px - 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .market-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 250px);
        gap: 20px;
    }

    .gallery-item:first-child {
        grid-column: 1;
        grid-row: 1;
    }

    .gallery-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .gallery-item:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
    }
}

/* Tablets: 481px - 768px */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .gallery-item:first-child,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
        height: auto;
        aspect-ratio: 4/3;
    }
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav-links {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .car-image {
        height: 300px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .specs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .market-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .gallery-section {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .gallery-item:first-child,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
        height: auto;
        aspect-ratio: 4/3;
    }

    .lightbox-close {
        top: -40px;
        right: -5px;
        font-size: 30px;
        width: 35px;
        height: 35px;
    }

    .footer-credits {
        flex-direction: column;
        gap: 20px;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

/* Mobile: 320px - 480px */
@media (max-width: 480px) {
    .scroll-indicator {
        display: none;
    }
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .nav-container > div:first-child {
        gap: 10px;
    }

    .nav-container > div:first-child a {
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav-links {
        display: flex;
    }

    .logo {
        height: 32px;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .car-image {
        height: 250px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-title .highlight {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .btn-text-desktop {
        display: none;
    }

    .btn-text-mobile {
        display: inline;
    }

    .price-banner {
        top: 200px;
        right: 10px;
        padding: 10px 15px;
        font-size: 12px;
    }

    .price-text {
        font-size: 14px;
    }

    .certified-badge {
        font-size: 10px;
    }

    .specs-section,
    .market-section,
    .contact-section,
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-overlay svg {
        width: 24px;
        height: 24px;
    }

    .lightbox {
        padding: 15px;
    }

    .lightbox-close {
        top: -35px;
        right: 0;
        font-size: 25px;
        width: 30px;
        height: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .spec-icon {
        width: 50px;
        height: 50px;
    }

    .spec-icon svg {
        width: 24px;
        height: 24px;
    }

    .market-icon {
        width: 60px;
        height: 60px;
    }

    .market-icon svg {
        width: 28px;
        height: 28px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-content > div:first-child a {
        font-size: 18px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        right: 10px;
        bottom: 10px;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}

/* Small Mobile: max 320px */
@media (max-width: 320px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav-links {
        display: flex;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-title .highlight {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .spec-icon {
        width: 45px;
        height: 45px;
    }

    .spec-icon svg {
        width: 20px;
        height: 20px;
    }

    .market-icon {
        width: 55px;
        height: 55px;
    }

    .market-icon svg {
        width: 24px;
        height: 24px;
    }

    .btn-text-desktop {
        display: none;
    }

    .btn-text-mobile {
        display: inline;
    }
}

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

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

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

/* Economic Arguments Section */
.economic-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--lightgrey) 0%, var(--white) 100%);
}

.economic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.economic-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 52, 64, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.economic-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 52, 64, 0.15);
    border-color: var(--turquoise);
}

.economic-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--turquoise);
    font-family: var(--title-font);
    margin-bottom: 15px;
    display: block;
}

.economic-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 15px 0;
    font-family: var(--title-font);
}

.economic-item p {
    color: var(--darkgrey);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Target Customers Section */
.target-section {
    padding: 100px 0;
    background: var(--white);
}

.target-description {
    font-size: 1.2rem;
    color: var(--darkgrey);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 30px auto 50px;
}

.target-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--lightgrey);
    padding: 20px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, var(--turquoise), var(--green));
    color: var(--white);
    transform: translateX(10px);
}

.feature-check {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span:last-child {
    font-weight: 500;
    font-size: 1.1rem;
}

.target-conclusion {
    font-size: 1.2rem;
    color: var(--black);
    font-weight: 600;
    text-align: center;
    max-width: 700px;
    margin: 40px auto 0;
    line-height: 1.6;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .economic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .economic-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .economic-section,
    .target-section {
        padding: 80px 0;
    }

    .economic-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .economic-item {
        padding: 30px 20px;
    }

    .economic-value {
        font-size: 2.2rem;
    }

    .economic-item h3 {
        font-size: 1.2rem;
    }

    .target-description {
        font-size: 1.1rem;
        margin: 20px auto 40px;
    }

    .feature-item {
        padding: 15px 20px;
    }

    .feature-item span:last-child {
        font-size: 1rem;
    }

    .target-conclusion {
        font-size: 1.1rem;
        margin: 30px auto 0;
    }
}

@media (max-width: 480px) {
    .economic-section,
    .target-section {
        padding: 60px 0;
    }

    .economic-value {
        font-size: 2rem;
    }

    .economic-item h3 {
        font-size: 1.1rem;
    }

    .economic-item p {
        font-size: 0.9rem;
    }

    .target-description {
        font-size: 1rem;
    }

    .feature-item {
        padding: 12px 15px;
        gap: 12px;
    }

    .feature-item span:last-child {
        font-size: 0.95rem;
    }

    .target-conclusion {
        font-size: 1rem;
    }
}
