/* ==========================================================================
   Pushkar Multi Specialty Hospital - CSS Stylesheet (Absolute Mobile Overflow Prevention)
   ========================================================================== */

:root {
    --flyer-red: #e50914;
    --flyer-red-hover: #ff1e27;
    --flyer-maroon: #900c3f;
    --flyer-maroon-dark: #640d14;
    --flyer-navy: #1e3a8a;
    --flyer-navy-dark: #0f172a;
    --flyer-blue-accent: #1d4ed8;
    --flyer-gold: #f59e0b;
    --flyer-gold-gradient: linear-gradient(135deg, #f59e0b, #d97706);
    --flyer-purple-badge: #1e1b4b;
    --insta-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    --font-main: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-telugu: 'Noto Sans Telugu', 'Ramabhadra', sans-serif;
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 12px 30px -5px rgba(30, 58, 138, 0.15);
    --shadow-lg: 0 24px 48px -10px rgba(229, 9, 20, 0.25);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ABSOLUTE ZERO HORIZONTAL OVERFLOW RESET */
*, *::before, *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: var(--font-main), var(--font-telugu);
    background-color: #f1f5f9;
    color: var(--text-primary);
    line-height: 1.6;
}

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

ul { list-style: none; }

img {
    max-width: 100% !important;
    height: auto;
    display: block;
}

.container {
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
}

/* Section Container Limits */
.hero-section, .doctors-section, .clinical-showcase-section, .dept-section, .facilities-flyer-banner, .contact-section, .main-footer, .top-bar, .main-header {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Touch-Friendly Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: normal;
    user-select: none;
    box-sizing: border-box !important;
    max-width: 100% !important;
}

.btn:active {
    transform: scale(0.97);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.88rem;
}

.btn-insta-sm {
    background: var(--insta-gradient);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.4);
}

.btn-insta-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 39, 67, 0.6);
    color: #ffffff;
}

.btn-insta {
    background: var(--insta-gradient);
    color: #ffffff;
    font-weight: 800;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.4);
}

.btn-insta:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-primary {
    background: linear-gradient(135deg, var(--flyer-red), #b7094c);
    color: var(--text-white);
    box-shadow: 0 6px 18px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff1e27, var(--flyer-red));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.5);
}

.btn-navy {
    background: linear-gradient(135deg, var(--flyer-navy), var(--flyer-navy-dark));
    color: var(--text-white);
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.4);
}

.btn-navy:hover {
    background: linear-gradient(135deg, #1d4ed8, var(--flyer-navy));
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--flyer-red);
    color: var(--flyer-red);
}

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

