@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --clr-primary-blue: #1a3673;
    /* Navy Blue */
    --clr-primary-light-blue: #234f9e;
    --clr-red: #ea4335;
    --clr-red-light: #fce8e6;
    --clr-green: #25D366;
    /* WhatsApp */
    --clr-green-dark: #1da851;
    --clr-text-main: #333333;
    --clr-text-muted: #666666;
    --clr-bg-light: #fdfdfd;
    --clr-bg-alt: #f4f7fb;
    --clr-white: #ffffff;
    --clr-border: #e0e6ed;

    /* Typography */
    --font-main: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1140px;
}

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

body {
    font-family: var(--font-main);
    color: var(--clr-text-main);
    background-color: var(--clr-white);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utils */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--clr-primary-blue);
}

.text-red {
    color: var(--clr-red);
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--clr-primary-blue);
    color: var(--clr-white);
}

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

.btn-whatsapp {
    background-color: var(--clr-green);
    color: var(--clr-white);
}

.btn-whatsapp:hover {
    background-color: var(--clr-green-dark);
}

.btn-red {
    background-color: var(--clr-red);
    color: var(--clr-white);
}

.btn-red:hover {
    background-color: #d3382b;
}

.btn-outline-green {
    background-color: transparent;
    border: 2px solid var(--clr-green);
    color: var(--clr-green);
    padding: 9px 24px; /* compensate for 2px border */
}

.btn-outline-green:hover {
    background-color: var(--clr-green);
    color: var(--clr-white);
}

