/* ============================================================
   MALANI HOSPITAL — Shared Stylesheet (multi-page site)
   ============================================================ */
:root {
  --navy:    #0b1f4a;
  --royal:   #1a3d8f;
  --blue:    #2557d6;
  --sky:     #e8eef8;
  --gold:    #b8922a;
  --gold-lt: #f5e9cf;
  --white:   #ffffff;
  --off:     #f4f6fb;
  --text:    #1c2b3a;
  --muted:   #5a6e82;
  --border:  #d0daea;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--off); color: var(--text); line-height: 1.65; }
img { max-width: 100%; display: block; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.7);
  font-size: .78rem; padding: 7px 5%;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
}
.topbar a { color: rgba(255,255,255,.7); text-decoration: none; }
.topbar span { margin-right: 20px; }

/* ── NOTIFICATION MARQUEE ── */
.notice-bar { background: var(--gold-lt); border-bottom: 1px solid var(--border); overflow: hidden; padding: 8px 0; }
.notice-inner {
  display: flex; gap: 52px; white-space: nowrap; width: max-content;
  animation: scroll-left 26s linear infinite;
  font-size: .8rem; font-weight: 600; color: #7a5a10;
}
.notice-inner span::before { content: '🔔 '; }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  box-shadow: 0 2px 16px rgba(11,31,74,.10);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; padding: 14px 0; }
.logo-emblem { width: 44px; height: 44px; border-radius: 8px; object-fit: contain; background: #fff; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.logo-text .tagline { font-size: .63rem; color: var(--muted); letter-spacing: 1.2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a { color: var(--text); text-decoration: none; font-size: .84rem; font-weight: 500; transition: color .2s; position: relative; padding: 22px 0; display: block; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--blue); transition: width .25s; }
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue); font-weight: 700; }
.nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--royal); color: var(--white) !important; padding: 9px 20px; border-radius: 5px; font-weight: 600 !important; margin-left: 4px; transition: background .2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy) !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--navy); cursor: pointer; padding: 8px; }

/* ── UTILITY / BACK-HOME BAR ── */
.util-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--off); border-bottom: 1px solid var(--border);
  padding: 10px 5%; font-size: .82rem; gap: 12px; flex-wrap: wrap;
}
.util-bar .crumbs { color: var(--muted); }
.util-bar .crumbs strong { color: var(--navy); }
.util-actions { display: flex; gap: 10px; }
.util-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border); color: var(--navy);
  padding: 6px 15px; border-radius: 20px; font-weight: 600; text-decoration: none;
  font-size: .78rem; transition: all .2s; cursor: pointer; font-family: 'Inter', sans-serif;
}
.util-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--sky); }

/* ── HERO (home) ── */
.hero {
  background: linear-gradient(105deg, var(--navy) 0%, var(--royal) 55%, #1e4fc2 100%);
  color: var(--white); padding: 76px 5% 70px;
  display: flex; align-items: center; gap: 56px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; right: -120px; top: -120px; width: 520px; height: 520px; border-radius: 50%; border: 80px solid rgba(255,255,255,.04); }
.hero::after { content: ''; position: absolute; right: 160px; bottom: -80px; width: 240px; height: 240px; border-radius: 50%; border: 40px solid rgba(255,255,255,.04); }
.hero-text { flex: 1; min-width: 300px; max-width: 600px; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(184,146,42,.5); color: #e8c76a; padding: 5px 16px; border-radius: 30px; font-size: .72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; white-space: nowrap;
width: fit-content; }
.hero-badge span{
    display:inline-block;
    white-space:nowrap;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: #e8c76a; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.15; margin-bottom: 10px; font-weight: 700; }
.hero-loc { font-size: .9rem; opacity: .6; margin-bottom: 18px; letter-spacing: .5px; }
.hero-desc { font-size: 1rem; opacity: .8; margin-bottom: 32px; max-width: 480px; line-height: 1.75; font-weight: 300; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--white); padding: 13px 28px; border-radius: 5px; font-weight: 600; font-size: .9rem; text-decoration: none; transition: background .2s, transform .15s; letter-spacing: .3px; display: inline-block; }
.btn-primary:hover { background: #9e7a20; transform: translateY(-1px); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.4); color: var(--white); padding: 12px 28px; border-radius: 5px; font-weight: 500; font-size: .9rem; text-decoration: none; transition: all .2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.hero-image-wrap { flex-shrink: 0; position: relative; z-index: 1; }
.hero-image-frame {
  width: 360px; max-width: 88vw; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4); border: 5px solid rgba(255,255,255,.15);
  position: relative;
}
.hero-image-frame img { width: 100%; height: 460px; object-fit: cover; display: block; }
.hero-image-badge {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--navy); padding: 10px 22px; border-radius: 30px;
  font-size: .78rem; font-weight: 700; box-shadow: 0 8px 24px rgba(11,31,74,.25);
  white-space: nowrap; display: flex; align-items: center; gap: 6px;
}

