/* ===== GASTROCARES — COMPLETE STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy: #0F2B3C;
    --teal: #1A8F7F;
    --teal-light: #E7F6F4;
    --gold: #B8943F;
    --gold-light: #F8F3E8;
    --cream: #FDFBF7;
    --dark: #1E293B;
    --body: #475569;
    --muted: #94A3B8;
    --border: #E2E8F0;
    --bg-light: #F8F9FB;
    --white: #FFFFFF;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--body); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--serif); color: var(--dark); line-height: 1.3; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-teal { color: var(--teal) !important; }
.text-white { color: var(--white) !important; }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar, .announcement-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
}
.announce-bar strong, .announcement-bar strong { color: var(--gold); }
.announce-bar a, .announcement-bar a { color: var(--gold); font-weight: 600; }
.announce-bar a:hover, .announcement-bar a:hover { text-decoration: underline; }
.announce-bar p, .announcement-bar p { margin: 0; }
.sep { opacity: 0.3; margin: 0 12px; }

/* ===== HEADER ===== */
.site-header, .sticky-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo — supports both class conventions */
.logo, .header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo img, .header-logo img { height: 42px; width: auto; }
.logo-text, .header-logo-text { display: flex; flex-direction: column; }
.logo-text h2, .header-brand {
    font-size: 18px;
    color: var(--navy);
    font-family: var(--sans);
    font-weight: 800;
    line-height: 1.2;
}
.logo-text span, .header-subtitle {
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
}

/* Navigation — both conventions */
.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.main-nav a, .nav-item > a, .nav-list > li > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}
.main-nav a:hover, .nav-item > a:hover { color: var(--teal); background: var(--teal-light); }
.nav-item.active > a, .main-nav a.active { color: var(--teal); font-weight: 600; }
.dropdown-arrow { transition: transform 0.2s; }

/* Dropdowns — both conventions */
.nav-dropdown, .has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 0;
    min-width: 240px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    z-index: 200;
    list-style: none;
}
.nav-dropdown:hover > .dropdown-menu,
.has-dropdown:hover > .dropdown-menu,
.nav-item.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a, .dropdown-menu li a {
    display: block;
    padding: 8px 20px !important;
    font-size: 13px !important;
    color: var(--body) !important;
    border-radius: 0 !important;
    background: none !important;
}
.dropdown-menu a:hover, .dropdown-menu li a:hover {
    background: var(--bg-light) !important;
    color: var(--teal) !important;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-light);
    color: var(--teal);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}
.header-phone svg { flex-shrink: 0; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); cursor: pointer; transition: all 0.3s; border: none; text-decoration: none; }
.btn-primary {
    background: var(--teal);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}
.btn-primary:hover { background: #158575; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,143,127,0.3); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-outline {
    background: transparent;
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-white {
    background: var(--white);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ===== HERO ===== */
.hero { background: var(--cream); padding: 60px 0 50px; }
.bg-cream { background: var(--cream); }
.hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-light);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.star-icon { color: var(--gold); }
.hero-content h1, .hero h1 { font-size: 48px; margin-bottom: 16px; line-height: 1.15; }
.hero-description, .hero p { font-size: 17px; color: var(--body); margin-bottom: 24px; max-width: 520px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img { width: 100%; max-width: 420px; border-radius: 20px; }

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.floating-card-top { top: 20px; left: -20px; }
.floating-card-bottom { bottom: 24px; right: -10px; }
.floating-card-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.floating-card-icon.teal { background: var(--teal-light); color: var(--teal); }
.floating-card-icon.gold { background: var(--gold-light); color: var(--gold); }
.floating-card strong { font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--dark); display: block; }
.floating-card span { font-size: 11px; color: var(--muted); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number, .stat-num { font-size: 32px; font-weight: 800; color: var(--navy); font-family: var(--sans); display: block; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ===== TRUST STRIP ===== */
.trust-strip { padding: 24px 0; background: var(--white); }
.trust-grid { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border);
}
.trust-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.trust-icon.teal { background: var(--teal-light); color: var(--teal); }
.trust-icon.gold { background: var(--gold-light); color: var(--gold); }
.trust-icon.navy { background: #EBF0F5; color: var(--navy); }
.trust-label { font-size: 14px; font-weight: 600; color: var(--dark); }

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--navy); }
.bg-white { background: var(--white); }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header-light .section-title { color: var(--white); }
.section-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: var(--sans);
}
.section-tag-light { color: var(--gold) !important; }
.section-title { font-size: 36px; margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: rgba(255,255,255,0.6); margin-top: 6px; }
.section-desc { font-size: 16px; color: var(--body); max-width: 600px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 36px; }

