/* Reset e base styles */

/* Stili per messaggio nessuna auto disponibile */

/* Stili per status auto */
.car-status {
    font-size: 0.9em;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 12px;
    margin: 0 5px;
}

.status-available {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-unavailable {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.result-car {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
}

.result-car .car-name {
    flex: 1;
    font-weight: bold;
}

.result-car .car-total {
    margin: 0 10px;
    font-weight: bold;
    color: #c8a882;
}
.no-cars-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin: 2rem 0;
}

.no-cars-content {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
}

.no-cars-content h3 {
    color: #495057;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-cars-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.no-cars-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colori DS Automotive */
    --ds-blue-dark: #0a2240; /* Blu scuro principale */
    --ds-blue: #1a3a64; /* Blu medio */
    --ds-blue-light: #2c5aa0; /* Blu chiaro */
    --ds-gold: #c8a45c; /* Oro/giallo */
    --ds-gold-light: #e5d5b0; /* Oro chiaro */
    --ds-gray-dark: #333333;
    --ds-gray: #666666;
    --ds-gray-light: #f5f5f5;
}

/* Dynamic Background Elements */
.dynamic-bg-element {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    will-change: transform, opacity;
    opacity: 0.4;
    filter: blur(1px);
}

.dynamic-circle {
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ds-blue-dark) 0%, var(--ds-gold) 100%);
    animation: floatAnimation 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.dynamic-square {
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ds-gold) 0%, var(--ds-blue-dark) 100%);
    animation: rotateAnimation 15s linear infinite;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.dynamic-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--ds-gold) 50%, transparent 100%);
    opacity: 0.1;
    animation: lineAnimation 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

/* Variazioni per sezioni diverse */
.hero-section .dynamic-circle {
    animation-duration: 10s;
    filter: blur(2px);
}

.fleet-section .dynamic-square {
    animation-duration: 18s;
    filter: blur(1px);
}

.services-section .dynamic-line {
    animation-duration: 12s;
}

.contact-section .dynamic-circle {
    animation-duration: 9s;
    filter: blur(1.5px);
}

.map-section .dynamic-square {
    animation-duration: 20s;
}

.footer .dynamic-bg-element {
    filter: blur(1px);
}

@keyframes floatAnimation {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -15px) rotate(5deg); }
    100% { transform: translate(-20px, 15px) rotate(-5deg); }
}

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

@keyframes lineAnimation {
    0%, 100% { opacity: 0.05; width: 90%; left: 5%; }
    50% { opacity: 0.2; width: 100%; left: 0; }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fafafa;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: #1b1c17; /* Colore specifico richiesto dall'utente */
    backdrop-filter: blur(20px);
    border-bottom: 3px solid var(--ds-gold); /* Bordo oro DS più evidente */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease, transform 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(0); /* Posizione iniziale visibile */
}

.navbar {
    padding: 2rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

.logo-icon {
    font-size: 1.5rem;
    color: var(--ds-gold);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 100px;
    max-width: 360px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 6px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo:hover .logo-img {
    filter: brightness(1.05);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--ds-gold);
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--ds-blue-dark) 0%, var(--ds-blue) 50%, var(--ds-blue-light) 100%);
    color: white;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero::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" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, var(--ds-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-image {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.modern-hero-image img {
    width: 100%;
    max-width: 700px;
    height: 320px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(59,130,246,0.10);
    opacity: 0.92;
    z-index: 1;
    animation: heroFadeIn 1.2s cubic-bezier(0.4,0,0.2,1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(10,34,64,0.08) 0%, rgba(200,164,92,0.12) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-image i {
    font-size: 10rem;
    opacity: 0.12;
    color: var(--ds-gold);
    filter: blur(1px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
    animation: heroIconFloat 3s ease-in-out infinite alternate;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 0.92; transform: translateY(0); }
}

@keyframes heroIconFloat {
    from { transform: translate(-50%,-50%) scale(1); }
    to { transform: translate(-50%,-55%) scale(1.06); }
}

.car-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    margin-right: 8px;
    background: rgba(200,164,92,0.08);
    color: var(--ds-gold);
    box-shadow: 0 4px 12px rgba(200,164,92,0.1);
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: badgePop 0.7s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.car-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.car-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.8s ease;
}

