/* ============================================================
   Dr. Ashish Gupta Physiotherapy — custom styles
   Colors: primary #1b5fc1 | accent #28bd86 | navy #0c122d
           muted #575c74   | light #f7fdfb
   ============================================================ */
:root {
  --primary: #1b5fc1;
  --primary-dark: #124a9c;
  --primary-soft: #e8f0fb;
  --accent: #28bd86;
  --accent-dark: #1da170;
  --accent-soft: #e0f7ef;
  --navy: #0c122d;
  --navy-2: #141c3f;
  --muted: #575c74;
  --light: #f7fdfb;
  --border: #e5ecf5;
  --heading: #111c43;
  --white: #fff;
  --radius: 18px;
  --shadow-sm: 0 4px 14px rgba(13, 28, 70, .06);
  --shadow-md: 0 14px 40px rgba(13, 28, 70, .10);
  --shadow-lg: 0 24px 60px rgba(13, 28, 70, .14);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--muted);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .font-head { font-family: 'Rubik', sans-serif; color: var(--heading); }
img { max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.container-x { max-width: 1200px; margin-inline: auto; padding-inline: 20px; }
.sec-pad { padding: 90px 0; }
.sec-pad-sm { padding: 56px 0; }
.bg-light { background: var(--light); }

/* ---------- section headings ---------- */
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); color: var(--accent-dark);
  font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
}
.sec-eyebrow.blue { background: var(--primary-soft); color: var(--primary); }
.sec-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.2; margin: 14px 0 12px; }
.sec-sub { max-width: 680px; margin-inline: auto; }
.sec-head { text-align: center; margin-bottom: 46px; }
.sec-head.left { text-align: left; margin-bottom: 34px; }
.sec-head.left .sec-sub { margin-inline: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Rubik', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .25s ease; line-height: 1.2; text-align: center;
}
.btn i { font-size: 16px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(27, 95, 193, .35); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-green { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(40, 189, 134, .35); }
.btn-green:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .35); }
.btn-whatsapp:hover { background: #1eb457; color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--primary); }
.btn-sm { padding: 9px 20px; font-size: 14px; }

.topbar { background: var(--navy); color: rgba(255,255,255,.85); font-size: 13.5px; }
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: var(--accent); }
.topbar .container-x { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; padding: 6px 0; }
.topbar .tb-item i { color: var(--accent); }
.topbar .tb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--border); transition: box-shadow .3s ease; }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; object-fit: contain; }
.brand-txt { line-height: 1.15; }
.brand-txt b { font-family: 'Rubik'; color: var(--heading); font-size: 17px; display: block; }
.brand-txt span { font-size: 11.5px; color: var(--accent-dark); font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--heading); font-weight: 600; font-size: 15px; padding: 10px 14px; border-radius: 8px; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-soft); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-hamburger { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--primary-soft); color: var(--primary); font-size: 20px; cursor: pointer; }
@media (max-width: 1024px) {
  .nav-cta .btn { display: none; }
  .nav-hamburger { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-top: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 10px 20px 16px; display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 14px; border-radius: 10px; }
}
/* ---------- HERO ---------- */
.hero { position: relative; background: radial-gradient(1000px 520px at 88% -12%, #e2f1ff 0%, rgba(247,253,251,0) 62%), var(--light); overflow: hidden; }
.hero .container-x { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; padding-top: 64px; padding-bottom: 80px; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; pointer-events: none; }
.hero-shape.s1 { width: 340px; height: 340px; background: #d7ecfe; top: -140px; left: -120px; }
.hero-shape.s2 { width: 220px; height: 220px; background: #d2f4e7; bottom: -90px; right: 30%; }
.hero-shape.s3 { width: 130px; height: 130px; background: #e6f6ff; top: 40%; right: -60px; }
.hero .badge-pill { display: inline-flex; align-items: center; gap: 9px; background: var(--white); border: 1px solid #e0ecf8; color: var(--primary); font-weight: 700; font-size: 13px; padding: 9px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.hero .badge-pill i { color: var(--accent); }
.hero h1 { font-size: clamp(32px, 4.4vw, 54px); font-weight: 800; line-height: 1.14; margin-bottom: 18px; }
.hero h1 .highlight { color: var(--primary); }
.hero p.lead { font-size: 17.5px; max-width: 560px; margin-bottom: 28px; }
.hero .btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero .hero-note { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.avatar-stack { display: flex; }
.avatar-stack .av { width: 42px; height: 42px; border-radius: 50%; border: 2.5px solid var(--light); background: linear-gradient(135deg, var(--primary), #5b95e8); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; margin-left: -10px; }
.avatar-stack .av:first-child { margin-left: 0; }
.hero .stars { color: #ffb400; font-size: 14px; }
.hero-right { position: relative; display: flex; justify-content: center; }
.hero-photo { position: relative; width: min(430px, 100%); }
.hero-photo .blob { position: absolute; inset: 0; border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%; background: linear-gradient(160deg, var(--primary) 0%, #5b95e8 60%, #9ec5f4 100%); transform: rotate(-4deg); opacity: .16; }
.hero-photo .blob2 { position: absolute; width: 88%; height: 88%; top: 6%; left: 6%; border-radius: 50%; border: 2px dashed rgba(27,95,193,.35); animation: spin 30s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-photo img { position: relative; width: 100%; aspect-ratio: 1 / 1.04; object-fit: cover; border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%; border: 6px solid #fff; box-shadow: var(--shadow-lg); }
.float-card { position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 12px; font-size: 13.5px; z-index: 2; }
.float-card .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 17px; }
.float-card b { display: block; color: var(--heading); font-family: 'Rubik'; }
.float-card span { color: var(--muted); font-size: 12.5px; }
.fc-1 { top: 30px; left: -34px; animation: floaty 5s ease-in-out infinite; }
.fc-2 { bottom: 76px; right: -30px; animation: floaty 6s ease-in-out 1s infinite; }
.fc-3 { bottom: -18px; left: 4%; animation: floaty 5.5s ease-in-out .5s infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
@media (max-width: 992px) {
  .hero .container-x { grid-template-columns: 1fr; text-align: center; padding-top: 44px; }
  .hero p.lead, .hero .btn-row { margin-inline: auto; }
  .hero .btn-row, .hero .hero-note { justify-content: center; }
  .hero-right { order: -1; }
  .hero-photo { width: min(320px, 86%); }
  .fc-1 { left: -4px; } .fc-2 { right: -4px; }
}
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media .frame { position: relative; padding-bottom: 22px; padding-right: 22px; }
.about-media .frame::after { content: ""; position: absolute; inset: 22px -22px -22px 22px; border-radius: var(--radius); background: linear-gradient(150deg, var(--primary-soft), var(--accent-soft)); z-index: 0; }
.about-media img { position: relative; width: 100%; aspect-ratio: 4/4.4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); z-index: 1; }
.about-exp { position: absolute; z-index: 2; right: -14px; bottom: 8px; background: var(--primary); color: #fff; border-radius: 16px; padding: 16px 20px; text-align: center; box-shadow: var(--shadow-lg); }
.about-exp b { display: block; font-family: 'Rubik'; font-size: 30px; line-height: 1; }
.about-exp span { font-size: 12px; opacity: .9; }
.about-body h3 { font-size: clamp(23px, 2.6vw, 32px); line-height: 1.25; margin-bottom: 16px; }
.about-body p { margin-bottom: 14px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 20px 0 26px; padding: 0; list-style: none; }
.about-features li { position: relative; padding-left: 30px; font-weight: 600; color: var(--heading); }
.about-features li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-size: 11px; display: grid; place-items: center; }
.about-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.about-sign { font-family: 'Rubik'; color: var(--heading); font-weight: 700; }
.about-sign span { display: block; color: var(--muted); font-weight: 400; font-size: 13px; font-family: 'Open Sans'; }
@media (max-width: 992px) { .about-grid { grid-template-columns: 1fr; gap: 60px; } .about-media { max-width: 480px; margin-inline: auto; } }
/* counters */
.counters { position: relative; background: linear-gradient(120deg, var(--navy) 0%, #14306b 60%, var(--primary) 120%); overflow: hidden; }
.counters::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 26px 26px; }
.counter-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; padding: 56px 0; text-align: center; }
.counter-box { color: #fff; }
.counter-box .num { font-family: 'Rubik'; font-size: clamp(34px, 4vw, 52px); font-weight: 800; line-height: 1.1; }
.counter-box .num span.suffix { color: var(--accent); }
.counter-box .lbl { opacity: .85; font-size: 14.5px; font-weight: 600; margin-top: 4px; }
.counter-box .icon-circle { width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; font-size: 24px; color: var(--accent); }
@media (max-width: 900px) { .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; } }
/* treat rows */
.treat-card { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 44px; background: var(--white); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: box-shadow .3s ease, transform .3s ease; }
.treat-card + .treat-card { margin-top: 28px; }
.treat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.treat-card.flip .treat-media { order: 2; }
.treat-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.treat-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .6s ease; }
.treat-card:hover .treat-media img { transform: scale(1.05); }
.treat-media .icon-badge { position: absolute; left: 16px; bottom: 16px; width: 52px; height: 52px; border-radius: 14px; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 22px; box-shadow: var(--shadow-md); }
.treat-body .treat-title { font-size: 25px; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.treat-body .treat-desc p { margin-bottom: 12px; }
.treat-body .treat-points { list-style: none; padding: 0; margin: 4px 0 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.treat-body .treat-points li { position: relative; padding-left: 26px; font-size: 14.5px; }
.treat-body .treat-points li::before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--accent); font-size: 15px; }
@media (max-width: 900px) { .treat-card { grid-template-columns: 1fr; } .treat-card.flip .treat-media { order: 0; } .treat-body .treat-points { grid-template-columns: 1fr; } }
/* specialty cards */
.sp-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.sp-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; border: 1px solid var(--border); }
.sp-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.sp-card .sp-info { position: absolute; inset: auto 0 0 0; padding: 30px 14px 12px; background: linear-gradient(transparent, rgba(10,16,40,.92)); color: #fff; }
.sp-card .sp-info .sp-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; font-size: 16px; color: #fff; margin-bottom: 8px; }
.sp-card .sp-info h4 { color: #fff; font-size: 15.5px; margin: 0 0 6px; }
.sp-card .sp-info p { color: rgba(255,255,255,.85); font-size: 12.5px; margin: 0; }
.sp-card details { position: absolute; inset: auto 0 0 0; }
.sp-card details summary { list-style: none; cursor: pointer; padding: 8px 14px; background: rgba(255,255,255,.16); color: #fff; font-size: 13px; font-weight: 700; text-align: center; backdrop-filter: blur(4px); }
.sp-card details summary::-webkit-details-marker { display: none; }
.sp-card details .sp-more { background: #fff; padding: 14px; color: var(--muted); font-size: 13.5px; }
.sp-card details .sp-more ul { margin: 8px 0 0; padding-left: 18px; }
@media (max-width: 1100px) { .sp-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .sp-cards { grid-template-columns: repeat(2, 1fr); } }
/* ---------- REVIEWS ---------- */
.reviews { position: relative; background: radial-gradient(900px 400px at 10% 0%, #dff6ec 0%, rgba(247,253,251,0) 55%), var(--light); overflow: hidden; }
.tslider { position: relative; max-width: 860px; margin: 0 auto; }
.t-track { overflow: hidden; border-radius: 22px; }
.t-slides { display: flex; transition: transform .55s ease; }
.t-slide { flex: 0 0 100%; padding: 8px; }
.t-card { background: var(--white); border-radius: 20px; padding: 40px 42px; box-shadow: var(--shadow-md); text-align: center; position: relative; }
.t-card::before { content: "\f10d"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 26px; left: 30px; font-size: 40px; color: var(--accent-soft); }
.t-card .q { font-size: 17px; line-height: 1.85; color: #3c435e; font-style: italic; margin-bottom: 22px; }
.t-card .who { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-card .av { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #5b95e8); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: 'Rubik'; font-size: 19px; }
.t-card .nm { font-family: 'Rubik'; font-weight: 700; color: var(--heading); }
.t-card .loc { font-size: 13px; color: var(--muted); }
.t-card .stars { color: #ffb400; font-size: 14px; margin-top: 4px; }
.t-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 26px; }
.t-arrow { width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--white); color: var(--primary); box-shadow: var(--shadow-sm); cursor: pointer; font-size: 16px; transition: all .25s; }
.t-arrow:hover { background: var(--primary); color: #fff; }
.t-dots { display: flex; gap: 8px; }
.t-dot { width: 9px; height: 9px; border-radius: 99px; border: 0; background: #c9d4e6; cursor: pointer; padding: 0; transition: all .3s; }
.t-dot.active { width: 26px; background: var(--accent); }
@media (max-width: 640px) { .t-card { padding: 30px 22px; } }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; background: linear-gradient(115deg, var(--primary) 0%, #1f4a97 55%, var(--navy) 120%); overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -70px; top: -70px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.07); }
.cta-band .inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 52px 0; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); margin: 0 0 8px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; max-width: 620px; }
.cta-band .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 46px; align-items: start; }
.contact-info-card { display: flex; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.contact-info-card + .contact-info-card { margin-top: 16px; }
.contact-info-card .ci { flex: 0 0 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 20px; background: var(--primary-soft); color: var(--primary); }
.contact-info-card.green .ci { background: var(--accent-soft); color: var(--accent-dark); }
.contact-info-card h4 { margin: 0 0 4px; font-size: 16px; }
.contact-info-card p { margin: 0; font-size: 14.5px; word-break: break-word; }
.contact-info-card a { font-weight: 600; }
.map-wrap { margin-top: 16px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); line-height: 0; }
.map-wrap iframe { width: 100%; height: 240px; border: 0; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 34px; box-shadow: var(--shadow-md); }
.form-card h3 { margin: 0 0 6px; font-size: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { display: block; font-weight: 600; color: var(--heading); font-size: 14px; margin-bottom: 6px; }
.form-label .req { color: #e11d48; }
.form-input, .form-select, .form-textarea {
  width: 100%; border: 1.5px solid var(--border); background: #fbfdff; border-radius: 12px;
  padding: 12px 15px; font-size: 15px; color: var(--heading); font-family: inherit;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(27,95,193,.10); background: #fff; }
.form-textarea { min-height: 130px; resize: vertical; }
@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

/* ---------- ALERTS / FLASH ---------- */
.alert { display: flex; gap: 10px; align-items: flex-start; border-radius: 14px; padding: 14px 16px; font-size: 15px; margin-bottom: 16px; border: 1px solid; }
.alert i { margin-top: 3px; }
.alert-success { background: #eafaf3; color: #166534; border-color: #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.alert-warning { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.alert-close { margin-left: auto; background: none; border: 0; font-size: 20px; line-height: 1; cursor: pointer; opacity: .6; color: inherit; }
/* ---------- FOOTER ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.78); font-size: 15px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 70px 0 46px; }
.footer-top h4 { color: #fff; font-size: 17px; margin: 0 0 18px; position: relative; padding-bottom: 10px; }
.footer-top h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; border-radius: 3px; background: var(--accent); }
.footer-brand img { height: 56px; margin-bottom: 14px; }
.footer-brand p { font-size: 14.5px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.78); display: inline-flex; gap: 9px; align-items: center; }
.footer-links a:hover { color: var(--accent); padding-left: 3px; }
.footer-links a i { font-size: 11px; color: var(--accent); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 13px; align-items: flex-start; }
.footer-contact i { color: var(--accent); margin-top: 5px; }
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: var(--accent); }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center; font-size: 15px; border: 1px solid rgba(255,255,255,.12); transition: all .25s; }
.social-row a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: 14px; }
.footer-bottom .container-x { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.9); }
@media (max-width: 992px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- FLOATING WHATSAPP / CALL ---------- */
.fab-wrap { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-size: 26px; color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.22); transition: transform .25s; }
.fab:hover { transform: scale(1.08); color: #fff; }
.fab-wa { background: #25d366; }
.fab-call { background: var(--primary); font-size: 20px; }
.fab-wa::after { content: ""; position: absolute; width: 54px; height: 54px; border-radius: 50%; background: #25d366; z-index: -1; animation: waPulse 2s infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .6 } 100% { transform: scale(1.6); opacity: 0 } }

/* ---------- INNER PAGE HERO ---------- */
.page-hero { background: linear-gradient(120deg, var(--navy), var(--primary)); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 340px; height: 340px; border-radius: 50%; border: 34px solid rgba(255,255,255,.05); }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); margin: 8px 0 4px; }
.crumbs { font-size: 14px; color: rgba(255,255,255,.8); display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--accent); }
.crumbs i { font-size: 10px; align-self: center; }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.g-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow-sm); border: 1px solid var(--border); display: block; }
.g-item img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; display: block; transition: transform .55s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-item .g-cap { position: absolute; inset: auto 0 0 0; padding: 34px 16px 12px; background: linear-gradient(transparent, rgba(10,16,40,.92)); color: #fff; font-weight: 600; font-size: 14.5px; display: flex; align-items: center; gap: 8px; }
.g-item .g-cap i { color: var(--accent); font-size: 12px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,10,28,.93); display: none; align-items: center; justify-content: center; flex-direction: column; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 78vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox .lb-cap { color: #fff; margin-top: 16px; font-size: 16px; }
.lb-close { position: absolute; top: 22px; right: 28px; background: none; border: 0; color: #fff; font-size: 38px; cursor: pointer; line-height: 1; opacity: .8; }
.lb-close:hover { opacity: 1; }
.lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 20px; cursor: pointer; transition: background .2s; }
.lb-arrow:hover { background: var(--accent); }
.lb-prev { left: 26px; } .lb-next { right: 26px; }

/* ---------- REVEAL ON SCROLL ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }


/* small patches */
.sp-card details .sp-more ul { list-style: disc; }
noscript .reveal { opacity: 1; transform: none; }
@media (max-width: 992px) {
  .t-card .who { flex-wrap: wrap; }
  .t-card .stars { margin-left: 0 !important; width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  .topbar .tb-links { display: none; }
  .topbar .container-x { justify-content: center; }
}
::selection { background: var(--primary); color: #fff; }