/* ===== PROCEDURE CARDS ===== */
.procedures-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.procedure-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.procedure-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); border-color: var(--teal); }
.procedure-card-image { position: relative; overflow: hidden; }
.procedure-card-image img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.4s; }
.procedure-card:hover .procedure-card-image img { transform: scale(1.05); }
.procedure-number {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}
.procedure-card-body { padding: 20px; }
.procedure-card-body h3 { font-size: 20px; margin-bottom: 8px; }
.procedure-card-body p { font-size: 14px; margin-bottom: 14px; line-height: 1.6; }
.link-arrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}
.link-arrow:hover { gap: 8px; }

/* Also support services-grid for inner pages */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.service-card .card-img { width: 100%; height: 180px; object-fit: cover; }
.service-card .card-body { padding: 20px; }
.service-card .card-num { font-size: 12px; color: var(--muted); font-weight: 700; }
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card p { font-size: 14px; margin-bottom: 14px; }
.card-link { font-size: 13px; font-weight: 700; color: var(--teal); }

/* ===== CONDITIONS ===== */
.conditions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.condition-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    transition: all 0.3s;
}
.condition-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.condition-card img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.4s; }
.condition-card:hover img { transform: scale(1.05); }
.condition-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.condition-card-overlay h3 { color: var(--white); font-size: 16px; }
.conditions-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }
.condition-pill {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--body);
    transition: all 0.3s;
}
.condition-pill:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 28px;
}
.testimonial-stars, .stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote, .testimonial-card blockquote {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-author, .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author img, .author img {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.15);
}
.testimonial-author strong, .author h4 { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--white); display: block; }
.testimonial-author span, .author span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ===== AWARDS ===== */
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.award-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.3s;
}
.award-item:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.award-icon { flex-shrink: 0; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.award-icon img { width: 56px; height: 56px; border-radius: 8px; object-fit: contain; }
.award-info h3 { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--dark); }
.award-info p, .award-item span { font-size: 12px; color: var(--muted); margin-top: 2px; }
/* About page variant */
.award-item h4 { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--dark); }
.award-item img { height: 40px; width: auto; object-fit: contain; }

/* ===== DIET PLANS ===== */
.diet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.diet-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}
.diet-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.diet-emoji { font-size: 36px; display: block; margin-bottom: 14px; }
.diet-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 14px; }
.diet-card h3 { font-size: 18px; margin-bottom: 8px; }
.diet-card p { font-size: 13px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--teal), var(--navy)); padding: 48px 0; }
.cta-banner-inner, .cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.cta-banner-text h2, .cta-banner h2 { color: var(--white); font-size: 30px; margin-bottom: 6px; }
.cta-banner-text p, .cta-banner p { color: rgba(255,255,255,0.7); font-size: 16px; margin: 0; }
.cta-banner-buttons, .cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== LOCATION ===== */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 36px; align-items: start; }
.location-info h3 { font-size: 22px; margin-bottom: 20px; }
.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}
.location-detail svg { flex-shrink: 0; margin-top: 2px; }
.location-detail h4 { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--dark); }
.location-detail p { font-size: 13px; color: var(--body); margin: 0; }
.location-map { border-radius: 12px; overflow: hidden; height: 300px; border: 1px solid var(--border); }
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4, .site-footer h4 { color: var(--white); font-family: var(--sans); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-about p, .footer-col p, .site-footer p { font-size: 14px; line-height: 1.8; }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 36px; filter: brightness(0) invert(1); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a, .footer-links li a { display: block; font-size: 13px; padding: 5px 0; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-contact-item svg, .footer-contact-item i { flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a, .footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover, .footer-legal a:hover { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0D5A80 100%);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { color: var(--white); font-size: 42px; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ===== CONTENT PAGES ===== */
.content-section { padding: 60px 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.content-main h2 { font-size: 28px; margin-bottom: 12px; margin-top: 32px; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.content-main ul, .content-main ol { margin-bottom: 16px; padding-left: 20px; list-style: disc; }
.content-main ol { list-style: decimal; }
.content-main li { margin-bottom: 6px; font-size: 15px; line-height: 1.7; }
.content-main img { border-radius: 12px; margin-bottom: 20px; }
.content-main h3 { font-size: 22px; margin-top: 24px; margin-bottom: 10px; }

/* Sidebar */
.sidebar-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 18px; margin-bottom: 14px; }
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    margin-bottom: 4px;
}
.sidebar-link:hover, .sidebar-link.active { background: var(--teal-light); color: var(--teal); font-weight: 600; }
.sidebar-cta {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
}
.sidebar-cta h3 { color: var(--white); font-size: 20px; margin-bottom: 6px; }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.sidebar-cta .phone { font-size: 22px; font-weight: 800; font-family: var(--sans); color: var(--white); display: block; margin-bottom: 12px; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 16px; width: 100%; }
.about-exp-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--teal);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 10px;
    text-align: center;
    font-family: var(--sans);
}
.about-exp-badge .num { font-size: 28px; font-weight: 800; display: block; }
.about-exp-badge span { font-size: 11px; }
.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.cred-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}
.cred-item .ci { color: var(--teal); }

/* Education */
.edu-timeline { margin-top: 24px; }
.edu-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.edu-item:last-child { border-bottom: none; }
.edu-dot {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: var(--teal-light);
    color: var(--teal);
}
.edu-item h4 { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--dark); }
.edu-item p { font-size: 13px; color: var(--body); margin: 0; }
.edu-item span { font-size: 12px; color: var(--muted); }