.btn-gold {
    background: var(--flyer-gold-gradient);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.w-100 { width: 100% !important; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.text-center { text-align: center; }

/* Top Bar */
.top-bar {
    background: var(--flyer-navy-dark);
    color: var(--text-white);
    font-size: 0.88rem;
    padding: 8px 0;
    border-bottom: 2px solid var(--flyer-red);
    width: 100%;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pulse-badge {
    background: var(--flyer-red);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pulse-badge i {
    font-size: 0.5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

.phone-link {
    color: #fca5a5;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.phone-link:hover { color: #ffffff; }
.divider { color: rgba(255, 255, 255, 0.3); }

.location-text {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-map-link:hover { color: #f59e0b; }

.top-insta-link {
    color: #f472b6;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-insta-link:hover { color: #ffffff; }

.lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.12);
    padding: 3px;
    border-radius: var(--radius-full);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #cbd5e1;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--flyer-red);
    color: var(--text-white);
}

/* Header & High-Definition Official Logo */
.main-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    width: 100%;
}

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

.brand-logo-wrap {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: var(--transition);
    max-width: 100%;
}

.brand-logo-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.official-brand-logo {
    height: 70px;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-weight: 800;
    font-size: 1rem;
    color: var(--flyer-navy);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active { color: var(--flyer-red); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--flyer-red);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger-btn {
    display: none;
    background: var(--flyer-navy);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.hamburger-btn:active { transform: scale(0.92); }

/* Mobile Drawer Nav */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 1002;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
}

.mobile-drawer.open { right: 0; }

.drawer-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--flyer-red);
    background: var(--flyer-navy);
    color: #ffffff;
}

.drawer-official-logo {
    height: 56px;
    width: auto;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.close-drawer {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

.drawer-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    overflow-y: auto;
}

.drawer-links a {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--flyer-navy);
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1001;
    display: none;
}
.drawer-backdrop.open { display: block; }

/* Hero Banner Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--flyer-navy-dark) 0%, var(--flyer-navy) 100%);
    color: var(--text-white);
    padding: 35px 0 55px 0;
    border-bottom: 4px solid var(--flyer-red);
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    max-width: 100%;
}

.milestone-badge-flyer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 2px solid var(--flyer-red);
    color: var(--flyer-red);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.milestone-badge-flyer i {
    color: var(--flyer-gold);
    font-size: 1.1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text-red-highlight { color: #ff4d6d; }

.hero-subtitle {
    font-size: 1.05rem;
    color: #e2e8f0;
    margin-bottom: 24px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
    max-width: 100%;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: var(--radius-md);
    max-width: 100%;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-item i {
    font-size: 1.4rem;
    color: #ff4d6d;
}

.highlight-item h4 { font-size: 0.85rem; font-weight: 800; }
.highlight-item p { font-size: 0.74rem; color: #cbd5e1; }

/* HERO RIGHT SIDE - DR. VIJAYALAXMI RAHUL MADAM BIG PHOTO & NAME ONLY */
.hero-doc-single-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.hero-single-doc-card {
    background: #ffffff;
    border: 4px solid var(--flyer-maroon);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 380px;
    box-sizing: border-box !important;
    transition: var(--transition);
}

.hero-single-doc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-doc-portrait-big {
    width: 220px;
    height: 290px;
    max-width: 100% !important;
    object-fit: contain;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    margin: 0 auto 16px auto;
    padding: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hero-single-doc-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    max-width: 100%;
}

.single-doc-name {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--flyer-navy);
    line-height: 1.2;
    word-break: break-word;
}

.single-doc-degree {
    font-size: 1rem;
    font-weight: 800;
    color: var(--flyer-maroon);
    word-break: break-word;
}

/* Doctors Section & Doctor Real Photo Styling */
.doctors-section {
    padding: 60px 0;
}

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

.section-tag {
    display: inline-block;
    background: var(--flyer-red);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--flyer-navy);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 100%;
}

.doctor-flyer-card {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.doctor-flyer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.doc-flyer-header.red-theme {
    background: linear-gradient(135deg, var(--flyer-red), #b7094c);
    color: #ffffff;
    padding: 20px;
}

.doc-flyer-header.maroon-theme {
    background: linear-gradient(135deg, var(--flyer-maroon), var(--flyer-maroon-dark));
    color: #ffffff;
    padding: 20px;
}

.doc-profile-top {
    display: flex;
    gap: 16px;
    align-items: center;
}

.doc-real-photo {
    width: 120px;
    height: 150px;
    object-fit: contain;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 3px solid #ffffff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    flex-shrink: 0;
    padding: 4px;
}

.doc-meta { flex: 1; }

.doc-meta h3 {
    font-size: 1.45rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.doc-qual {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--flyer-gold);
    margin-bottom: 6px;
}

.doc-role-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
}

.reg-no-tag {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    background: #ffffff;
    color: var(--flyer-navy);
    padding: 2px 8px;
    border-radius: 4px;
}

.doc-flyer-body {
    padding: 20px;
    flex: 1;
}

.services-box-header {
    background: #f8fafc;
    border-left: 4px solid var(--flyer-red);
    padding: 8px 12px;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--flyer-navy);
    margin-bottom: 12px;
}

.doc-flyer-body.maroon-body .services-box-header {
    border-left-color: var(--flyer-maroon);
}

.services-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-bullet-list li {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.services-bullet-list i {
    color: var(--flyer-red);
    font-size: 0.85rem;
    margin-top: 4px;
}

.maroon-body .services-bullet-list i {
    color: var(--flyer-maroon);
}

.doc-flyer-footer {
    padding: 0 20px 20px 20px;
}

/* Clinical Showcase */
.clinical-showcase-section {
    padding: 50px 0;
    background: #ffffff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 100%;
}

.showcase-card {
    background: #f8fafc;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    max-width: 100%;
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.showcase-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.showcase-card:hover .showcase-img-wrap img {
    transform: scale(1.05);
}

.showcase-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--flyer-red);
    color: #ffffff;
    font-weight: 900;
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.showcase-body {
    padding: 20px;
}

.showcase-body h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--flyer-navy);
    margin-bottom: 8px;
}

.showcase-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

/* Flyer Departments Grid */
.dept-section {
    padding: 60px 0;
    background: #f1f5f9;
}

.flyer-depts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 100%;
}

.flyer-dept-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    max-width: 100%;
}

