* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2B7A9B;
    --light-blue: #4A9BBD;
    --accent-yellow: #F4C430;
    --dark-text: #1a1a1a;
    --gray-text: #666;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(43, 122, 155, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.content {
    background: var(--white);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px var(--shadow);
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

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

/* Logo */
.logo-container {
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.2s both;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(43, 122, 155, 0.15));
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(43, 122, 155, 0.3);
    animation: slideDown 0.6s ease-out 0.3s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--accent-yellow);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* Headings */
h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    line-height: 1.2;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.subtitle {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 50px;
    line-height: 1.6;
    animation: fadeIn 0.8s ease-out 0.5s both;
}

/* Info Card */
.info-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: left;
    border: 2px solid rgba(43, 122, 155, 0.1);
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.info-section {
    margin-bottom: 30px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.doctor-name {
    font-size: 20px;
    color: var(--gray-text);
    font-weight: 500;
}

.info-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-section p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.8;
}

.transit-info {
    margin-top: 8px;
    font-size: 15px;
    color: var(--light-blue);
    font-weight: 500;
}

.phone-link {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 12px 24px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.phone-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 122, 155, 0.3);
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(43, 122, 155, 0.2), transparent);
    margin: 30px 0;
}

/* Opening Hours */
.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-yellow);
}

.day {
    font-weight: 500;
    color: var(--dark-text);
}

.time {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Footer Note */
.footer-note {
    font-size: 14px;
    color: var(--gray-text);
    font-style: italic;
    animation: fadeIn 0.8s ease-out 0.7s both;
}

/* Decorative Elements */
.decoration {
    position: fixed;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-yellow);
    top: -100px;
    right: -100px;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-blue);
    bottom: -50px;
    left: -50px;
}

.decoration-3 {
    width: 150px;
    height: 150px;
    background: var(--light-blue);
    top: 50%;
    right: -75px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 24px;
    }

    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .logo {
        max-width: 280px;
    }

    .info-card {
        padding: 24px;
    }

    .info-section h2 {
        font-size: 24px;
    }

    .doctor-name {
        font-size: 18px;
    }

    .phone-link {
        font-size: 20px;
        padding: 10px 20px;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 28px;
    }

    .logo {
        max-width: 240px;
    }

    .status-badge {
        font-size: 13px;
        padding: 10px 20px;
    }
}
