/* ===== CSS Variables ===== */

:root {
    --primary-color: #1a365d;
    --secondary-color: #7c3aed;
    --accent-color: #ffffff;
    --text-dark: #2d3748;
    --text-light: #64748b;
    --success-color: #10b981;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #a855f7 100%);
    --gradient-success: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    --shadow-soft: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-medium: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-strong: 0 25px 50px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    height: 100%;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

body {
    zoom: 0.75;
    transform-origin: top left;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fafbfc;
    /* DO NOT add width: 133.33vw to body! */
}

body.menu-open {
    overflow: hidden;
}

/* ===== HEADER STYLES (Embedded for standalone use) ===== */
header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 133.33vw !important;
    max-width: 133.33vw !important;
    padding: clamp(12px, 2vh, 18px) clamp(15px, 4vw, 50px);
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 999 !important;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box !important;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.header-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
}
.logo {
    font-size: clamp(18px, 4vw, 28px);
    font-weight: 800;
    color: var(--accent-color);
    text-shadow: 0 2px 20px rgba(124, 58, 237, 0.5);
    position: relative;
    transition: var(--transition);
    z-index: 1001;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transition: var(--transition);
    border-radius: 2px;
}

.logo:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: var(--transition);
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(15px, 2.5vw, 40px);
}

.nav-menu a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(14px, 1.8vw, 16px);
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
    min-height: 40px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a.active,
.nav-menu a[style*="color: rgb(124, 255, 255)"] {
    color: rgb(124, 255, 255) !important;
}

.nav-menu a.active::before,
.nav-menu a[style*="color: rgb(124, 255, 255)"]:not(.login-btn)::before {
    width: 100%;
    background: rgb(124, 255, 255);
}

.login-btn::before {
    display: none !important;
}

.login-btn {
    padding: clamp(12px, 2vh, 16px) clamp(24px, 4vw, 36px);
    border: 2px solid var(--secondary-color);
    color: var(--accent-color) !important;
    border-radius: 50px;
    background: linear-gradient(135deg, #7b2aaa, #7494ec);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    font-size: clamp(14px, 1.8vw, 16px);
    white-space: nowrap;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

/* ===== Hero Section - Responsive ===== */
.contact-hero {
    min-height: 133.33vh; /* Compensates for 0.75 zoom */
    height: auto;
    padding: 100px clamp(20px, 5vw, 50px) 60px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(124, 58, 237, 0.8) 100%), 
                url('clin.png') no-repeat center/cover;
    background-attachment: scroll;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 70%);
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: clamp(60px, 10vw, 100px);
    height: clamp(60px, 10vw, 100px);
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: clamp(100px, 15vw, 150px);
    height: clamp(100px, 15vw, 150px);
    right: 15%;
    top: 60%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: clamp(50px, 8vw, 80px);
    height: clamp(50px, 8vw, 80px);
    left: 70%;
    bottom: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1.1); 
        opacity: 0.2;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: heroFadeIn 1.2s ease-out;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    word-break: break-word;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    opacity: 0.95;
    margin-bottom: 0;
    font-weight: 300;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Main Container ===== */
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(60px, 10vw, 80px) clamp(20px, 5vw, 50px);
}

/* ===== Mission Statement Section ===== */
.mission-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    padding: clamp(60px, 8vw, 80px) clamp(30px, 5vw, 50px);
    border-radius: clamp(20px, 4vw, 32px);
    text-align: center;
    margin: clamp(60px, 10vw, 80px) 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255,255,255,0.1);
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.mission-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(20px, 4vw, 32px);
    font-weight: 800;
}

.mission-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.95;
}

/* ===== Contact Info Grid - Responsive ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(24px, 4vw, 32px);
    margin: clamp(60px, 10vw, 80px) 0;
}

.info-card {
    background: var(--accent-color);
    padding: clamp(30px, 5vw, 40px) clamp(25px, 4vw, 35px);
    border-radius: clamp(16px, 3vw, 24px);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(124, 58, 237, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-secondary);
}

.info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
    transition: left 0.6s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.info-card:hover::after {
    left: 100%;
}

.info-card h4 {
    color: var(--text-dark);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    word-break: break-word;
}

.info-icon {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: var(--gradient-secondary);
    border-radius: clamp(12px, 2.5vw, 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
    flex-shrink: 0;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: clamp(0.95rem, 1.8vw, 1rem);
}

.info-card strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== Section Titles - Responsive ===== */
.section-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    text-align: center;
    color: var(--text-dark);
    margin-bottom: clamp(40px, 6vw, 60px);
    font-weight: 800;
    position: relative;
    word-break: break-word;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ===== Features Section ===== */