/* Hospital Logos */
.hospital-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 24px; }
.hospital-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: all 0.3s;
}
.hospital-item:hover { border-color: var(--teal); }
.hospital-item img { max-height: 40px; width: auto; object-fit: contain; opacity: 0.7; transition: opacity 0.3s; }
.hospital-item:hover img { opacity: 1; }
.hospital-item p { font-size: 13px; font-weight: 600; color: var(--body); text-align: center; }

/* ===== CONTACT PAGE ===== */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}
.contact-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.contact-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
    background: var(--teal-light);
    color: var(--teal);
}
.contact-card h3 { font-size: 16px; margin-bottom: 4px; }
.contact-card p { font-size: 13px; }
.contact-card a { color: var(--teal); font-weight: 600; }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--sans);
    background: var(--bg-light);
    color: var(--dark);
    transition: border-color 0.3s;
}
.form-control:focus { outline: none; border-color: var(--teal); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { appearance: auto; }

/* Hours */
.hours-table { width: 100%; font-size: 14px; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 8px 0; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--dark); }

/* ===== REVIEWS PAGE ===== */
.reviews-hero-stat { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 16px; }
.big-num { font-size: 48px; font-weight: 800; color: var(--white); font-family: var(--sans); }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}
.review-card .stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.review-card blockquote { font-size: 14px; line-height: 1.8; margin-bottom: 16px; font-style: italic; color: var(--body); }
.review-card .author { display: flex; align-items: center; gap: 10px; }
.review-card .author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review-card .author h4 { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--dark); }
.review-card .author span { font-size: 12px; color: var(--muted); }

/* ===== FONT AWESOME SUPPORT ===== */
.fas { font-size: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content h1, .hero h1 { font-size: 38px; }
    .procedures-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .conditions-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .hospital-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .announce-bar .sep, .announcement-bar .sep, .hide-mobile { display: none; }
    .main-nav, .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 16px;
        flex-direction: column;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    .main-nav.open, .nav-list.open { display: flex; }
    .mobile-toggle { display: flex; }
    .header-phone { display: none; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin: 0 auto 24px; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    .hero-content h1, .hero h1 { font-size: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .procedures-grid, .services-grid, .testimonials-grid, .review-cards { grid-template-columns: 1fr; }
    .conditions-grid, .diet-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .cta-banner-inner, .cta-inner { flex-direction: column; text-align: center; }
    .cta-banner-buttons, .cta-btns { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .section { padding: 40px 0; }
    .page-hero h1 { font-size: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .hospital-grid { grid-template-columns: repeat(2, 1fr); }
    .credentials-grid { grid-template-columns: 1fr; }
    .awards-grid { grid-template-columns: 1fr; }
    .trust-grid { gap: 8px; }
    .trust-item { padding: 10px 14px; }
    .floating-card { display: none; }
}

@media (max-width: 480px) {
    .hero-content h1, .hero h1 { font-size: 28px; }
    .conditions-grid, .diet-grid, .contact-cards { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 28px; }
}
