/* assets/css/locations.css */

/* Locations Section Wrapper */
.locations-section {
    padding: 100px 0;
    background: var(--primary-black);
}

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

/* Location Card Design */
.location-card {
    background: #111;
    /* Darker than primary for contrast */
    border: 1px solid #333;
    border-radius: 1px;
    /* Sharp premium edges */
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-orange);
}

/* Map Placeholder */
.map-placeholder {
    height: 250px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid #333;
    position: relative;
}

.map-placeholder::after {
    content: "MAP COMING SOON";
    position: absolute;
    z-index: 1;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.location-card:hover .map-placeholder iframe {
    opacity: 1;
}

/* Card Content */
.location-details {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.location-city {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.location-address {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 50px;
    /* Balance heights */
}

/* Contact Pills */
.contact-actions {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: #222;
    color: white;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #333;
    transition: 0.3s;
}

.contact-pill:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: black;
}

/* Social Row */
.location-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #333;
}

.social-icon-btn:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}

.social-icon-btn.fb:hover {
    color: #1877F2;
}

.social-icon-btn.ig:hover {
    color: #E4405F;
}

.social-icon-btn.yt:hover {
    color: #FF0000;
}

/* Services Tags */
.location-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.service-tag {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}