 /* CSS Variables */
        :root {
            --primary-blue: #1a73e8;
            --secondary-blue: #4285f4;
            --light-blue: #e8f0fe;
            --dark-blue: #0d47a1;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #dadce0;
            --dark-gray: #5f6368;
            --text-color: #202124;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4 {
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--dark-blue);
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

        a {
            text-decoration: none;
            color: var(--primary-blue);
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-blue);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .btn:hover {
            background-color: var(--dark-blue);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
        }

        .btn-secondary:hover {
            background-color: var(--light-blue);
        }

        .text-center {
            text-align: center;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo i {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-right: 10px;
        }

        .logo h1 {
            font-size: 1.5rem;
            margin-bottom: 0;
            color: var(--dark-blue);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            color: var(--text-color);
            font-weight: 500;
        }

        .nav-menu a:hover {
            color: var(--primary-blue);
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
            padding: 150px 0 80px;
            margin-top: 70px;
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-content {
            flex: 1;
            padding-right: 40px;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .hero h1 {
            font-size: 3rem;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--dark-gray);
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        /* About Section */
        .about {
            background-color: var(--light-gray);
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .about-content {
            flex: 1;
        }

        .mission-vision {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }

        .mission, .vision {
            flex: 1;
            background-color: var(--white);
            padding: 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .mission i, .vision i {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        /* Contact Section */
        .contact {
            background-color: var(--light-gray);
        }

        .contact-container {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-form {
            flex: 1;
        }

        .contact-methods {
            margin-top: 30px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-method i {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-right: 15px;
            width: 30px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary-blue);
            color: var(--white);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--dark-blue);
            transform: translateY(-3px);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary-blue);
            outline: none;
            box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--light-gray);
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-container,
            .about-container,
            .contact-container {
                flex-direction: column;
            }
            
            .hero-content,
            .about-content,
            .contact-info,
            .contact-form {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .mission-vision {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: var(--shadow);
                padding: 20px 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                margin-bottom: 10px;
            }
        }/* Modal Styles */
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
    position: relative;
}

.modal-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close:hover {
    color: var(--light-blue);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
}

/* Custom scrollbar for modal body */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gray);
}

/* Fixed Submit Button Styles */
.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-submit:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background-color: var(--medium-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading state for form submission */
.btn-submit.loading {
    position: relative;
    color: transparent;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form enhancements for modal */
.modal .form-group {
    margin-bottom: 20px;
}

.modal .form-control {
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    transition: var(--transition);
    width: 100%;
}

.modal .form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.modal select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235f6368' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

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

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

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(95vh - 70px);
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .close {
        font-size: 24px;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 2% auto;
        width: 98%;
        border-radius: 8px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .btn-submit {
        padding: 12px;
        margin-top: 15px;
    }
}

/* modal styles for services*/
/* Service Details Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.service-modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
    position: relative;
}

.service-modal-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.service-modal-header h2 {
    margin: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.service-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.service-close:hover {
    color: var(--light-blue);
    transform: scale(1.1);
}

.service-modal-body {
    padding: 30px;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
}

/* Service Details Content Styles */
.service-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-hero {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon-large {
    font-size: 4rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.service-hero-content {
    flex: 1;
}

.service-hero-content h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.service-features {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.service-features h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.service-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.process-step {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.process-step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.process-step h5 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.service-actions .btn {
    flex: 1;
}

/* Responsive Service Modal */
@media (max-width: 768px) {
    .service-modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .service-modal-body {
        padding: 20px;
        max-height: calc(95vh - 70px);
    }
    
    .service-modal-header {
        padding: 15px 20px;
    }
    
    .service-hero {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-process {
        grid-template-columns: 1fr;
    }
    
    .service-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .service-modal-content {
        margin: 2% auto;
        width: 98%;
    }
    
    .service-modal-body {
        padding: 15px;
    }
    
    .service-modal-header {
        padding: 12px 15px;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
}
/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px 25px;
    background-color: #4CAF50;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 3000;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
    font-weight: 500;
    border-left: 4px solid #388E3C;
}

.notification.error {
    background-color: #f44336;
    border-left: 4px solid #d32f2f;
}

@keyframes slideInRight {
    from { 
        transform: translateX(100%); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes slideOutRight {
    from { 
        transform: translateX(0); 
        opacity: 1; 
    }
    to { 
        transform: translateX(100%); 
        opacity: 0; 
    }
}
/* ========== DOCTOR SECTION ========== */
.doctor {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.doctor-profile {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.doctor-image {
    flex: 1;
    position: relative;
}

.doctor-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.doctor-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.doctor-details {
    flex: 1;
}

.doctor-details h3 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 5px;
}

.doctor-title {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.doctor-qualifications {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.qualification {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.qualification i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 40px;
    text-align: center;
}

.qualification div {
    display: flex;
    flex-direction: column;
}

.qualification strong {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.qualification span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.doctor-bio {
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.doctor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stat {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* ========== WORKING HOURS SECTION ========== */
.working-hours {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

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

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hours-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-blue);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hours-header i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.hours-header h3 {
    color: var(--dark-blue);
    margin: 0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.hour-item:hover {
    background: var(--light-blue);
    transform: translateX(5px);
}

.hour-item.highlight {
    background: var(--primary-blue);
    color: var(--white);
}

.hour-item.highlight .day,
.hour-item.highlight .time {
    color: var(--white);
    font-weight: 600;
}

.day {
    font-weight: 600;
    color: var(--dark-blue);
}

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

.emergency-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
}

.emergency-info i {
    font-size: 1.5rem;
    color: #f39c12;
}

.emergency-info div {
    display: flex;
    flex-direction: column;
}

.emergency-info strong {
    color: #e67e22;
    margin-bottom: 5px;
}

.emergency-info span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.features-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.features-card h3 {
    color: var(--dark-blue);
    margin-bottom: 25px;
    text-align: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.feature:hover {
    background: var(--light-blue);
    transform: translateX(5px);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 40px;
    text-align: center;
}

.feature div {
    display: flex;
    flex-direction: column;
}

.feature strong {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.feature span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .doctor-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .doctor-stats {
        grid-template-columns: 1fr;
    }
    
    .hours-content {
        grid-template-columns: 1fr;
    }
    
    .qualification {
        text-align: left;
    }
    
    .hour-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .doctor-badge {
        position: static;
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .features-card,
    .hours-card {
        padding: 20px;
    }
}
/* ========== FONT STYLES - FUTURA PT STYLE ========== */
:root {
    /* Using Montserrat as it's very similar to Futura PT */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Reset all text to use the new font */
body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Logo */
.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Navigation */
.nav-menu a {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: none; /* Remove uppercase for cleaner look */
}

/* Modals */
.modal-header h2,
.service-modal-header h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.8rem;
}

/* Form elements */
.form-control {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
}

label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
}

/* Service Cards */
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    font-weight: 400;
    line-height: 1.6;
}

/* Doctor Section */
.doctor-details h3 {
    font-size: 2.2rem;
    font-weight: 800;
}

.doctor-title {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.qualification strong {
    font-weight: 600;
    font-size: 1rem;
}

.doctor-bio {
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.05rem;
}

.stat strong {
    font-size: 2rem;
    font-weight: 700;
}

/* Working Hours */
.hours-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.day {
    font-weight: 600;
}

.time {
    font-weight: 500;
}

.emergency-info strong {
    font-weight: 700;
    font-size: 1rem;
}

/* Features */
.feature strong {
    font-weight: 600;
    font-size: 1rem;
}

/* Footer */
footer {
    font-family: var(--font-primary);
}

.footer-column h3 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column p {
    font-weight: 400;
    line-height: 1.6;
}

.footer-links a {
    font-weight: 400;
}

.copyright {
    font-weight: 400;
    font-size: 0.9rem;
}

/* Paragraphs */
p {
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Lists */
ul, ol {
    font-weight: 400;
    line-height: 1.6;
}

/* Strong and bold elements */
strong, b {
    font-weight: 600;
}

/* Responsive font sizes */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    body {
        font-size: 15px;
    }
    
    .btn {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
    }
}