/* New Clinics Grid V2 - Dark Theme */
.clinics-grid.v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

.clinic-card-v2 {
    background: #1a1a1a;
    /* Dark background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clinic-card-v2:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.clinic-card-v2 .card-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.clinic-card-v2 h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.clinic-card-v2 .address {
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    min-height: 60px;
    /* Uniform height */
}

.map-text-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 1px dashed var(--primary-color);
    padding-bottom: 2px;
    transition: 0.3s;
}

.map-text-link:hover {
    color: #fff;
    border-color: #fff;
}

.times-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
}

.times-section .label {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.times-section p {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.times-section .highlight-text {
    color: #aaa;
    font-style: italic;
}

/* Contact Card Special Styling */
.contact-card-special {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border: 2px solid var(--primary-color);
}

.contact-card-special .card-icon {
    color: var(--primary-color);
}

.contact-card-special .sub-text {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 15px;
}

.phone-link {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 5px 0 10px;
    letter-spacing: 1px;
}

.btn-whatsapp-rounded {
    background: var(--primary-color);
    color: #000;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-whatsapp-rounded:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}