.dept-box-header.red-bg {
    background: linear-gradient(135deg, var(--flyer-red), #b7094c);
    color: #ffffff;
    padding: 16px 20px;
}

.dept-box-header.maroon-bg {
    background: linear-gradient(135deg, var(--flyer-maroon), var(--flyer-maroon-dark));
    color: #ffffff;
    padding: 16px 20px;
}

.dept-box-header h3 {
    font-size: 1.25rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dept-box-body {
    padding: 20px;
}

.dept-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
}

.dept-item {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    word-break: break-word;
}

.dept-item i {
    color: var(--flyer-red);
    margin-top: 3px;
    font-size: 0.78rem;
}

.maroon-items .dept-item i {
    color: var(--flyer-maroon);
}

/* Facilities Banner */
.facilities-flyer-banner {
    background: linear-gradient(135deg, var(--flyer-red), #b7094c);
    color: #ffffff;
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.facilities-banner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 100%;
}

.fac-banner-title {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: #ffffff;
    color: var(--flyer-red);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.fac-banner-items {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fac-item-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 900;
}

.fac-item-pill i {
    font-size: 1.25rem;
    color: var(--flyer-gold);
}

/* Contact & Footer */
.contact-section {
    padding: 60px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 100%;
}

.contact-info-card, .qr-code-card {
    background: #f8fafc;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
}

.c-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffe4e6;
    color: var(--flyer-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.c-info-item h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--flyer-navy);
    margin-bottom: 4px;
}

.map-address-link {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}

.map-address-link:hover { color: var(--flyer-red); }

.phone-highlight {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--flyer-red);
}

.qr-code-card h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--flyer-navy);
    margin-bottom: 8px;
}

.qr-flex {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 16px;
    max-width: 100%;
}

.map-qr-interactive, .insta-qr-interactive {
    cursor: pointer;
    transition: var(--transition);
}