.car-slide.active .car-badge::before {
    left: 100%;
}

@keyframes badgePop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    70% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.badge-economia {
    background: rgba(10,34,64,0.10);
    color: var(--ds-blue-light);
    border: 1px solid rgba(10,34,64,0.3);
}
.badge-comfort {
    background: rgba(44,90,160,0.10);
    color: var(--ds-blue);
    border: 1px solid rgba(44,90,160,0.3);
}
.badge-lusso {
    background: rgba(200,164,92,0.10);
    color: var(--ds-gold);
    border: 1px solid rgba(200,164,92,0.3);
}

@keyframes badgePop {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}


/* Admin Link */
.admin-link {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.admin-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(10, 34, 64, 0.8);
    color: var(--ds-gold);
    border: 1px solid var(--ds-gold);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.admin-button:hover {
    background: rgba(10, 34, 64, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.admin-button i {
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--ds-gold) 0%, #b08d3c 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(200, 164, 92, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d9b56c 0%, var(--ds-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 164, 92, 0.4);
}

.btn-secondary {
    background: rgba(10, 34, 64, 0.8);
    color: var(--ds-gold-light);
    border: 1px solid var(--ds-gold);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(10, 34, 64, 0.9);
    color: var(--ds-gold);
    border-color: var(--ds-gold);
    transform: translateY(-2px);
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
    padding: 120px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--ds-gold) 0%, rgba(200, 164, 92, 0) 70%);
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
}

.booking-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--ds-blue) 0%, rgba(44, 90, 160, 0) 70%);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.booking-decoration {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 15%;
    right: 10%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50 Z' fill='none' stroke='%23C8A45C' stroke-width='1' stroke-opacity='0.3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    animation: rotate 30s linear infinite;
    z-index: 1;
}

.booking-decoration-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 8%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%232C5AA0' stroke-width='1' stroke-opacity='0.3'/%3E%3C/svg%3E");
    animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.booking-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 48px 40px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.1), 0 10px 30px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(226, 232, 240, 0.7);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

.booking-form:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12), 0 15px 35px rgba(0,0,0,0.08);
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--ds-gold), var(--ds-blue-dark), var(--ds-gold));
    background-size: 200% 100%;
    animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.booking-form h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--ds-blue-dark);
    position: relative;
    padding-bottom: 1.2rem;
    font-size: 2rem;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.booking-form h3::before {
    content: '✦';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ds-gold);
    font-size: 1.2rem;
    opacity: 0.8;
}

.booking-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ds-gold), transparent);
    border-radius: 3px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    align-items: end;
    margin-top: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpStaggered 0.5s ease-out forwards;
}

.form-group:nth-child(1) { animation-delay: 0.2s; }
.form-group:nth-child(2) { animation-delay: 0.3s; }
.form-group:nth-child(3) { animation-delay: 0.4s; }
.form-group:nth-child(4) { animation-delay: 0.5s; }

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

.form-group:hover {
    transform: translateY(-2px);
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.form-group:hover label {
    color: var(--ds-blue-dark);
}

.form-group label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--ds-gold);
    border-radius: 50%;
    margin-right: 8px;
    opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    color: #1e293b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(5px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
    background: rgba(255, 255, 255, 0.95);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ds-gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(200, 164, 92, 0.15);
    transform: translateY(-2px);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23475569' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.form-group button.btn-primary {
    padding: 18px 30px;
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--ds-blue) 0%, var(--ds-blue-dark) 100%);
    border: none;
    box-shadow: 0 10px 20px rgba(44, 90, 160, 0.2), 0 6px 6px rgba(44, 90, 160, 0.1), 0 0 0 1px rgba(44, 90, 160, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.form-group button.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(44, 90, 160, 0.25), 0 10px 10px rgba(44, 90, 160, 0.15), 0 0 0 1px rgba(44, 90, 160, 0.1);
}

.form-group button.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(44, 90, 160, 0.2), 0 4px 4px rgba(44, 90, 160, 0.1), 0 0 0 1px rgba(44, 90, 160, 0.1);
}

.form-group button.btn-primary::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: all 0.6s;
}

