
:root {
    --primary-blue: #0d6efd;
    --dark-blue: #0a4b9c;
    --emergency-red: #dc3545;
    --emergency-bg: #fff5f5;
    --email-green: #198754;
    --dark-gray: #212529;
    --light-bg: #f4f6f9;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 24px 16px;
}

.container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 40px 32px;
    border-top: 6px solid var(--dark-blue);
}

.logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    color: var(--dark-blue);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tagline {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 20px;
    font-style: italic;
}

.badge {
    display: inline-block;
    background-color: #fff8e6;
    color: #b7791f;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #fef3c7;
}

.notice-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 24px;
}

.doctor-info {
    background: #f0f7ff;
    border: 1px solid #e0eeff;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 28px;
}

.doctor-info h3 {
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 600;
}

.doctor-info p {
    font-size: 14px;
    color: #4a5568;
    margin-top: 2px;
}

.contact-section h2 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.subtitle {
    font-size: 13px;
    color: #718096;
    margin-bottom: 16px;
}

.phone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .phone-grid {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-phone {
    background-color: var(--dark-blue);
    color: #ffffff;
}

.btn-phone:hover {
    background-color: #083b7a;
    transform: translateY(-1px);
}

.emergency-box {
    background-color: var(--emergency-bg);
    border: 1.5px solid #feb2b2;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 16px;
}

.btn-emergency {
    background-color: var(--emergency-red);
    color: #ffffff;
    width: 100%;
}

.btn-emergency:hover {
    background-color: #bd2130;
    transform: translateY(-1px);
}

.btn-email {
    background-color: var(--email-green);
    color: #ffffff;
    width: 100%;
}

.btn-email:hover {
    background-color: #146c43;
    transform: translateY(-1px);
}

/* Map and Location Section */
.map-section {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.address {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.map-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: #ffffff;
}