.features-section {
    margin: clamp(80px, 12vw, 100px) 0 clamp(60px, 10vw, 80px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(24px, 4vw, 32px);
}

.feature-card {
    background: var(--accent-color);
    padding: clamp(30px, 5vw, 40px) clamp(25px, 4vw, 32px);
    border-radius: clamp(16px, 3vw, 24px);
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.feature-card:hover::after {
    left: 100%;
}

.feature-icon {
    font-size: clamp(2.5rem, 5vw, 3rem);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    word-break: break-word;
}

.feature-card p {
    color: var(--text-light);
    font-size: clamp(0.95rem, 1.8vw, 1rem);
    line-height: 1.7;
}

/* ===== Hours Section ===== */
.hours-section {
    margin: clamp(80px, 12vw, 100px) 0 clamp(60px, 10vw, 80px);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(24px, 4vw, 32px);
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    background: var(--accent-color);
    padding: clamp(30px, 5vw, 40px) clamp(25px, 4vw, 32px);
    border-radius: clamp(16px, 3vw, 24px);
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
}

.hours-card::after {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
    transition: left 0.6s ease;
}

.hours-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.hours-card:hover::after {
    left: 100%;
}

.hours-title {
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 20px;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hours-time {
    color: var(--text-light);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    font-weight: 500;
}

/* ===== CTA Section - Responsive ===== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--accent-color);
    text-align: center;
    padding: clamp(60px, 10vw, 100px) clamp(30px, 5vw, 50px);
    margin: clamp(60px, 10vw, 80px) 0 0 0;
    border-radius: clamp(20px, 4vw, 32px);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: clamp(20px, 3vw, 24px);
    font-weight: 800;
    word-break: break-word;
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: clamp(30px, 5vw, 40px);
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 3vw, 24px);
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 48px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--gradient-success);
    color: var(--accent-color);
    box-shadow: var(--shadow-medium);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

/* ===== Scroll Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Tablets & Below (max-width: 1024px) */

/* Print Styles */
@media print {
    header {
        position: relative;
        background: var(--primary-color);
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
    }

    .floating-particles,
    .cta-buttons {
        display: none;
    }

    .contact-hero {
        page-break-after: always;
    }

    .info-card,
    .feature-card,
    .hours-card,
    .mission-section,
    .cta-section {
        page-break-inside: avoid;
    }
}
/* ===== FOOTER STYLES ===== */
.site-footer {
    background: #1a365d !important;
    color: white;
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    box-sizing: border-box;
    clear: both;
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.site-footer p {
    margin: 0;
    opacity: 0.9;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 400;
}

/* Ensure proper spacing before footer */
.cta-section {
    margin-bottom: 60px !important;  /* ← 60px gap before footer */
}

/* Remove body overflow issues */

/* ===== Clinic Hours Section ===== */
.clinic-hours-section {
    width: 100%;
    padding: 0 clamp(20px, 5vw, 50px);
    margin-top: -40px;
    position: relative;
    z-index: 10;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.clinic-hours-container {
    max-width: 1400px;
    margin: 0 auto;
}

.clinic-hours-card {
    background: #ffffff;
    border-radius: clamp(20px, 3vw, 28px);
    box-shadow: 0 30px 80px rgba(26,54,93,0.18), 0 8px 24px rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.1);
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    padding: clamp(32px, 5vw, 52px) clamp(28px, 5vw, 52px);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.clinic-hours-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(135deg, #1a365d 0%, #7c3aed 50%, #a855f7 100%);
}

.ch-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.ch-icon-wrap {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    border-radius: clamp(16px, 2.5vw, 22px);
    background: linear-gradient(135deg, #1a365d 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    box-shadow: 0 12px 30px rgba(124,58,237,0.3);
    flex-shrink: 0;
}

.ch-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7c3aed;
    margin-bottom: 4px;
}

.ch-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: #1a365d;
    line-height: 1.1;
    margin: 0;
}

.ch-divider {
    width: 1px;
    height: clamp(80px, 12vw, 120px);
    background: linear-gradient(to bottom, transparent, rgba(124,58,237,0.25), transparent);
    flex-shrink: 0;
}

.ch-schedule {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #f8f9ff;
    border: 1px solid rgba(124,58,237,0.07);
}

.ch-day-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ch-day-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #2d3748;
}

.ch-time {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.ch-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

.ch-status.open {
    background: rgba(16,185,129,0.1);
    color: #059669;
}

.ch-status.closed {
    background: rgba(239,68,68,0.1);
    color: #dc2626;
}

.ch-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ch-status.open .ch-dot {
    background: #10b981;
    animation: chPulse 2s ease-in-out infinite;
}

.ch-status.closed .ch-dot {
    background: #dc2626;
}

@keyframes chPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
    50%       { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

.ch-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    min-width: 180px;
    max-width: 220px;
}

.ch-emergency-icon {
    font-size: 2rem;
}

.ch-emergency-text strong {
    display: block;
    color: #1a365d;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.ch-emergency-text p {
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.ch-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a365d 0%, #7c3aed 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(124,58,237,0.3);
    transition: all 0.3s ease;
    margin-top: 4px;
}

.ch-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(124,58,237,0.4);
    color: #fff;
}
