/* Dr. Francis Reena - Optimized CSS for Blazing Fast Loading */
/* Pediatric theme: warm pink + sky blue + sunshine yellow */

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

:root {
    --primary: #ec4899;
    --primary-dark: #be185d;
    --secondary: #0ea5e9;
    --secondary-dark: #0369a1;
    --accent: #fbbf24;
    --mint: #10b981;
    --dark: #1e1b4b;
    --light: #fdf2f8;
    --gray-light: #fefcff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --emergency: #dc2626;
    --gradient-primary: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #0ea5e9 100%);
    --gradient-pink: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    --gradient-blue: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    --gradient-emergency: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --gradient-pedi: linear-gradient(135deg, #ec4899 0%, #a78bfa 50%, #0ea5e9 100%);
    --gradient-sun: linear-gradient(135deg, #fbbf24 0%, #fb7185 100%);
    --shadow: 0 10px 30px rgba(236, 72, 153, 0.18);
    --shadow-hover: 0 15px 40px rgba(236, 72, 153, 0.28);
}

[class^="fa-"], [class*=" fa-"], .fas, .fab, .far {
    font-family: "Font Awesome 6 Free", "FontAwesome" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
}

.fab {
    font-family: "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 400 !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    will-change: transform;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.doctor-name-header {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.call-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.4);
}

/* Hero */
.hero {
    margin-top: 65px;
    padding: 40px 0;
    background: var(--gradient-pedi);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 260px;
    height: 260px;
    background: rgba(251, 191, 36, 0.18);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.doctor-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin: 0 auto 20px;
    display: block;
    background: white;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fef3c7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}

.specialty {
    font-size: 18px;
    margin-bottom: 8px;
    opacity: 0.95;
}

.qualifications {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.experience-badge {
    background: rgba(255, 255, 255, 0.18);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.women-owned-badge {
    background: rgba(251, 191, 36, 0.95);
    color: #78350f;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 14px;
    min-width: 140px;
    justify-content: center;
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Section Styles */
.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 15px;
}

/* Location bar */
.location-coverage {
    background: var(--light);
    padding: 15px 0;
    border-bottom: 1px solid rgba(236, 72, 153, 0.12);
}

.location-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.location-title {
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
}

.location-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.location-tags span {
    background: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: var(--text-dark);
    border: 1px solid rgba(236, 72, 153, 0.25);
    transition: all 0.3s ease;
}

.location-tags span:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

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

.about-content {
    display: grid;
    gap: 30px;
    text-align: center;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 15px;
}

.about-doctor-image {
    display: none;
    margin-bottom: 30px;
}

.desktop-doctor-img {
    width: 100%;
    max-width: 280px;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.desktop-doctor-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.3);
}

.about-right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Popular searches */
.popular-searches {
    background: white;
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.search-card {
    background: var(--gray-light);
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.search-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.search-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}

.search-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.search-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.search-link:hover {
    color: var(--primary-dark);
}

/* Vaccination schedule */
.vaccination {
    background: white;
}

.vaccine-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.vaccine-card {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vaccine-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.15);
}

.vaccine-age {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.vaccine-name {
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.vaccine-desc {
    color: var(--text-light);
    font-size: 14px;
}

.vaccine-disclaimer {
    margin: 30px auto 0;
    max-width: 820px;
    padding: 16px 20px;
    background: #fff7ed;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
}

.vaccine-disclaimer i {
    color: #f59e0b;
    margin-right: 6px;
}

.vaccine-disclaimer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.vaccine-disclaimer a:hover {
    text-decoration: underline;
}

/* Services */
.services {
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr;
}

.service-category {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-pedi);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.category-header h3 {
    font-size: 20px;
    color: var(--dark);
    margin: 0;
}

.procedures-list {
    display: grid;
    gap: 12px;
}

.procedure-item {
    background: var(--gray-light);
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 3px solid transparent;
}

.procedure-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--primary);
}

.procedure-item i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.procedure-item i.fa-check-circle {
    color: var(--mint);
}

/* Why Choose */
.why-choose {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.why-card {
    background: var(--gray-light);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 15px;
}

.why-icon.alt {
    background: var(--gradient-blue);
}

.why-icon.sun {
    background: var(--gradient-sun);
}

.why-card h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Milestones */
.milestones {
    background: var(--gray-light);
}

.milestone-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

.milestone-card {
    background: white;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--primary);
}

.milestone-age {
    color: var(--secondary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.milestone-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}

.milestone-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Online Consultation */
.online-consult {
    background: linear-gradient(135deg, #f0f9ff 0%, #fdf2f8 100%);
}

.online-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
}

.online-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.online-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.18);
}

.online-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 16px;
}

.online-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-pink);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.online-icon.alt {
    background: var(--gradient-blue);
}

.online-icon.sun {
    background: var(--gradient-sun);
}

.online-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.online-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.online-list li i.fa-check-circle {
    color: var(--mint);
    margin-top: 3px;
    flex-shrink: 0;
}

.online-list li i.fa-exclamation-triangle {
    color: #f59e0b;
    margin-top: 3px;
    flex-shrink: 0;
}

.online-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.online-steps li {
    padding: 10px 0 10px 40px;
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
    line-height: 1.5;
    counter-increment: step;
}

