/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*padding-top: 80px;*/
     position: relative;
     overflow: hidden;
 }

 .hero-left {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 80px 60px 80px 80px;
     position: relative;
     z-index: 2;
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--gold-pale);
     border: 1px solid var(--gold);
     color: var(--gold);
     font-size: 11px;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     padding: 7px 16px;
     border-radius: 20px;
     margin-bottom: 32px;
     width: fit-content;
     font-weight: 500;
     animation: fadeUp 0.8s ease both;
 }

 .hero-badge::before {
     content: '';
     width: 6px; height: 6px;
     border-radius: 50%;
     background: var(--gold);
 }

 .hero-title {
     font-family: 'Playfair Display', serif;
     font-size: clamp(42px, 5vw, 72px);
     line-height: 1.1;
     color: var(--dark);
     font-weight: 700;
     margin-bottom: 24px;
     animation: fadeUp 0.8s 0.15s ease both;
 }

 .hero-title em {
     font-style: italic;
     color: var(--gold);
 }

 .hero-desc {
     font-size: 16px;
     line-height: 1.7;
     color: var(--text-muted);
     max-width: 420px;
     margin-bottom: 48px;
     font-weight: 300;
     animation: fadeUp 0.8s 0.3s ease both;
 }

 .hero-cta {
     display: flex;
     gap: 16px;
     animation: fadeUp 0.8s 0.45s ease both;
 }

 .btn-primary {
     background: var(--gold);
     color: var(--white);
     text-decoration: none;
     padding: 16px 36px;
     font-size: 13px;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     font-weight: 500;
     border-radius: 4px;
     transition: background 0.25s, transform 0.2s;
 }

 .btn-primary:hover {
     background: var(--gold-light);
     transform: translateY(-2px);
 }

 .btn-outline {
     border: 1.5px solid var(--text-muted);
     color: var(--text-muted);
     text-decoration: none;
     padding: 16px 36px;
     font-size: 13px;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     font-weight: 500;
     border-radius: 4px;
     transition: border-color 0.25s, color 0.25s, transform 0.2s;
 }

 .btn-outline:hover {
     border-color: var(--gold);
     color: var(--gold);
     transform: translateY(-2px);
 }

 .hero-stats {
     display: flex;
     gap: 40px;
     margin-top: 64px;
     padding-top: 40px;
     border-top: 1px solid rgba(184, 148, 63, 0.2);
     animation: fadeUp 0.8s 0.6s ease both;
 }

 .stat-num {
     font-family: 'Playfair Display', serif;
     font-size: 36px;
     color: var(--gold);
     font-weight: 700;
     line-height: 1;
 }

 .stat-label {
     font-size: 12px;
     color: var(--text-muted);
     letter-spacing: 1px;
     text-transform: uppercase;
     margin-top: 4px;
 }

 .hero-right {
     position: relative;
     overflow: hidden;
 }

 .hero-right::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(184,148,63,0.12) 0%, transparent 60%);
     z-index: 1;
 }

 .hero-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     animation: zoomIn 1.2s ease both;
 }

 .hero-image-overlay {
     position: absolute;
     bottom: 40px;
     left: 40px;
     background: rgba(26, 22, 18, 0.85);
     backdrop-filter: blur(8px);
     border: 1px solid rgba(184,148,63,0.3);
     border-radius: 12px;
     padding: 20px 28px;
     color: white;
     z-index: 2;
     animation: fadeUp 0.8s 0.6s ease both;
 }

 .hero-image-overlay .car-name {
     font-family: 'Playfair Display', serif;
     font-size: 18px;
     color: var(--gold-pale);
     font-weight: 600;
 }

 .hero-image-overlay .car-price {
     font-size: 24px;
     color: var(--gold);
     font-weight: 600;
     margin-top: 4px;
 }

 /* ─── CARS GRID ─── */
.section {
    padding: 100px 80px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}

.section-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.15;
}

.see-all {
    text-decoration: none;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.see-all:hover { opacity: 0.7; }

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.car-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(184, 148, 63, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(184, 148, 63, 0.15);
}

.car-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.car-card:hover .car-card-image {
    transform: scale(1.04);
}

.car-card-img-wrap {
    overflow: hidden;
}

.car-card-body {
    padding: 24px 28px 28px;
}

.car-card-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.car-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.car-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.car-card-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.car-card-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.car-card:hover .car-card-arrow {
    background: var(--gold);
    color: white;
}

/* ─── SERVICES ─── */
.services-section {
    background: var(--dark);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(184,148,63,0.1);
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(184,148,63,0.08);
}

.services-section .section-title {
    color: var(--cream);
}

.services-section .section-label {
    color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.service-card {
    border: 1px solid rgba(184, 148, 63, 0.2);
    border-radius: 16px;
    padding: 40px 36px;
    transition: border-color 0.3s, background 0.3s;
}

.service-card:hover {
    border-color: var(--gold);
    background: rgba(184, 148, 63, 0.06);
}

.service-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(184, 148, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 28px;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--cream);
    font-weight: 600;
    margin-bottom: 14px;
}

.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(240, 224, 176, 0.6);
    margin-bottom: 28px;
    font-weight: 300;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    font-size: 13px;
    color: rgba(240, 224, 176, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}


@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(1.06); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}


.car-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.car-img-placeholder img{
    width: 100%;
    height: 100%;
}


@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { display: none; }
    .hero-left { padding: 80px 32px 60px; }
    .section { padding: 70px 32px; }
    .cars-grid { grid-template-columns: repeat(2, 1fr); }
    .services-section { padding: 70px 32px; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 768px) {
    .hero { padding-top: 68px; }
    .hero-left { padding: 48px 20px 52px; }
    .hero-title { font-size: 36px; }
    .hero-desc { font-size: 14px; }
    .hero-cta { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-outline { text-align: center; padding: 15px 24px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }

    .section { padding: 56px 20px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .section-title { font-size: 28px; }
    .cars-grid { grid-template-columns: 1fr; gap: 20px; }

    .services-section { padding: 56px 20px; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 28px 24px; }
}