.form-group button.btn-primary:hover::before {
    left: 100%;
}

/* Buy/Sell Section */
.buy-sell-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.buy-sell-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--ds-blue) 0%, rgba(26, 58, 100, 0) 70%);
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
}

.buy-sell-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--ds-gold) 0%, rgba(200, 164, 92, 0) 70%);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.buy-sell-decoration {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 15%;
    left: 10%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50 Z' fill='none' stroke='%232C5AA0' stroke-width='1' stroke-opacity='0.3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    animation: rotate 25s linear infinite;
    z-index: 1;
}

.buy-sell-decoration-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 8%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23C8A45C' stroke-width='1' stroke-opacity='0.3'/%3E%3C/svg%3E");
    animation: rotate 20s linear infinite reverse;
}

.buy-sell-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--ds-blue-dark);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.buy-sell-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--ds-gold);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--ds-gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.buy-sell-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto 4rem;
    max-width: 800px;
}

.buy-sell-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.buy-sell-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ds-blue-dark), var(--ds-gold));
}

.buy-sell-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--ds-blue-dark), var(--ds-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.buy-sell-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ds-blue-dark);
}

.buy-sell-card p {
    color: var(--ds-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--ds-gray-dark);
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--ds-gold);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.buy-sell-cta {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.buy-sell-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ds-gold), var(--ds-blue-dark));
}

.buy-sell-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ds-blue-dark);
}

.buy-sell-cta p {
    color: var(--ds-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
}

/* Fleet Section */
.fleet-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ds-gold), transparent);
    will-change: opacity;
}

.fleet-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--ds-blue-dark);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
    background: linear-gradient(135deg, var(--ds-blue-dark) 0%, var(--ds-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fleet-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--ds-gold) 0%, #b08d3c 100%);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(200, 164, 92, 0.3);
}

.fleet-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fleet-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 600px;
    min-height: 600px;
}

.car-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    min-height: 600px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.car-slide.active {
    display: block;
    opacity: 1;
    z-index: 1;
    transform: scale(1);
    animation: slideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Layout Minimalista: Auto in grande, testo piccolo senza bordi */
.car-presentation-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.car-bg-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.car-presentation-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s ease;
}

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

.car-content-new {
    position: relative;
    z-index: 3;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

.car-text-info {
    flex: 1;
}

.car-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.car-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.car-badge {
    background: var(--ds-gold);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.car-description {
    color: #f1f5f9;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    display: none; /* Nascosto per pulizia */
}

.car-specs-grid-new {
    display: flex;
    gap: 15px;
}

.car-spec-item-new {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 0.85rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.car-spec-item-new i {
    color: var(--ds-gold);
}

.car-action-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.car-price-new {
    display: flex;
    align-items: baseline;
    gap: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.car-price-new .price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ds-gold);
}

.car-price-new .price-period {
    color: white;
    font-size: 0.9rem;
}

.car-book-btn-new {
    background: var(--ds-blue-dark);
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-book-btn-new:hover {
    background: var(--ds-gold);
    color: white;
}

/* Badge categoria auto */
.car-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ds-blue) 0%, var(--ds-blue-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 58, 100, 0.3);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    from {
        box-shadow: 0 4px 15px rgba(26, 58, 100, 0.3);
    }
    to {
        box-shadow: 0 6px 20px rgba(26, 58, 100, 0.5);
    }
}

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

.car-slide.active .car-badge::before {
    left: 100%;
}

.car-info h3 {
    margin-bottom: 15px;
    color: var(--ds-blue-dark);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--ds-blue-dark) 0%, var(--ds-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.car-info p {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 400px;
}

.car-specs {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    justify-content: space-between;
}

.car-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 15px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.car-spec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--ds-gold) 0%, #b08d3c 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.car-spec:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--ds-gold);
}

.car-spec:hover::before {
    transform: scaleX(1);
}

.car-spec-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ds-blue-light) 0%, var(--ds-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.2);
    transition: all 0.3s ease;
}

.car-spec:hover .car-spec-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.3);
}

