/* Pooja Eye Hospital – Premium medical theme */
:root {
  --blue-900: #0a2540;
  --blue-800: #0f3460;
  --blue-600: #1e5a8e;
  --blue-500: #2a7ab8;
  --blue-400: #4a9fd8;
  --blue-100: #e8f4fc;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-500: #64748b;
  --gray-700: #334155;
  --accent: #0d9488;
  --accent-dark: #0f766e;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--gray-50);
  line-height: 1.6;
  font-size: 1rem;
  padding-bottom: 88px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--blue-600);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--blue-900);
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
}

@media (min-width: 901px) {
  .nav-toggle {
    display: none;
  }
}

.nav-main {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  padding: 1rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
}

.nav-main.is-open {
  display: flex;
}

@media (min-width: 901px) {
  .nav-main {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }
}

.nav-main a {
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  background: var(--blue-100);
  color: var(--blue-800);
  text-decoration: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-call {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-800);
  white-space: nowrap;
}

@media (min-width: 901px) {
  .header-call {
    display: inline-flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: #fff;
  box-shadow: 0 4px 14px rgba(42, 122, 184, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 6px 20px rgba(42, 122, 184, 0.4);
}

.btn-outline {
  background: #fff;
  color: var(--blue-800);
  border: 2px solid var(--blue-500);
}

.btn-outline:hover {
  background: var(--blue-100);
  color: var(--blue-900);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  color: #fff;
  background: #1ebe57;
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 45%, var(--blue-600) 100%);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

/* Premium home: photo + gradient overlay for contrast & trust */
.hero.hero--premium {
  background-color: var(--blue-900);
  background-image: url("../images/hospital-exterior-1.png");
  background-size: cover;
  background-position: center;
  isolation: isolate;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.hero.hero--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 22, 38, 0.97) 0%,
    rgba(8, 32, 54, 0.9) 36%,
    rgba(12, 48, 78, 0.72) 58%,
    rgba(20, 72, 112, 0.45) 82%,
    rgba(42, 122, 184, 0.28) 100%
  );
  pointer-events: none;
}

.hero.hero--premium::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero--premium .hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.hero--premium h1 {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
  max-width: 22ch;
  font-size: clamp(1.75rem, 4.2vw, 2.55rem);
}

.hero--premium .hero-lead {
  max-width: 48ch;
  opacity: 1;
  font-size: 1.08rem;
  line-height: 1.55;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.hero-trustline {
  margin: 0 0 1.35rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  opacity: 0.98;
}

@media (max-width: 480px) {
  .hero-trustline {
    font-size: 0.88rem;
    line-height: 1.45;
  }
}

.btn-hero-lg {
  padding: 1rem 1.85rem;
  font-size: 1.06rem;
  font-weight: 700;
  border-radius: 12px;
  min-height: 52px;
}

.hero--premium .hero-actions .btn-primary {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.btn.btn-outline-hero {
  border: 2px solid rgba(255, 255, 255, 0.95) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.btn.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.26) !important;
  color: #fff !important;
  text-decoration: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1rem;
  backdrop-filter: blur(8px);
}

.hero-card .img-slider__slide img {
  border-radius: var(--radius-sm);
}

/* Image carousel (hero + facility) */
.img-slider {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  touch-action: pan-y;
}

.img-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.img-slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .img-slider__track {
    transition: none;
  }
}

.img-slider__slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
}

.img-slider__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.img-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 37, 64, 0.45);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}

.img-slider__btn:hover {
  background: rgba(10, 37, 64, 0.65);
}

.img-slider__btn--prev {
  left: 8px;
}

.img-slider__btn--next {
  right: 8px;
}

.img-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.25);
}

.img-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.img-slider__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.facility-slider-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.facility-slider-wrap .img-slider__btn {
  background: rgba(255, 255, 255, 0.85);
  color: var(--blue-900);
}

.facility-slider-wrap .img-slider__btn:hover {
  background: #fff;
}

.facility-slider-wrap .img-slider__dots {
  background: rgba(10, 37, 64, 0.35);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Sections */
section {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.section-title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-title h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--blue-900);
  letter-spacing: -0.02em;
}

