/* ================================= */
/*        CLINICAL DAYS SECTION      */
/* ================================= */

:root {
    --primary-color: #002efa;
    --primary-dark: #0a1173;
    --primary-soft: #e8f8f4;
    --accent-light: #f4fbf9;
    --text-dark: #0a1311;
    --text-soft: #5c6f6a;
    --white: #ffffff;
    --border-soft: rgba(13, 143, 111, 0.12);
    --shadow-soft: 0 10px 35px rgba(10, 35, 28, 0.08);
    --shadow-hover: 0 18px 45px rgba(10, 35, 28, 0.12);
    --container-width: 1240px;
    --transition: all 0.35s ease;
}

/* Section */
.clinical-days-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f9fdfc 0%, #f2faf8 100%);
    position: relative;
    overflow: hidden;
    
}

.clinical-days-container {
    width: min(92%, var(--container-width));
    margin: 0 auto;
    
    
}

/* ================================= */
/*            HEADER                 */
/* ================================= */
.clinical-days-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
    
    
}

.section-tag {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.clinical-days-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.15;
    font-weight: 800;
}

.clinical-days-header p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-soft);
}

/* ================================= */
/*            GRID                   */
/* ================================= */
.clinical-days-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ================================= */
/*            CARD                   */
/* ================================= */
.clinical-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border-soft);
    border-radius: 26px;
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* subtle healthcare top glow */
.clinical-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #63d4b8);
    opacity: 0.95;
}

.clinical-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(13, 143, 111, 0.22);
}

/* Top Row */
.clinical-day-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.day-badge {
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: 9px 10px;
    border-radius: 900px;
    font-size: 0.92rem;
    font-weight: 700;
}

.time-badge {
    background: #f6f8f8;
    color: #425854;
    padding: 9px 10px;
    border-radius: 900px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Text */
.clinical-card h3 {
    font-size: 1.28rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.35;
    font-weight: 800;
}

.clinical-card p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-soft);
}

/* Highlight card */
.emergency-card {
    background: linear-gradient(135deg, #0d8f6f 0%, #0a735a 100%);
    color: #fff;
    border: none;
}

.emergency-card .day-badge {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.emergency-card .time-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.emergency-card h3,
.emergency-card p {
    color: #fff;
}

.emergency-card::before {
    background: linear-gradient(90deg, #ffffff, #c8fff0);
}

/* ================================= */
/*            FOOTER                 */
/* ================================= */
.clinical-days-footer {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    padding: 22px 24px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.clinical-days-footer p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.clinical-days-footer strong {
    color: var(--text-dark);
}

/* ================================= */
/*          RESPONSIVENESS           */
/* ================================= */

/* Large Tablet */
@media (max-width: 1100px) {
    .clinical-days-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet / Mobile */
@media (max-width: 768px) {
    .clinical-days-section {
        padding: 80px 16px;
    }

    .clinical-days-header {
        margin-bottom: 40px;
    }

    .clinical-days-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .clinical-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .clinical-card h3 {
        font-size: 1.15rem;
    }

    .clinical-card p {
        font-size: 0.96rem;
    }

    .clinical-days-footer {
        padding: 20px 18px;
        border-radius: 18px;
    }
}
.clinical-contact-btn{
  text-decoration: none;
  color: var(--primary-color);
}