.car-spec-icon i {
    color: white;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.car-spec:hover .car-spec-icon i {
    transform: scale(1.1);
}

.car-spec-value {
    font-weight: 700;
    color: var(--ds-blue-dark);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.car-spec-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-price {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--ds-gold);
    margin-bottom: 35px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.car-price::before {
    content: none;
}

.car-slide:hover .car-price {
    transform: scale(1.05);
}

.car-info .btn-primary {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--ds-blue) 0%, var(--ds-blue-dark) 100%);
    border: 2px solid transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(26, 58, 100, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    margin-top: 25px;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    cursor: pointer;
}

.car-info .btn-primary::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.6s ease;
    z-index: -1;
}

.car-info .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(26, 58, 100, 0.4);
    background: linear-gradient(135deg, var(--ds-gold) 0%, #b08d3c 100%);
    border-color: var(--ds-gold);
}

.car-info .btn-primary:hover::before {
    left: 100%;
}

.car-info .btn-primary:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(26, 58, 100, 0.5);
}

.car-info .btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 58, 100, 0.2);
}

.fleet-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.fleet-control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 2px solid rgba(26, 58, 100, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.fleet-control-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--ds-blue) 0%, var(--ds-blue-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.fleet-control-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(26, 58, 100, 0.25);
    border-color: var(--ds-blue);
}

.fleet-control-btn:hover::before {
    opacity: 1;
}

.fleet-control-btn:hover i {
    color: white;
    transform: scale(1.2);
}

.fleet-control-btn i {
    color: var(--ds-blue);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.fleet-control-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.fleet-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.fleet-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(44, 90, 160, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.fleet-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--ds-gold) 0%, #b08d3c 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.fleet-indicator.active {
    background: linear-gradient(135deg, var(--ds-blue) 0%, var(--ds-blue-dark) 100%);
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(26, 58, 100, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.fleet-indicator.active::before {
    width: 6px;
    height: 6px;
}

.fleet-indicator:hover {
    transform: scale(1.2);
    background: linear-gradient(135deg, var(--ds-gold) 0%, #b08d3c 100%);
    box-shadow: 0 3px 12px rgba(200, 164, 92, 0.3);
}

.fleet-indicator:hover::before {
    width: 4px;
    height: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fleet-indicator.active {
    background: var(--ds-blue);
    transform: scale(1.2);
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--ds-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 60px 0 0;
    margin-bottom: 0;
    z-index: 1;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #2c5aa0;
    animation: fadeInDown 0.8s ease-out;
}

.map-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2c5aa0, #1e3c6a);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-directions-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.map-directions-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #3a6ab0, #2c5aa0);
}

.map-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    z-index: 2;
}

.map-container {
    width: 100%;
    position: relative;
    height: 450px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-in-out;
}

.map-container:hover {
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: opacity 0.3s ease;
}

.map-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    pointer-events: none;
}

.map-hint {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    animation: fadeIn 1.5s ease-in-out 1s both;
}

.map-hint i {
    margin-right: 8px;
    color: #2c5aa0;
}

.map-info {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin: 15px 0 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c5aa0;
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-right: 1rem;
    width: 50px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #2c5aa0;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ds-blue);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.contact-social-links a:hover {
    color: var(--ds-gold);
}

.contact-social-links a i {
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ds-gold), transparent);
}

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

.service-card {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--ds-gold);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--ds-gold);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ds-gold), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-group {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.contact-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-group-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ds-blue);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ds-gold);
    position: relative;
}

.contact-group-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--ds-gold);
}

.contact-group .contact-item {
    margin-bottom: 16px;
}

