/* 
 * vilnius.css - Specific styles for the Vilnius car buying page
 * This stylesheet should be loaded after the main.css
 */

/* Vilnius hero section enhancements */
.hero-title-vilnius {
    font-size: 2.8rem;
    background: linear-gradient(90deg, var(--text-light) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: none;
}

.hero .hero-stats {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px;
    backdrop-filter: blur(5px);
}

/* Vilnius-specific feature items */
.vilnius-feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary-green);
    color: var(--dark-bg);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Vilnius map and districts styling */
.vilnius-map-container {
    margin: 40px 0;
    text-align: center;
}

.vilnius-map {
    margin: 20px 0;
    position: relative;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.vilnius-map img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.map-note {
    background-color: rgba(0, 230, 118, 0.1);
    border-left: 3px solid var(--primary-green);
    padding: 10px 15px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-radius: 0 4px 4px 0;
}

.vilnius-map-large {
    margin: 40px 0;
    text-align: center;
}

.vilnius-map-large h3 {
    margin-bottom: 20px;
    color: var(--primary-green);
}

.vilnius-map-large img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Vilnius districts grid */
.vilnius-districts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.district-column {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.district-card {
    background-color: var(--dark-bg-lighter);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.district-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    background-color: rgba(0, 230, 118, 0.05);
}

.district-title {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.district-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.district-areas {
    list-style: none;
    padding: 0;
    margin: 0;
}

.district-areas li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.district-areas li:before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 0.8rem;
}

.district-areas li:hover {
    color: var(--primary-green);
    transform: translateX(3px);
}

.vilnius-areas-note {
    background-color: var(--dark-bg-lighter);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.vilnius-areas-note p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.vilnius-areas-note p:last-child {
    margin-bottom: 0;
}

.vilnius-areas-note strong {
    color: var(--primary-green);
}

/* Vilnius market stats */
.vilnius-market-stats {
    margin-top: 40px;
    background-color: var(--dark-bg-lighter);
    border-radius: 8px;
    padding: 25px;
}

.vilnius-market-stats h3 {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.vilnius-market-stats h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-green);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    flex: 1 1 300px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--dark-bg);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background-color: rgba(0, 230, 118, 0.05);
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-green);
    min-width: 40px;
    text-align: center;
}

.stat-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.stat-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Vilnius testimonials */
.testimonial-item.vilnius-testimonial {
    border-left: 3px solid var(--primary-green);
}

.testimonial-city {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-city:before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-green);
    font-size: 0.8rem;
}

/* Vilnius team section */
.vilnius-team {
    margin: 50px 0;
    text-align: center;
}

.vilnius-team h3 {
    margin-bottom: 30px;
    color: var(--primary-green);
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.team-position {
    color: var(--primary-green);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member:hover .team-photo {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Vilnius service zones */
.service-zones {
    margin-top: 15px;
}

.zone-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zone-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.zone-title {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.zone-areas {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Vilnius market info box */
.vilnius-market-info {
    background-color: var(--dark-bg-lighter);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.vilnius-market-info h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.vilnius-market-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Success message styling */
.success-message {
    background-color: rgba(0, 230, 118, 0.1);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
    margin: 30px 0;
}

.success-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.success-message h3 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.success-message p {
    color: var(--text-muted);
    margin-bottom: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-message strong {
    color: var(--primary-green);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrival time message */
.arrival-time-message {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 500;
    animation: fadeIn 0.3s ease-out;
}

/* Responsive styles for Vilnius page */
@media (max-width: 992px) {
    .vilnius-map-container,
    .vilnius-map-large {
        margin: 30px 0;
    }
    
    .stats-container {
        gap: 15px;
    }
    
    .stat-box {
        flex: 1 1 100%;
    }
    
    .team-member {
        flex: 1 1 180px;
    }
}

@media (max-width: 768px) {
    .hero-title-vilnius {
        font-size: 2.2rem;
    }
    
    .district-column {
        flex: 1 1 100%;
    }
    
    .vilnius-districts {
        gap: 15px;
    }
    
    .team-members {
        gap: 20px;
    }
    
    .team-member {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title-vilnius {
        font-size: 1.8rem;
    }
    
    .vilnius-feature-badge {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .district-card {
        padding: 15px;
    }
    
    .vilnius-market-stats {
        padding: 20px;
    }
    
    .stat-box {
        padding: 12px;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
}