/* Top Header */
.top-header {
    padding: 12px 0;
    border-bottom: 1px solid var(--clr-border);
    background-color: var(--clr-white);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo img {
    height: 95px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contact-info i {
    font-size: 20px;
    color: var(--clr-primary-blue);
}

.contact-info .number {
    font-weight: 700;
    color: var(--clr-text-main);
}

/* Hero Section */
.hero-section {
    background-color: #faf7f2; /* warm off-white matching the image background */
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    padding-right: 0; /* Let image stretch */
    max-width: 1400px;
}

.hero-content {
    flex: 1;
    padding: 60px 20px 60px 40px;
    max-width: 700px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 48px;
    color: var(--clr-primary-blue);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--clr-primary-blue);
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.bullet-icon {
    color: var(--clr-red);
    font-size: 16px;
    background: var(--clr-red-light);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bullet-text {
    font-size: 15px;
    color: var(--clr-primary-blue);
    font-weight: 500;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image::after {
    display: none;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    display: block;
    object-fit: cover;
    /* Clean rounded edge instead of messy blur on dark image parts */
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.04);
}

/* Booking Section */
.booking-section {
    padding: 60px 0;
    background-color: var(--clr-white);
}

.booking-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.booking-title {
    flex: 1;
}

.booking-title h2 {
    color: var(--clr-primary-blue);
    font-size: 32px;
    margin-bottom: 10px;
}

.booking-title h2 span {
    color: var(--clr-red);
}

.booking-title p {
    color: var(--clr-text-muted);
    font-size: 14px;
}

.booking-form {
    flex: 2;
    background: var(--clr-bg-alt);
    padding: 30px;
    border-radius: 12px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-primary-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 14px;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--clr-primary-blue);
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

.security-note {
    font-size: 11px;
    color: var(--clr-text-muted);
    text-align: center;
    margin-top: 15px;
}

/* Doctor Profile Section */
.doctor-section {
    background-color: var(--clr-white);
    padding: 80px 0;
}

.doctor-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.doc-img-col {
    border-radius: 20px;
    overflow: hidden;
}

.doc-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.doc-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px 0;
}

.doc-meet {
    color: #11204d;
    font-size: 28px;
    font-family: var(--font-heading), serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.doc-name {
    color: #ea4335;
    font-size: 32px;
    font-family: var(--font-heading), serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.doc-degree {
    color: #11204d;
    font-size: 32px;
}

.doc-tagline {
    color: #11204d;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.doc-desc {
    color: #11204d;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.doc-qualification {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fcf1f1;
    padding: 12px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    width: fit-content;
}

.qual-icon {
    color: #ea4335;
    font-size: 20px;
}

.qual-text {
    color: #11204d;
    font-size: 13px;
    font-weight: 600;
}

.doc-features-col {
    background-color: #fff4f2;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feat-icon {
    background-color: #fce8e6;
    color: #ea4335;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.feat-text {
    color: #11204d;
    font-size: 14px;
    font-weight: 600;
}

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

.section-header h4 {
    color: var(--clr-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    color: var(--clr-primary-blue);
    font-size: 32px;
}

.section-header p {
    color: var(--clr-text-muted);
    margin-top: 10px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #faf7f2;
}

.services-title {
    color: #11204d;
    font-size: 32px;
    font-family: var(--font-heading), serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-subtitle {
    color: #11204d;
    font-weight: 600;
    font-size: 16px;
}

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

.service-card {
    background: var(--clr-white);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

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

.service-img {
    height: 160px;
    margin-bottom: 20px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-hindi {
    color: #1a5038;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-english {
    color: #1a5038;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-consult {
    background-color: #11204d;
    color: var(--clr-white);
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.btn-consult:hover {
    background-color: #1a3673;
    color: var(--clr-white);
}

/* Why Choose Us */
.why-section {
    background-color: var(--clr-bg-alt);
    padding: 80px 0;
}

.features-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.feature-item {
    flex: 1;
}

.f-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-red-light);
    color: var(--clr-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.feature-item h4 {
    color: var(--clr-primary-blue);
    font-size: 14px;
    font-weight: 600;
}

/* How It Works */
.steps-section {
    padding: 80px 0;
    background: var(--clr-white);
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.steps-wrapper::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--clr-border);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--clr-white);
    border: 2px dashed var(--clr-red);
    color: var(--clr-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    color: var(--clr-primary-blue);
    font-size: 16px;
    margin-bottom: 10px;
}

.step p {
    font-size: 13px;
    color: var(--clr-text-muted);
}

/* Locations */
.locations-section {
    background: var(--clr-white);
    padding: 80px 0;
}

.locations-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
}

.location-card {
    background: var(--clr-white);
    border-radius: 12px;
    padding: 30px;
    width: 450px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.locations-divider {
    width: 1px;
    background: repeating-linear-gradient(to bottom, #cbd5e1, #cbd5e1 5px, transparent 5px, transparent 10px);
    margin: 20px 0;
}

.loc-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #ea4335;
    color: var(--clr-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.main-clinic .loc-title {
    text-align: center;
}

.loc-title {
    color: #11204d;
    font-size: 20px;
    font-family: var(--font-heading), serif;
    font-weight: 700;
    margin-bottom: 25px;
}

.loc-details {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.loc-details i {
    color: #ea4335;
    font-size: 20px;
    margin-top: 2px;
}

.loc-address {
    color: #11204d;
    font-size: 15px;
    line-height: 1.6;
}

.loc-timing {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    margin-top: auto;
}

.loc-timing.solid-red {
    background: #ea4335;
    color: var(--clr-white);
    justify-content: center;
}

.loc-timing.light-red {
    background: #fff0f0;
    color: #ea4335;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--clr-white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.testi-card {
    background: var(--clr-bg-alt);
    border-radius: 12px;
    padding: 25px;
}

.testi-card p {
    font-size: 14px;
    color: var(--clr-text-main);
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--clr-primary-blue);
    font-size: 14px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.stars {
    color: #FFC107;
    font-size: 12px;
    margin-top: 3px;
}

/* CTA Footer Section */
.cta-footer {
    padding: 60px 0;
    background: var(--clr-white);
    text-align: center;
    border-top: 1px solid var(--clr-border);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 10px;
}

/* Main Footer */
.main-footer {
    background: var(--clr-bg-alt);
    padding: 25px 0;
    border-top: 1px solid var(--clr-border);
}

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

.footer-logo img {
    height: 30px;
}

.footer-links {
    color: var(--clr-primary-blue);
    font-weight: 500;
    font-size: 14px;
}

.footer-copyright {
    color: var(--clr-text-muted);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-container {
        flex-direction: column;
        align-items: center;
    }
    
    .locations-divider {
        display: none;
    }

    .doctor-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }

    .booking-wrapper {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        flex-wrap: wrap;
    }

    .feature-item {
        min-width: 45%;
        margin-bottom: 20px;
    }

    .steps-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .steps-wrapper::before {
        display: none;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}