.contact-group .contact-item:last-child {
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    width: 44px;
    height: 44px;
    background: rgba(200, 164, 92, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ds-gold);
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 1px solid rgba(200, 164, 92, 0.3);
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.contact-item p a {
    color: var(--ds-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item p a:hover {
    color: var(--ds-gold);
    text-decoration: underline;
}

.contact-item p a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
}

.contact-item p a[href^="tel:"]:before {
    content: '📞';
    margin-right: 6px;
    font-size: 0.9rem;
}

.contact-item p a[href^="https://wa.me"] {
    display: inline-flex;
    align-items: center;
    color: #25D366;
}

.contact-item p a[href^="https://wa.me"]:hover {
    color: #128C7E;
}

.contact-item p a[href^="mailto:"] {
    display: inline-flex;
    align-items: center;
}

.contact-item p a[href^="mailto:"]:before {
    content: '✉️';
    margin-right: 6px;
    font-size: 0.9rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    color: #4a90e2;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.map-link i {
    font-size: 0.8rem;
    margin-left: 5px;
}

.map-link:hover {
    color: #2c6cb9;
    transform: translateX(3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--ds-blue-dark) 0%, var(--ds-blue) 100%);
    color: #cbd5e1;
    padding: 80px 0 30px;
    border-top: 1px solid var(--ds-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--ds-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 120px;
    max-width: 400px;
    object-fit: contain;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.footer-section .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-section .logo i {
    font-size: 1.8rem;
    color: #3b82f6;
}

.footer-section .logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(200, 164, 92, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ds-gold);
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 1px solid rgba(200, 164, 92, 0.3);
}

.social-links a:hover {
    background: var(--ds-gold);
    color: var(--ds-blue-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .booking-form {
        margin: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .logo-img {
        height: 80px;
        max-width: 280px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: 80vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        max-width: none;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image i {
        font-size: 8rem;
    }
    
    .navbar {
        padding: 16px 0;
    }
    
    .booking-section,
    .buy-sell-section,
    .fleet-section,
    .services-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .booking-form {
        padding: 30px 20px;
        margin: 0 15px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .booking-form h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .booking-form::before {
        height: 4px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Responsive per le card delle auto */
    .car-slide {
        flex-direction: column;
        height: auto;
        padding: 20px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .car-image {
        padding: 20px;
        order: 1;
    }
    
    .car-image img {
        max-height: 250px;
    }
    
    .car-info {
        padding: 30px 20px;
        border-radius: 0 0 15px 15px;
        border-left: none;
        border-top: 3px solid var(--ds-gold);
        order: 2;
    }
    
    .car-info h3 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .car-specs {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 25px;
    }
    
    .car-spec {
        flex: 0 1 calc(50% - 10px);
        padding: 15px 10px;
    }
    
    .car-spec-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .car-spec-icon i {
        font-size: 1.2rem;
    }
    
    .car-spec-value {
        font-size: 1rem;
    }
    
    .car-spec-label {
        font-size: 0.8rem;
    }
    
    .car-price {
        font-size: 2.2rem;
        text-align: center;
        margin: 20px auto;
        padding: 12px 20px;
    }
    
    .car-info .btn-primary {
        width: 100%;
        margin: 20px 0;
        font-size: 16px;
        padding: 14px 24px;
        min-width: auto;
    }
    
    .fleet-controls {
        gap: 20px;
        margin-top: 30px;
    }
    
    .fleet-control-btn {
        width: 55px;
        height: 55px;
    }
    
    .fleet-control-btn i {
        font-size: 1.2rem;
    }
    
    .fleet-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .fleet-indicators {
        margin-top: 25px;
        gap: 8px;
    }
    
    .fleet-indicator {
        width: 10px;
        height: 10px;
    }
    
    .form-group input,
    .form-group select {
        padding: 15px;
        font-size: 16px;
        border-radius: 8px;
        min-height: 50px;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 1rem;
        min-height: 50px;
        border-radius: 8px;
        touch-action: manipulation;
    }
    
    .fleet-carousel {
        height: auto;
        flex-direction: column;
        padding: 0 10px;
    }

    .car-slide {
        margin: 0 5px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .car-background {
        min-height: 500px;
    }

    .car-content {
        padding: 20px;
        min-height: 180px;
        justify-content: flex-end;
    }

    .car-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .car-specs-grid {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .car-spec-item {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .car-bottom-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .car-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .car-price {
        align-items: center;
        margin-right: 0;
        margin-bottom: 8px;
        padding: 0;
        border-radius: 0;
    }

    .car-price:hover {
        transform: none;
    }

    .price-amount {
        font-size: 1.6rem;
    }

    .price-amount {
        font-size: 1.6rem;
    }

    .car-book-btn {
        width: 100%;
        padding: 14px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .service-card {
        margin: 0 10px;
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 15px;
        font-size: 16px;
        border-radius: 8px;
        min-height: 50px;
    }
    
    .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-logo-img {
        height: 90px;
        max-width: 300px;
    }
    
    .footer-section .logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .buy-sell-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .buy-sell-card {
        padding: 2rem;
    }
    
    .buy-sell-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .buy-sell-cta {
        padding: 2rem;
        margin: 0 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero {
        padding: 110px 0 70px;
        min-height: 75vh;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-image i {
        font-size: 5rem;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .fleet-grid,
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 5px;
    }
    
    .booking-form {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .booking-form h3 {
        font-size: 1.4rem;
    }
    
    .logo-img {
        height: 70px;
        max-width: 240px;
    }
    
    .footer-logo-img {
        height: 80px;
        max-width: 260px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .car-slide {
        margin: 0 2px;
    }
    
    .service-card,
    .contact-form {
        margin: 0 5px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .booking-form {
        padding: 15px 10px;
        margin: 0 5px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 60px;
        max-width: 200px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.car-card,
.service-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.nav-menu a,
.btn,
.car-card,
.service-card {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-menu a,
    .car-card,
    .service-card {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .car-card:hover,
    .service-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
}

/* Prevent zoom on input focus on iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Improve scrolling performance */
* {
    -webkit-overflow-scrolling: touch;
}

/* Better tap highlighting */
* {
    -webkit-tap-highlight-color: rgba(44, 90, 160, 0.2);
    -webkit-touch-callout: none;
}

a, button, .btn {
    -webkit-tap-highlight-color: rgba(44, 90, 160, 0.3);
}

/* ===== STILI PAGINA AUTO IN VENDITA ===== */

/* Hero Section per Auto in Vendita */
.sale-hero {
    background: linear-gradient(135deg, var(--ds-blue-dark) 0%, var(--ds-blue) 100%);
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ds-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Sezione Filtri */
.filters-section {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filters-section h3 {
    color: var(--ds-blue-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    color: var(--ds-blue-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--ds-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 100, 0.1);
}

/* Griglia Auto in Vendita */
.cars-sale-section {
    padding: 3rem 0;
    background: white;
}

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

.car-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.car-info {
    padding: 1.5rem;
}

.car-name {
    color: var(--ds-blue-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.detail-label {
    font-weight: 600;
    color: #666;
    font-size: 1rem;
}

.detail-value {
    font-weight: 500;
    color: var(--ds-blue-dark);
    font-size: 1.1rem;
}

.car-price {
    margin-bottom: 1rem;
    text-align: center;
    color: var(--ds-gold);
}

.price-label {
    display: block;
    font-size: 1rem;
    color: var(--ds-blue-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.price-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFEB3B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.car-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.car-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.car-actions .btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

/* Messaggio nessuna auto */
.no-cars-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-cars-message i {
    font-size: 4rem;
    color: var(--ds-blue-light);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-cars-message h3 {
    color: var(--ds-blue-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-cars-message p {
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modal Dettagli Auto */
.car-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.car-details-modal.show {
    opacity: 1;
    visibility: visible;
}

.car-details-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.car-details-modal .modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.car-details-modal .modal-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.car-details-modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: var(--ds-blue-dark);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h2 {
    color: var(--ds-blue-dark);
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
}

.modal-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

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

.detail-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--ds-blue-light);
}

.detail-item.price-highlight {
    background: linear-gradient(135deg, var(--ds-gold-light) 0%, var(--ds-gold) 100%);
    border-left-color: var(--ds-gold);
    font-size: 1.1rem;
}

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

.description-section h4 {
    color: var(--ds-blue-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.description-section p {
    color: #666;
    line-height: 1.6;
}

.modal-actions {
    text-align: center;
}

/* Sezione Contatti CTA */
.contact-cta-section {
    background: linear-gradient(135deg, var(--ds-blue-dark) 0%, var(--ds-blue) 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    min-width: 150px;
    font-weight: 600;
}

.btn-success {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.btn-success:hover {
    background: #128c7e;
    border-color: #128c7e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .car-actions {
        flex-direction: column;
    }
    
    .car-actions .btn {
        min-width: auto;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .car-details-modal .modal-container {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .car-card {
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-cta h2 {
        font-size: 1.8rem;
    }
}