/* ── BIG BUILDING BANNER (home) ── */
.building-banner { position: relative; }
.building-banner img { width: 100%; height: 460px; object-fit: cover; object-position: center 25%; filter: brightness(.9); }
.building-banner-overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,31,74,.88) 0%, rgba(11,31,74,.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 40px 5%;
}
.building-banner-overlay h2 { font-family: 'Cormorant Garamond', serif; color: white; font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 6px; }
.building-banner-overlay p { color: rgba(255,255,255,.8); font-size: .9rem; max-width: 560px; }

/* ── STRIP ── */
.strip { background: var(--gold); overflow: hidden; padding: 11px 0; }
.strip-inner { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: scroll-left 24s linear infinite; font-size: .8rem; font-weight: 600; color: var(--white); letter-spacing: .5px; }
.strip-inner span::before { content: '◆ '; font-size: .6rem; opacity: .7; }

/* ── TRUST BAR ── */
.trust { background: var(--white); padding: 28px 5%; display: flex; gap: 0; justify-content: center; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.trust-item { flex: 1; min-width: 140px; max-width: 220px; text-align: center; padding: 10px 24px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-item .t-icon { font-size: 1.6rem; margin-bottom: 6px; }
.trust-item .t-val { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--royal); }
.trust-item .t-lbl { font-size: .75rem; color: var(--muted); font-weight: 500; }

/* ── COMMON SECTION ── */
section { padding: 68px 5%; }
.section-label { font-size: .7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem, 2.8vw, 2.4rem); color: var(--navy); margin-bottom: 14px; font-weight: 700; line-height: 1.2; }
.section-sub { color: var(--muted); max-width: 560px; margin-bottom: 40px; font-size: .92rem; line-height: 1.7; }
.section-line { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 18px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(105deg, var(--navy) 0%, var(--royal) 60%, #1e4fc2 100%);
  color: var(--white); padding: 54px 5% 46px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; right: -100px; top: -100px; width: 320px; height: 320px; border-radius: 50%; border: 60px solid rgba(255,255,255,.05); }
.page-hero .section-label { color: #e8c76a; justify-content: center; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 10px; font-weight: 700; position: relative; z-index: 1; }
.page-hero p { opacity: .78; font-size: .92rem; max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }

/* ── SERVICES ── */
.services-wrap { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.service-card { border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px; background: var(--off); transition: all .28s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--blue); transform: scaleY(0); transition: transform .28s; transform-origin: bottom; }
.service-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(37,87,214,.12); transform: translateY(-3px); background: var(--white); }
.service-card:hover::before { transform: scaleY(1); }
.svc-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.service-card h3 { font-size: .98rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.service-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.service-card .svc-more { font-size: .76rem; color: var(--blue); font-weight: 600; }

/* ── ABOUT ── */
.about-wrap { background: var(--sky); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 44px rgba(11,31,74,.18); position: relative; }
.about-visual img { width: 100%; height: 420px; object-fit: cover; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.a-badge { background: var(--white); border: 1px solid var(--border); color: var(--navy); padding: 5px 14px; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; }
.about-list .al-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-top: 2px; }
.about-list .al-text h4 { font-weight: 600; font-size: .95rem; color: var(--navy); margin-bottom: 3px; }
.about-list .al-text p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

.mv-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; margin-top: 10px; }
.mv-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 26px 22px; }
.mv-card .mv-icon { font-size: 1.7rem; margin-bottom: 10px; }
.mv-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.mv-card p { color: var(--muted); font-size: .85rem; line-height: 1.7; }