.map-qr-interactive:hover { transform: translateY(-4px); }
.map-qr-interactive:hover .qr-box { border-color: var(--flyer-gold); background: #fffbeb; }

.insta-qr-interactive:hover { transform: translateY(-4px); }
.insta-qr-interactive:hover .insta-qr-box { border-color: #e1306c; background: #fdf2f8; }

.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.qr-box {
    width: 130px;
    height: 130px;
    border: 2px dashed var(--flyer-red);
    border-radius: var(--radius-md);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.qr-icon-placeholder {
    font-size: 2.5rem;
    color: var(--flyer-red);
}

.qr-label {
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--flyer-navy);
}

.qr-caption {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-primary);
}

/* Footer Styling */
.main-footer {
    background: var(--flyer-navy-dark);
    color: #ffffff;
    padding-top: 40px;
    border-top: 4px solid var(--flyer-red);
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    max-width: 100%;
}

.footer-logo-card {
    background: #ffffff;
    padding: 6px 14px;
    border-radius: var(--radius-md);
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-official-logo {
    height: 55px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-top: 12px;
}

.footer-links-col h4, .footer-contact-col h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-col a { color: #cbd5e1; font-weight: 600; }
.footer-links-col a:hover { color: #ff4d6d; }

.footer-phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid var(--flyer-red);
    padding: 12px 16px;
    border-radius: var(--radius-md);
}

.footer-phone-box i { font-size: 1.6rem; color: #ff4d6d; }
.footer-phone-box a { font-size: 1.2rem; font-weight: 900; color: #ffffff; }

.footer-bottom {
    background: #050e1c;
    padding: 14px 0;
    font-size: 0.82rem;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Appointment Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 29, 55, 0.88);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-backdrop.open .modal-content { transform: scale(1); }

.modal-header {
    background: linear-gradient(135deg, var(--flyer-red), #b7094c);
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-modal-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
    max-height: 85vh;
    overflow-y: auto;
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--flyer-navy);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.95rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #f8fafc;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--flyer-red);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
}

.form-row { display: flex; gap: 12px; }
.col-half { flex: 1; }

.booking-success-box { text-align: center; padding: 16px 0; }
.booking-success-box.hidden { display: none; }
.form-hidden { display: none; }

.success-icon {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 10px;
}

.booking-id-tag {
    display: inline-block;
    background: #ffe4e6;
    color: var(--flyer-red);
    font-size: 1.35rem;
    font-weight: 900;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    margin: 10px 0;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 16px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    max-width: 50px;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.insta-float-btn { background: var(--insta-gradient); }
.maps-float-btn { background: var(--flyer-gold); }

.emergency-call-btn {
    background: var(--flyer-red);
    animation: pulseCall 2s infinite;
}

@keyframes pulseCall {
    0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(229, 9, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.appointment-float-btn { background: var(--flyer-navy); }
.floating-btn:hover { transform: scale(1.08); }

/* ==========================================================================
   MOBILE-FIRST RESPONSIVE FIXES (Zero Side Scroll & Perfect Centering)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* DR. VIJAYALAXMI RAHUL MADAM PHOTO CARD FIRST ON MOBILE */
    .hero-doc-single-showcase {
        order: -1;
        width: 100%;
        margin-bottom: 4px;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .milestone-badge-flyer {
        margin: 0 auto 16px auto;
    }

    .doctors-grid, .showcase-grid, .flyer-depts-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* HIDE TOP ANNOUNCEMENT BAR ON MOBILE */
    .top-bar {
        display: none !important;
    }

    .nav-menu, .header-actions .nav-cta { display: none; }
    .hamburger-btn { display: flex; align-items: center; justify-content: center; }

    .brand-logo-wrap {
        padding: 4px 8px;
        max-width: calc(100vw - 80px) !important;
    }

    .official-brand-logo {
        height: 50px;
        max-height: 55px;
    }

    .milestone-badge-flyer {
        font-size: 0.72rem !important;
        padding: 6px 10px !important;
        white-space: normal !important;
        text-align: center !important;
        justify-content: center !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.25;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 10px;
        width: 100% !important;
    }

    .hero-ctas .btn {
        width: 100% !important;
        white-space: normal !important;
        padding: 12px 16px !important;
    }

    .hero-single-doc-card {
        padding: 14px 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        border-width: 3px;
        box-sizing: border-box !important;
    }

    .hero-doc-portrait-big {
        width: 170px !important;
        height: 225px !important;
        max-width: 100% !important;
    }

    .single-doc-name {
        font-size: 1.4rem !important;
        word-break: break-word !important;
    }

    .single-doc-degree {
        font-size: 0.85rem !important;
        word-break: break-word !important;
    }

    .btn-insta-sm {
        white-space: normal !important;
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .dept-items-grid {
        grid-template-columns: 1fr;
    }

    .doc-profile-top {
        flex-direction: column;
        text-align: center;
    }

    .doc-real-photo {
        width: 130px;
        height: 160px;
        margin: 0 auto;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .qr-flex {
        flex-direction: column;
        align-items: center;
    }

    .floating-actions {
        bottom: 12px !important;
        right: 8px !important;
        max-width: 44px !important;
    }

    .floating-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.15rem !important;
    }
}
