/* css/style.css - Complete Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D3748;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
/* Updated Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 24px;
    color: #0A5EB0;
    margin: 0;
    line-height: 1.2;
}

.logo-text h1 span {
    color: #00A9A6;
}

.logo-text p {
    font-size: 12px;
    color: #718096;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Emergency Top Bar */
.emergency-top-bar {
    background: #E63946;
    color: white;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

.emergency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.emergency-content i {
    font-size: 20px;
}

.emergency-phone {
    color: white;
    text-decoration: none;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 50px;
    transition: all 0.3s;
}

.emergency-phone:hover {
    background: white;
    color: #E63946;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 24px;
    color: #0A5EB0;
}

.logo h1 span {
    color: #00A9A6;
}

.logo p {
    font-size: 12px;
    color: #718096;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #2D3748;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #0A5EB0;
}

.btn-appointment {
    background: #0A5EB0;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 30px;
}

.btn-appointment:hover {
    background: #00A9A6;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #0A5EB0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8F4FD 0%, #D4EAF7 100%);
    padding: 80px 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h2 {
    font-size: 48px;
    color: #0A5EB0;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 30px;
}

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

.btn-primary {
    background: #0A5EB0;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #00A9A6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #0A5EB0;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0A5EB0;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #0A5EB0;
    color: white;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #0A5EB0;
    margin-bottom: 10px;
}

.section-header p {
    color: #718096;
    font-size: 18px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    background: #F8F9FA;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 50px;
    color: #0A5EB0;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background: #F8F9FA;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature i {
    font-size: 40px;
    color: #00A9A6;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Doctors Section */
.doctors-section {
    padding: 80px 0;
    background: white;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: #F8F9FA;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 30px;
    transition: all 0.3s;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.doctor-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.doctor-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.doctor-card p {
    color: #0A5EB0;
    font-weight: 500;
    margin-bottom: 10px;
}

.doctor-card span {
    color: #718096;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.doctor-details {
    margin: 15px 0;
    font-size: 14px;
    text-align: left;
}

.btn-small {
    background: #0A5EB0;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-small:hover {
    background: #00A9A6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #0A5EB0;
    color: white;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-card i {
    font-size: 30px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card h4 {
    font-size: 16px;
    font-weight: 600;
}

/* Appointment + Map */
.appointment-map {
    padding: 80px 0;
    background: #F8F9FA;
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.appointment-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.appointment-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0A5EB0;
}

.appointment-form input,
.appointment-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: inherit;
}

.appointment-form button {
    width: 100%;
}

.map-container iframe {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
    background: #1A202C;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col p {
    color: #A0AEC0;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

.social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #0A5EB0;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2D3748;
    color: #A0AEC0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0A5EB0 0%, #00A9A6 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

/* About Page */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 0;
}

.about-text h2 {
    color: #0A5EB0;
    margin-bottom: 20px;
}

.about-text h3 {
    color: #0A5EB0;
    margin: 20px 0 10px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.facilities {
    padding: 60px 0;
    background: #F8F9FA;
}

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

.facility-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
}

.facility-item i {
    font-size: 40px;
    color: #0A5EB0;
    margin-bottom: 15px;
}

/* Services Detailed Page */
.services-detailed {
    padding: 80px 0;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px;
    background: #F8F9FA;
    border-radius: 12px;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse .service-info {
    direction: ltr;
}

.service-icon-large i {
    font-size: 60px;
    color: #0A5EB0;
}

.service-info h2 {
    color: #0A5EB0;
    margin-bottom: 15px;
}

.service-info ul {
    margin-top: 15px;
    padding-left: 20px;
}

.service-info li {
    margin-bottom: 8px;
}

/* Appointment Page */
.appointment-page {
    padding: 80px 0;
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-box {
    background: #E8F4FD;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.info-box ul {
    padding-left: 20px;
    margin-top: 10px;
}

.contact-alternate {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.appointment-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.appointment-form-large input,
.appointment-form-large select,
.appointment-form-large textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-block {
    width: 100%;
}

/* Emergency Page */
.emergency-page {
    padding: 60px 0;
}

.emergency-hero {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #E63946 0%, #C53030 100%);
    border-radius: 20px;
    color: white;
    margin-bottom: 50px;
}

.emergency-hero i {
    font-size: 80px;
    margin-bottom: 20px;
}

.emergency-number-large a {
    font-size: 48px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 20px 0;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.emergency-card {
    background: #F8F9FA;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
}

.emergency-card i {
    font-size: 50px;
    color: #E63946;
    margin-bottom: 20px;
}

.btn-emergency {
    background: #E63946;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.emergency-instructions {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #0A5EB0;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Blog Page */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-category {
    background: #E8F4FD;
    color: #0A5EB0;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E2E8F0;
}

.read-more {
    color: #0A5EB0;
    text-decoration: none;
    font-weight: 600;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info-card,
.contact-form-card {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 12px;
}

.contact-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail i {
    font-size: 24px;
    color: #0A5EB0;
    margin-top: 5px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: inherit;
}

.map-full {
    margin-top: 40px;
}

.map-full h2 {
    margin-bottom: 20px;
    color: #0A5EB0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-wrapper,
    .about-wrapper,
    .appointment-wrapper,
    .appointment-container,
    .contact-container,
    .service-detail-item {
        grid-template-columns: 1fr;
    }
    
    .service-detail-item.reverse {
        direction: ltr;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 30px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-appointment {
        margin: 20px 0 0;
        display: inline-block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .emergency-number-large a {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .features-grid,
    .doctors-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .emergency-hero {
        padding: 30px;
    }
}