.section-title p {
  margin: 0;
  color: var(--gray-500);
  font-size: 1rem;
}

.bg-white {
  background: var(--white);
}

.bg-light {
  background: var(--gray-100);
}

/* Trust strip */
.trust-strip {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.trust-card .icon {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.trust-card strong {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  color: var(--blue-900);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-card span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Cards grid */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

@media (min-width: 900px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.service-card,
.tech-card,
.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover,
.tech-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card .svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-100);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--blue-900);
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-500);
}

.service-card--with-photo .service-card__photo {
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card--with-photo .service-card__photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.service-card--with-photo h2 {
  margin-top: 0;
}

/* Technology showcase (home) */
.tech-showcase-section {
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
}

.section-title--tech-premium .section-lead-tech {
  font-weight: 600;
  color: var(--gray-700);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.06rem;
  line-height: 1.55;
}

.tech-showcase-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .tech-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .tech-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tech-showcase-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 37, 64, 0.07);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.tech-showcase-card__body {
  padding: 1.4rem 1.35rem 1rem;
  flex: 1;
}

.tech-showcase-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--blue-100) 0%, #f0f7fc 100%);
  border: 1px solid rgba(30, 90, 142, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 0.9rem;
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
}

.tech-showcase-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}

.tech-showcase-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--gray-500);
}

.tech-showcase-card__media {
  position: relative;
  height: 118px;
  flex-shrink: 0;
  margin-top: auto;
}

.tech-showcase-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.28) 0%, transparent 55%);
  pointer-events: none;
}

.tech-showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tech-showcase-footnote {
  text-align: center;
  max-width: 44rem;
  margin: 2rem auto 0;
  font-size: 0.98rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.cta-bar.cta-bar--vision h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
}

.cta-bar.cta-bar--vision p {
  font-size: 1.05rem;
}

.tech-card {
  text-align: center;
  padding: 1.25rem 1rem;
}

.tech-card h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1rem;
  color: var(--blue-900);
}

.tech-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.tech-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

/* About snippet */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split h2 {
  margin: 0 0 0.75rem;
  color: var(--blue-900);
  font-size: 1.65rem;
}

.split ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--gray-700);
}

.split li {
  margin-bottom: 0.35rem;
}

/* Why choose */
.why-list {
  display: grid;
  gap: 1rem;
}

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

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 37, 64, 0.06);
  box-shadow: var(--shadow-sm);
}

.why-item .check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.why-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: var(--blue-900);
}

.why-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Local SEO block */
.local-block {
  background: linear-gradient(180deg, var(--blue-100) 0%, #fff 100%);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.local-block h2 {
  margin: 0 0 1rem;
  color: var(--blue-900);
  font-size: 1.45rem;
}

.local-block p {
  margin: 0;
  color: var(--gray-700);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-card {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 37, 64, 0.06);
  box-shadow: var(--shadow-sm);
}

.detail-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-600);
}

.detail-card p,
.detail-card a {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-700);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 37, 64, 0.08);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 1.5rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 560px) {
  .footer-grid.footer-grid--sitemap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .footer-grid.footer-grid--sitemap {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: #fff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-size: 1.75rem;
  transition: transform 0.2s ease;
}

.float-wa:hover {
  transform: scale(1.06);
  text-decoration: none;
  color: #fff;
}

@media (min-width: 769px) {
  .float-wa {
    bottom: 1.5rem;
  }
}

/* Mobile call bar */
.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid rgba(10, 37, 64, 0.1);
  box-shadow: 0 -4px 20px rgba(10, 37, 64, 0.08);
}

.mobile-call-bar .btn {
  flex: 1;
  justify-content: center;
}