/* ── DOCTORS ── */
.doctors-wrap { background: var(--white); }
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; }
.doctor-card { background: var(--off); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: all .25s; }
.doctor-card:hover { box-shadow: 0 10px 36px rgba(11,31,74,.14); transform: translateY(-3px); }
.doc-header { background: linear-gradient(135deg, var(--sky), #d4dffa); height: 120px; display: flex; align-items: center; justify-content: center; font-size: 3.2rem; }
.doc-body { padding: 20px 18px; }
.doc-body h3 { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 1rem; }
.doc-spec { font-size: .8rem; color: var(--blue); font-weight: 600; margin-bottom: 8px; letter-spacing: .3px; }
.doc-body p { font-size: .78rem; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.doc-avail { display: inline-flex; align-items: center; gap: 5px; background: #e8f5ee; color: #1a6b4a; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.doc-avail::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #1a6b4a; }
.ot-feature { background: var(--navy); border-radius: 16px; padding: 0; overflow: hidden; display: grid; grid-template-columns: 220px 1fr; align-items: stretch; margin-top: 48px; }
.ot-feature img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.ot-feature-text { padding: 32px 30px; color: white; }
.ot-feature-text .section-label { color: #e8c76a; }
.ot-feature-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 10px; }
.ot-feature-text p { font-size: .88rem; opacity: .78; line-height: 1.75; }

/* ── FACILITIES ── */
.facilities-wrap { background: var(--navy); }
.facilities-wrap .section-label { color: var(--gold); }
.facilities-wrap .section-title { color: var(--white); }
.facilities-wrap .section-sub { color: rgba(255,255,255,.55); }
.facilities-wrap .section-line { background: var(--gold); }
.fac-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.fac-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 22px 18px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; transition: background .25s; }
.fac-card:hover { background: rgba(255,255,255,.13); }
.fac-card .fic { font-size: 1.8rem; }
.fac-card span { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.85); }
.fac-card p { font-size: .76rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ── GALLERY ── */
.gallery-wrap { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.gallery-item { border-radius: 14px; overflow: hidden; position: relative; border: 1px solid var(--border); background: var(--off); }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; transition: transform .4s; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(11,31,74,.88), transparent); color: white; padding: 30px 16px 12px; font-size: .82rem; font-weight: 600; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 380px; }

/* ── REVIEWS ── */
.reviews-wrap { background: var(--white); }
.rating-hero { background: linear-gradient(110deg, var(--navy), var(--royal)); border-radius: 14px; padding: 32px 36px; display: flex; align-items: center; gap: 36px; margin-bottom: 40px; color: white; flex-wrap: wrap; }
.rating-big { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 700; color: #e8c76a; line-height: 1; }
.rating-stars { color: #e8c76a; font-size: 1.3rem; margin-bottom: 4px; }
.rating-sub { font-size: .85rem; opacity: .7; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.review-card { background: var(--off); border-radius: 12px; padding: 24px 22px; border: 1px solid var(--border); position: relative; }
.review-card::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--blue); opacity: .15; position: absolute; top: -8px; left: 16px; line-height: 1; }
.rev-stars { color: var(--gold); font-size: .95rem; margin-bottom: 10px; }
.rev-text { font-size: .88rem; color: var(--text); line-height: 1.75; margin-bottom: 16px; font-style: italic; position: relative; z-index: 1; }
.rev-author { font-size: .78rem; font-weight: 600; color: var(--muted); }

/* ── APPOINTMENT ── */
.appt-wrap { background: var(--sky); }
.appt-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.appt-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.appt-info-item { display: flex; gap: 14px; margin-bottom: 18px; }
.appt-info-item .ai-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.appt-info-item .ai-text strong { display: block; font-size: .78rem; color: var(--muted); font-weight: 500; margin-bottom: 2px; }
.appt-info-item .ai-text span { font-size: .9rem; color: var(--navy); font-weight: 600; }
.appt-form-box { background: var(--white); border-radius: 14px; padding: 36px 32px; box-shadow: 0 4px 24px rgba(11,31,74,.09); border: 1px solid var(--border); }
.appt-form-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 22px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: .75rem; font-weight: 600; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 7px;
  font-family: 'Inter', sans-serif; font-size: .88rem; color: var(--text);
  outline: none; transition: border-color .2s, box-shadow .2s; background: var(--off);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,87,214,.1); background: white; }
.form-field textarea { resize: vertical; min-height: 90px; }
.btn-submit { width: 100%; background: var(--royal); color: var(--white); border: none; padding: 14px; border-radius: 7px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: background .2s; margin-top: 6px; letter-spacing: .3px; font-family: 'Inter', sans-serif; }
.btn-submit:hover { background: var(--navy); }
#appt-success { display: none; background: #e8f5ee; border: 1.5px solid #1a6b4a; color: #1a6b4a; padding: 14px 18px; border-radius: 8px; font-size: .88rem; font-weight: 600; margin-top: 14px; text-align: center; }

/* ── CONTACT ── */
.contact-wrap { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; }
.contact-card { background: var(--navy); border-radius: 14px; padding: 36px 32px; color: white; }
.contact-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 24px; }
.c-item { display: flex; gap: 14px; margin-bottom: 20px; }
.c-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.c-item strong { display: block; font-size: .7rem; opacity: .55; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }
.c-item p { font-size: .9rem; opacity: .9; }
.map-frame { border-radius: 14px; overflow: hidden; border: 2px solid var(--border); height: 100%; min-height: 340px; }
.map-frame iframe { width: 100%; height: 100%; border: none; min-height: 340px; }