.online-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 8px;
    width: 28px;
    height: 28px;
    background: var(--gradient-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.online-note {
    margin-top: 14px;
    padding: 10px 12px;
    background: #fff7ed;
    border-left: 3px solid #f59e0b;
    border-radius: 6px;
    font-size: 13px;
    color: #78350f;
}

.online-cta {
    text-align: center;
    margin-top: 20px;
}

.btn-online-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-online-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(236, 72, 153, 0.45);
}

.online-cta-sub {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-light);
}

/* Sunday Banner */
.sunday-banner {
    background: linear-gradient(135deg, #fdf2f8 0%, #f0f9ff 50%, #ecfeff 100%);
    color: var(--text-dark);
    padding: 50px 0;
    border-top: 4px solid var(--primary);
    border-bottom: 4px solid var(--secondary);
}

.sunday-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-direction: column;
    text-align: center;
}

.sunday-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.18);
}

.sunday-text {
    flex: 1;
}

.sunday-text .section-title {
    color: var(--dark);
    margin-bottom: 12px;
}

.sunday-text .section-title::after {
    background: var(--gradient-primary);
}

.sunday-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.sunday-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
}

.sunday-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.sunday-list li i {
    color: var(--mint);
}

.sunday-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-outline-pink:hover {
    background: var(--primary);
    color: white;
}

/* FAQs */
.faqs {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-light);
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    background: var(--gray-light);
    border: none;
    padding: 20px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background: var(--light);
    color: var(--primary);
}

.faq-question.active {
    background: var(--primary);
    color: white;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
}

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

.contact-content {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-phone {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

.contact-phone:hover {
    color: var(--primary-dark);
}

.map-container {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 30px;
    width: 100%;
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 15px;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile CTA */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: flex;
    padding: 10px 15px;
    border-top: 1px solid #eee;
}

.cta-btn {
    flex: 1;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

.cta-btn i {
    font-size: 20px;
}

.cta-call {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.cta-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* Floating Bar */
.desktop-floating-bar {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

.floating-call-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-call-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.floating-call-btn:hover::before {
    width: 300px;
    height: 300px;
}

.floating-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.5);
}

.floating-call-btn i {
    font-size: 20px;
    animation: pulse 2s infinite;
}

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

.floating-call-btn span {
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Related Searches / Topical Index */
.related-searches {
    background: var(--gray-light);
    border-top: 1px solid rgba(236, 72, 153, 0.08);
    border-bottom: 1px solid rgba(236, 72, 153, 0.08);
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 10px;
}

.related-col h3 {
    font-size: 15px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(236, 72, 153, 0.18);
}

.related-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-col li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.related-col li a {
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.related-col li a::before {
    content: "›";
    color: var(--primary);
    margin-right: 6px;
    font-weight: 700;
}

.related-col li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 90px;
}

.footer-content {
    display: grid;
    gap: 30px;
    text-align: center;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f9a8d4;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section p i {
    margin-right: 8px;
    color: #f9a8d4;
    width: 16px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f9a8d4;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

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

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 375px) {
    .doctor-name-header { font-size: 14px; }
    .call-btn { padding: 6px 12px; font-size: 12px; }
    .location-tags span { font-size: 11px; padding: 3px 8px; }
    .cta-btn { font-size: 14px; padding: 12px 15px; }
    .cta-btn i { font-size: 18px; }
}

@media (min-width: 480px) {
    .search-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .milestone-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 480px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .related-grid { grid-template-columns: repeat(3, 1fr); }
    .container { padding: 0 20px; }
    .hero h1 { font-size: 42px; }
    .hero-tagline { font-size: 22px; }
    .doctor-image { width: 220px; height: 220px; }
    .specialty { font-size: 22px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 36px; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .search-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .milestone-grid { grid-template-columns: repeat(3, 1fr); }
    .vaccine-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-content { grid-template-columns: repeat(2, 1fr); }
    .online-grid { grid-template-columns: repeat(3, 1fr); }
    .sunday-content { flex-direction: row; text-align: left; }
    .sunday-text .section-title { display: inline-block; }
    .sunday-list { grid-template-columns: repeat(2, 1fr); }
    .sunday-cta { justify-content: flex-start; }
    .mobile-cta-bar { display: none; }
    .desktop-floating-bar { display: block; }
    body { padding-bottom: 20px; }
    .footer { padding: 40px 0 100px; }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    .footer-social { justify-content: flex-start; }
    .location-bar { justify-content: center; }
}

@media (min-width: 1024px) {
    .related-grid { grid-template-columns: repeat(6, 1fr); }
    .hero { padding: 60px 0; }
    .section { padding: 80px 0; }
    .about-content {
        grid-template-columns: 1.2fr 0.8fr;
        text-align: left;
        align-items: start;
        gap: 40px;
    }
    .about-text { max-width: none; margin: 0; }
    .about-doctor-image { display: block; }
    .about-right-section { align-items: flex-start; }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
    }
    .stat-card { padding: 20px 15px; }
    .search-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(4, 1fr); }
    .milestone-grid { grid-template-columns: repeat(4, 1fr); }
    .contact-content { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(4, 1fr); }
}