@media (min-width: 769px) {
  .mobile-call-bar {
    display: none;
  }
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: #fff;
  padding: 2.25rem 0 2.75rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  line-height: 1.25;
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
  max-width: 55ch;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.breadcrumb a {
  color: #fff;
  text-decoration: underline;
}

/* Prose / legal */
.prose {
  max-width: 720px;
}

.prose h2 {
  color: var(--blue-900);
  margin-top: 2rem;
  font-size: 1.35rem;
}

.prose h3 {
  color: var(--blue-800);
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.prose p,
.prose li {
  color: var(--gray-700);
}

.faq details {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.faq summary {
  font-weight: 600;
  color: var(--blue-900);
  cursor: pointer;
}

.faq details[open] summary {
  margin-bottom: 0.5rem;
}

.cta-bar {
  background: var(--blue-900);
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 2.5rem;
}

.cta-bar h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: #fff;
}

.cta-bar p {
  margin: 0 0 1rem;
  opacity: 0.9;
}

.cta-bar .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Form */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 37, 64, 0.06);
  max-width: 560px;
  margin-inline: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--blue-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(10, 37, 64, 0.15);
  border-radius: var(--radius-sm);
  font: inherit;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 1rem;
}

/* Header “Book” — premium pill */
.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.52rem 1.2rem 0.52rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  color: #fff !important;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #155a94 0%, var(--blue-500) 42%, var(--accent) 100%);
  box-shadow:
    0 4px 14px rgba(30, 90, 142, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-book:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 8px 22px rgba(13, 148, 136, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
  color: #fff !important;
  text-decoration: none !important;
}

.btn-book__icon {
  font-size: 1.05rem;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.btn-book__text {
  line-height: 1;
}

/* Appointment page */
.page-hero--appointment {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-600) 100%);
  padding-bottom: 2.5rem;
}

.page-hero__lead {
  margin: 0;
  max-width: 46ch;
  opacity: 0.94;
  font-size: 1.05rem;
  line-height: 1.55;
}

.appointment-section {
  padding: 2.25rem 0 3rem;
  margin-top: -1.5rem;
}

.appointment-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .appointment-layout {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 2rem;
  }
}

.appointment-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.appointment-aside-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: var(--shadow-sm);
}

.appointment-aside-card--wa {
  background: linear-gradient(180deg, #ecfdf5 0%, #fff 100%);
  border-color: rgba(13, 148, 136, 0.2);
}

.appointment-aside-card--muted {
  background: var(--gray-50);
}

.appointment-aside-card__title {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-600);
}

.appointment-aside-card__num {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.appointment-aside-card__num a {
  color: var(--blue-900);
  text-decoration: none;
}

.appointment-aside-card__num a:hover {
  text-decoration: underline;
}

.appointment-aside-card__hint,
.appointment-aside-card__addr {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.45;
}

.appointment-aside-card__btn {
  width: 100%;
  margin-top: 0.35rem;
  justify-content: center;
}

.appointment-aside-card__link {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}

.appointment-form-wrap {
  min-width: 0;
}

.form-card--premium {
  max-width: none;
  margin-inline: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: var(--shadow-lg);
}

.form-card__head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 1.75rem 1.25rem;
  background: linear-gradient(180deg, var(--blue-100) 0%, #fff 55%);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
}

.form-card__badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(42, 122, 184, 0.35);
}

.form-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}

.form-card__subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.appointment-form {
  padding: 1.5rem 1.75rem 1.75rem;
}

.form-row-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group .req {
  color: #c2410c;
  font-weight: 700;
}

.form-group .optional {
  font-weight: 500;
  color: var(--gray-500);
  font-size: 0.85em;
}

.form-group--captcha {
  padding: 1rem 1.1rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(10, 37, 64, 0.15);
}

.captcha-question {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.captcha-input {
  max-width: 12rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.btn-submit-appointment {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1.25rem;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 6px 20px rgba(42, 122, 184, 0.38);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-submit-appointment:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(42, 122, 184, 0.45);
  color: #fff;
  text-decoration: none;
}

.form-note--premium {
  padding: 0 1.75rem 1.5rem;
  margin-top: 0;
  border-top: 1px solid rgba(10, 37, 64, 0.06);
  padding-top: 1.1rem;
}

.appointment-tips {
  padding: 2.25rem 0 3rem;
}

.appointment-tips__heading {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 1.25rem;
  color: var(--blue-900);
}

.appointment-tips__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: grid;
  gap: 0.85rem;
}

.appointment-tips__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 37, 64, 0.06);
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  color: var(--gray-700);
}

.tip-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.alert {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.alert--success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.alert--success a {
  font-weight: 600;
}

.alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.alert--error a {
  font-weight: 600;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
