/* Locations Page Styles */

/* Location Card Styles */
.location-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid #e5e7eb;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #01493b;
}

.location-image {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

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

/* Tag Styles */
.service-tag {
    background: linear-gradient(135deg, #01493b, #0a6b5a);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0.125rem;
    display: inline-block;
}

.area-tag {
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    margin: 0.125rem;
    display: inline-block;
    border: 1px solid #d1d5db;
}

.specialty-tag {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    margin: 0.125rem;
    display: inline-block;
    border: 1px solid #f59e0b;
}

/* Contact Info Styles */
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #01493b 0%, #0a6b5a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/contact-us.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Stats Grid Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ff7f00;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: white;
    margin-top: 0.5rem;
}

/* Map Styles */
.location-map {
    height: 250px;
    width: 100%;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border: 1px solid #e5e7eb;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-image {
        height: 250px;
    }
    
    .location-map {
        height: 200px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .location-image {
        height: 200px;
    }
    
    .location-map {
        height: 180px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}
