/* ============================================
   JETOUR BOLIVIA - TEST DRIVE PAGE STYLES
   ============================================ */

.testdrive-hero {
    position: relative;
    width: 100vw;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-primary);
}

.testdrive-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 60%), linear-gradient(180deg, var(--black-primary) 0%, var(--black-secondary) 100%);
}

.testdrive-hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
    padding: 0 20px;
}

.testdrive-hero-label {
    font-size: 14px;
    letter-spacing: 8px;
    color: var(--white-tertiary);
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    font-weight: 300;
}

.testdrive-hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.testdrive-hero-subtitle {
    font-size: 1.2rem;
    color: var(--white-tertiary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* LOCATIONS */
.locations-section {
    padding: 100px 60px;
    background: var(--black-secondary);
}

.locations-header { text-align: center; margin-bottom: 80px; }

.locations-label {
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--white-tertiary);
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    font-weight: 300;
}

.locations-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.locations-subtitle {
    font-size: 1rem;
    color: var(--white-tertiary);
    font-weight: 300;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.location-card {
    background: var(--black-tertiary);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
}

.location-map {
    width: 100%;
    height: 250px;
    background: var(--black-secondary);
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.4s ease;
}

.location-card:hover .location-map iframe { filter: grayscale(50%); }

.location-content { padding: 40px; }

.location-city {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--white-tertiary);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.location-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.location-details { margin-bottom: 30px; }

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.location-detail-icon {
    width: 20px;
    height: 20px;
    color: var(--white-tertiary);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-detail-text {
    color: var(--white-tertiary);
    font-size: 14px;
    line-height: 1.6;
}

.location-detail-text strong {
    color: var(--white-primary);
    font-weight: 600;
}

.location-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-btn-primary {
    background: var(--white-primary);
    color: var(--black-primary);
    border: 1px solid var(--white-primary);
}

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

.location-btn-secondary {
    background: transparent;
    color: var(--white-primary);
    border: 1px solid rgba(255,255,255,0.3);
}

.location-btn-secondary:hover {
    background: var(--white-primary);
    color: var(--black-primary);
}

.location-btn svg { width: 16px; height: 16px; }

/* MODELS SELECT */
.models-section {
    padding: 100px 60px;
    background: var(--black-primary);
}

.models-header { text-align: center; margin-bottom: 60px; }

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.model-select-card {
    background: var(--black-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.model-select-card:hover {
    border-color: var(--white-primary);
    transform: translateY(-5px);
}

.model-select-image {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.model-select-card:hover .model-select-image { filter: brightness(1); }

.model-select-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.model-select-type {
    font-size: 12px;
    color: var(--white-tertiary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .locations-section, .models-section { padding: 80px 30px; }
    .locations-grid { grid-template-columns: 1fr; }
    .models-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .locations-section, .models-section { padding: 60px 20px; }
    .location-content { padding: 30px; }
    .location-cta { flex-direction: column; }
    .location-btn { justify-content: center; }
    .models-grid { grid-template-columns: 1fr; gap: 20px; }
}
