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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Section 1: Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 80px 20px 120px;
    overflow: hidden;
}

.site-logo {
    display: block;
    width: 225px;
    height: auto;
    border-radius: 16px;
    /* Rounded square for better visibility */
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto 30px auto;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.cta-button {
    background: #fbbf24;
    color: #1e3a8a;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.cta-button-secondary svg {
    width: 20px;
    height: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.cta-button .whatsapp-icon {
    width: 20px;
    height: 20px;
}

.hero-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.hero-benefits li::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #fbbf24;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-visuals {
    position: relative;
    height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 3;
}

/* Section 2: About Section */
.about {
    padding: 100px 20px;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 32px;
}

.about-text {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

/* Section 3: Specializations */
.specializations {
    padding: 100px 20px;
    background: white;
}

.specializations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.specialization-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.specialization-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.specialization-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.specialization-illustration {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 6px solid #fbbf24;
    background-color: #fbbf24;
}

.ear-ill {
    background-image: url('images/ear.jpeg');
}

.nose-ill {
    background-image: url('images/nose.jpeg');
}

.throat-ill {
    background-image: url('images/throat.jpeg');
}

.specialization-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.specialization-description {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.treatment-list {
    list-style: none;
}

.treatment-list li {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.treatment-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
}

/* Section 4: Contact */
.contact {
    padding: 100px 20px;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.locations-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.locations-list::-webkit-scrollbar {
    width: 6px;
}
.locations-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.locations-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.location-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.location-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.location-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.location-details {
    margin-bottom: 20px;
}

.location-address, .location-timing {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.location-address svg, .location-timing svg {
    flex-shrink: 0;
    color: #3b82f6;
    margin-top: 2px;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.book-btn:hover {
    background: #059669;
    color: white;
    border-color: #059669;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.custom-map-marker {
    background: none;
    border: none;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-info-panel {
    background: #f3f4f6;
    border-radius: 16px;
    padding: 40px;
}

.whatsapp-panel {
    background: #1e3a8a;
    border-radius: 16px;
    padding: 40px;
    color: white;
}

.panel-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.contact-info-panel .panel-title {
    color: #1e3a8a;
}

.whatsapp-panel .panel-title {
    color: white;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    color: #1e3a8a;
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-details p {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.whatsapp-description {
    font-size: 1rem;
    margin-bottom: 24px;
    opacity: 0.95;
    line-height: 1.6;
}

.google-review-button {
    background: white;
    color: #3c4043;
    border: 1px solid #dadce0;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-top: 24px;
}

.google-review-button:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #d2e3fc;
    transform: translateY(-1px);
}

.whatsapp-features {
    list-style: none;
    margin-bottom: 32px;
}

.whatsapp-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #fbbf24;
    flex-shrink: 0;
}

.whatsapp-button {
    background: #fbbf24;
    color: #1e3a8a;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.whatsapp-button .whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Section 5: Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 60px 20px 30px;
    border-radius: 30px 30px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-hours {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.footer-separator {
    height: 1px;
    background: rgba(147, 197, 253, 0.5);
    margin: 40px 0 30px;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visuals {
        display: none;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specialization-cards {
        grid-template-columns: 1fr;
    }

    .locations-wrapper {
        grid-template-columns: 1fr;
        height: auto;
    }



    .map-container {
        height: 400px;
    }

    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .cta-button,
    .cta-button-secondary,
    .whatsapp-button {
        font-size: 1rem;
        padding: 14px 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        justify-content: center;
    }


}