/* ── CTA BAND (used on inner pages) ── */
.cta-band { background: linear-gradient(105deg, var(--navy), var(--royal)); color: white; text-align: center; padding: 56px 5%; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 12px; }
.cta-band p { opacity: .75; margin-bottom: 24px; font-size: .92rem; }
.cta-band .hero-actions { justify-content: center; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,.55); }
.footer-main { padding: 52px 5% 36px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .fb-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .fb-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: white; font-weight: 700; }
.footer-brand p { font-size: .82rem; line-height: 1.75; }
.footer-col h4 { color: white; font-size: .82rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .83rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 5%; display: flex; justify-content: space-between; align-items: center; font-size: .75rem; flex-wrap: wrap; gap: 8px; }
.footer-bottom .rating-pill { background: rgba(255,255,255,.08); padding: 5px 14px; border-radius: 20px; color: #e8c76a; font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .about-grid, .appt-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .ot-feature { grid-template-columns: 1fr; }
  .ot-feature img { height: 220px; }
  .gallery-item.wide { grid-column: span 1; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  nav { flex-wrap: wrap; }
  .nav-links {
    display: none; width: 100%; flex-direction: column; gap: 0;
    border-top: 1px solid var(--border); padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .nav-cta { display: inline-block; margin: 10px 0; }
  .trust { flex-wrap: wrap; }
  .trust-item { min-width: 45%; border-right: none; border-bottom: 1px solid var(--border); padding: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .topbar .topbar-right { display: none; }
  .util-bar { justify-content: center; text-align: center; }
  .hero-image-frame img { height: 340px; }
  .building-banner img { height: 260px; }
  .float-buttons { right: 16px; bottom: 16px; gap: 12px; }
  .float-btn { width: 52px; height: 52px; }
  .float-btn svg { width: 26px; height: 26px; }
}

/* ── FLOATING SOCIAL BUTTONS (WhatsApp / Instagram) ── */
.float-buttons {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9998;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-btn svg { width: 30px; height: 30px; display: block; }
.float-btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.3);
}
.float-btn-whatsapp { background: #25D366; }
.float-btn-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
@media (max-width: 480px) {
  .float-buttons { right: 14px; bottom: 14px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn svg { width: 25px; height: 25px; }
}
