:root {
  /* --- Brand Colors --- */
  --color-primary: #32929D;
  /* signature turquoise */
  --color-secondary: #111111;
  /* deep black */
  --color-accent: #70C4C8;
  /* soft aqua highlight */

  /* --- Backgrounds --- */
  --color-bg: #F7F9F9;
  /* clean cool-white */
  --color-surface: #FFFFFF;
  --color-soft: #EAF4F4;

  /* --- Typography --- */
  --color-text: #171A1B;
  --color-muted: #687477;
  --color-white: #FFFFFF;

  /* --- RGB --- */
  --color-primary-rgb: 50, 146, 157;
  --color-accent-rgb: 112, 196, 200;

  /* --- Type --- */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Radius --- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* --- Shadows --- */
  --shadow-soft:
    0 12px 32px -16px rgba(17, 17, 17, 0.16);

  --shadow-hover:
    0 18px 40px -14px rgba(50, 146, 157, 0.28);

  --header-height: 76px;

  --primary: #32929D;
  --primary-dark: #277C86;
  --primary-light: #70C4C8;

  --dark: #111111;
  --text: #202526;
  --muted: #687477;

  --bg: #F7F9F9;
  --soft: #EAF4F4;
  --white: #FFFFFF;

  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 1rem;
  line-height: 1.65;
  padding-top: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-weight: 700;
  line-height: 1.12;
}

h2 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--color-text);
}

.text-muted-custom {
  color: var(--color-muted) !important;
}

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

a:hover {
  color: var(--color-accent);
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

@media (max-width: 767.98px) {
  .section {
    padding: 3.25rem 0;
  }

  .section-sm {
    padding: 2.25rem 0;
  }
}

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

.section-bg-tint {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.06), rgba(15, 118, 110, 0) 60%);
}

.section-kicker {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-lead {
  color: var(--color-muted);
  max-width: 62ch;
}

.container-narrow {
  max-width: 780px;
}

/* Visually-hidden helper already in Bootstrap, keep for skip-link */


/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {

  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
  box-shadow: var(--shadow-hover);
}

.btn-outline-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #06322d;
}

.btn-accent:hover {
  background: #0d9488;
  border-color: #0d9488;
  color: #06322d;
}

.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #06340f;
}

.btn-whatsapp:hover {
  background: #1ebc59;
  border-color: #1ebc59;
  color: #06340f;
}

.btn-lg-cta {
  padding: 0.85rem 1.9rem;
  font-size: 1.02rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(248, 250, 252, 1);
  backdrop-filter: blur(10px);
  z-index: 1030;
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
  transition: box-shadow .2s ease;
}
#mainNav{
  background: rgba(248, 250, 252, 1);
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px -12px rgba(15, 76, 92, 0.25);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--font-display);
  line-height: 1.1;
}

.brand-mark img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brand-text-name {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.brand-text-role {
  font-weight: 500;
  color: var(--color-muted);
  font-size: .8rem;
}

.navbar-nav .nav-link {
  color: var(--color-text);
  font-weight: 500;
  padding: .1rem 1rem;
  border-radius: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.18);
}

/* ==========================================================================
   Hero
   ========================================================================== 

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 500px at 85% -10%, rgba(20, 184, 166, 0.16), transparent 60%),
    linear-gradient(180deg, #F8FAFC 0%, #EEF6F5 100%);
}

.hero-eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: .85rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw + 0.6rem, 3.15rem);
  max-width: 15ch;
}

.hero-sub {
  color: var(--color-muted);
  font-size: 1.08rem;
  max-width: 54ch;
}

.hero-doctor-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
  position: relative;
}

.hero-doctor-photo {
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(160deg, #DCEEEC, #C7E4E1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.hero-badge {
  position: absolute;
  left: -1.25rem;
  bottom: 1.5rem;
  background: var(--color-secondary);
  color: #fff;
  padding: .85rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  max-width: 220px;
}

@media (max-width: 991.98px) {
  .hero-badge {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
}

.hero-cta-group .btn {
  min-width: 180px;
}

@media (max-width: 575.98px) {
  .hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: .65rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    min-width: 0;
  }
  
}
/* =========================
       HERO
    ========================= */

.doctor-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background:
    radial-gradient(circle at 85% 20%,
      rgba(112, 196, 200, 0.20),
      transparent 30%),
    linear-gradient(135deg,
      #F7F9F9 0%,
      #FFFFFF 55%,
      #EAF4F4 100%);
}


/* Decorative shape */

.hero-circle {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(50, 146, 157, 0.07);
  right: -180px;
  top: -160px;
}

.hero-circle-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 45px solid rgba(112, 196, 200, 0.08);
  right: 12%;
  bottom: -160px;
}


.hero-container {
  position: relative;
  z-index: 2;
  min-height: 680px;
}


/* =========================
       LEFT CONTENT
    ========================= */

.hero-content {
  padding: 80px 0;
}


.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  background: var(--soft);
  color: var(--primary-dark);

  padding: 8px 15px;
  border-radius: 50px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;

  margin-bottom: 22px;
}

.hero-label-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}


.hero-title {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -2px;

  color: var(--dark);

  margin-bottom: 24px;
}


.hero-title span {
  color: var(--primary);
}


.hero-description {
  max-width: 620px;

  font-size: 17px;
  line-height: 1.8;

  color: var(--muted);

  margin-bottom: 30px;
}


/* =========================
       BUTTONS
    ========================= */

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 14px 24px;

  border: 0;
  border-radius: 12px;

  background: var(--primary);
  color: white;

  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(50, 146, 157, .22);

  transition: .25s ease;
}


.btn-book:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
}


.btn-outline-doctor {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 22px;

  border: 1px solid #D5DEDF;
  border-radius: 12px;

  background: white;
  color: var(--dark);

  font-weight: 600;
  text-decoration: none;

  transition: .25s ease;
}


.btn-outline-doctor:hover {
  border-color: var(--primary);
  color: var(--primary);
}


/* =========================
       DOCTOR INFO
    ========================= */

.doctor-mini-info {
  display: flex;
  align-items: center;
  position: absolute;

  z-index: 4;
  gap: 10px;
  left: -30px;
  bottom: 35px;

  background: rgba(255, 255, 255, .96);

  border: 1px solid rgba(255, 255, 255, .8);

  padding: 10px 15px;

  border-radius: 12px;

  box-shadow:
    0 20px 50px rgba(17, 17, 17, .62);

  min-width: 225px;
}



.doctor-mini-info strong {
  display: block;
  font-size: 18px;
  color: var(--dark);
}


.doctor-mini-info span {
  font-size: 13px;
  color: var(--muted);
}


/* =========================
       DOCTOR IMAGE AREA
    ========================= */

.doctor-image-wrapper {
  position: relative;

  width: 100%;
  max-width: 510px;

  margin-left: auto;

  display: flex;
  justify-content: center;
  align-items: flex-end;
}


.doctor-image-bg {
  position: absolute;

  width: 450px;
  height: 450px;

  border-radius: 50%;

  background: var(--primary);

  opacity: .12;

  bottom: 20px;
}


.doctor-image {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 490px;

  height: 570px;

  object-fit: cover;
  object-position: center top;

  border-radius: 0 0 30px 30px;

  filter: saturate(.96);
}







/* =========================
       MOBILE
    ========================= */

@media (max-width: 991px) {

  .doctor-hero {
    min-height: auto;
  }

  .hero-container {
    min-height: auto;
  }

  .hero-content {
    padding: 60px 0 20px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

  .doctor-mini-info {
    justify-content: center;
    text-align: left;
    margin-bottom: 30px;
  }

  .doctor-image-wrapper {
    margin: 20px auto 90px;
    max-width: 440px;
  }

  .doctor-image {
    height: 500px;
  }

  .doctor-card {
    left: 5px;
    bottom: 30px;
  }

  .specialty-strip {
    bottom: 15px;
  }
}


@media (max-width: 575px) {

  .hero-content {
    padding: 42px 0 10px;
  }

  .hero-label {
    font-size: 11px;
  }

  .hero-title {
    font-size: 38px;
    letter-spacing: -1.2px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-book,
  .btn-outline-doctor {
    width: 100%;
  }

  .doctor-image-wrapper {
    margin-top: 25px;
    margin-bottom: 95px;
  }

  .doctor-image {
    height: 430px;
    border-radius: 0 0 24px 24px;
  }

  .doctor-image-bg {
    width: 330px;
    height: 330px;
  }

  .doctor-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    width: calc(100% - 35px);
  }

  .specialty-strip {
    padding: 13px;
  }

  .specialty-item {
    justify-content: center;
    font-size: 12px;
  }

  .doctor-mini-info {

    left: 50px;
    bottom: 35px;


  }
}

/* ==========================================================================
   Cards (trust / services / conditions)
   ========================================================================== */

.trust-card,
.service-card,
.benefit-card,
.step-card,
.condition-pill,
.faq-item {
  background: var(--color-white);
  border: 1px solid rgba(15, 76, 92, 0.08);
}

.trust-card {
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  height: 100%;
  border-top: 3px solid var(--color-accent);
  transition: transform .18s ease, box-shadow .18s ease;
}

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

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card {
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(var(--color-primary-rgb), 0.25);
}

.service-card .icon-tile {
  margin-bottom: 1.1rem;
}

.service-card p {
  color: var(--color-muted);
  flex-grow: 1;
}

.service-card .card-link {
  font-weight: 600;
  margin-top: .2rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.benefit-card {
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-card .icon-tile {
  margin-bottom: 0;
  flex-shrink: 0;
}

.step-card {
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  color: rgba(var(--color-primary-rgb), 0.18);
  margin-bottom: .35rem;
}

.condition-pill {
  border-radius: 999px;
  padding: .55rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  color: var(--color-text);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.condition-pill:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.condition-pill i {
  color: var(--color-primary);
}

.condition-pill:hover i {
  color: #fff;
}

/* ==========================================================================
   About doctor
   ========================================================================== */

.doctor-photo-frame {
    position: relative;

    width: 100%;
    max-width: 100%;

    /*
     * Image is 1400 × 1000
     * Ratio = 7 : 5
     */
    aspect-ratio: 7 / 5;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: linear-gradient(
        160deg,
        #DCEEEC,
        #C7E4E1
    );

    box-shadow: var(--shadow-soft);

    display: block;

    box-sizing: border-box;
}


/* =========================================
   IMAGE
========================================= */

.doctor-photo-frame img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    /*
     * Fill the complete frame.
     * Keeps image proportional.
     */
    object-fit: cover;

    /*
     * Your doctor is sitting in the
     * center/top area, so this prevents
     * unnecessary cropping of the head.
     */
    object-position: center center;

    max-width: none;

    border: 0;

    margin: 0;

    padding: 0;

    transition: transform .4s ease;
}


/* =========================================
   OPTIONAL HOVER
========================================= */

.doctor-photo-frame:hover img {
    transform: scale(1.02);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .doctor-photo-frame {
        aspect-ratio: 7 / 5;

        border-radius: 18px;
    }

    .doctor-photo-frame img {
        object-position: center center;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .doctor-photo-frame {

        width: 100%;

        /*
         * Keep exactly the same ratio
         * as the original 1400×1000 image.
         */
        aspect-ratio: 7 / 5;

        border-radius: 16px;

        overflow: hidden;

        margin: 0 auto;

        box-shadow:
            0 8px 25px rgba(15, 23, 42, .12);
    }


    .doctor-photo-frame img {

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center center;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .doctor-photo-frame {

        aspect-ratio: 7 / 5;

        border-radius: 14px;

    }

}

.qualification-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(var(--color-accent-rgb), 0.12);
  color: var(--color-secondary);
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .92rem;
}

/* ==========================================================================
   Location / local SEO
   ========================================================================== */

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(15, 76, 92, 0.12);
  min-height: 320px;
  background: repeating-linear-gradient(45deg, #eef6f5, #eef6f5 12px, #e4f1ef 12px, #e4f1ef 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  text-align: center;
  padding: 1.5rem;
}

.nearby-area {
  border: 1px dashed rgba(15, 76, 92, 0.3);
  border-radius: 999px;
  padding: .4rem .95rem;
  font-size: .88rem;
  color: var(--color-secondary);
  display: inline-block;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.form-label {
  font-weight: 600;
  color: var(--color-secondary);
}

.form-control,
.form-select {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 76, 92, 0.18);
  padding: .65rem .9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb), 0.15);
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #DC2626;
}

.form-success-msg {
  display: none;
}

/* ==========================================================================
   FAQ (accordion)
   ========================================================================== */

.accordion-item {
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: .85rem;
}

.accordion-button {
  font-weight: 600;
  color: var(--color-secondary);
  font-family: var(--font-display);
}

.accordion-button:not(.collapsed) {
  background: rgba(var(--color-primary-rgb), 0.06);
  color: var(--color-primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-primary-rgb), 0.15);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb-bar {
  background: var(--color-white);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
}

.breadcrumb {
  margin-bottom: 0;
  padding: .85rem 0;
  font-size: .92rem;
}

.breadcrumb-item.active {
  color: var(--color-muted);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: linear-gradient(120deg, var(--color-secondary), var(--color-primary));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 0.75rem  2.75rem;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}



/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-secondary);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 1.5rem;
}

.site-footer h6 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1.1rem;
  font-size: .98rem;
}

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

.site-footer a:hover {
  color: var(--color-accent);
}

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

.footer-list li {
  margin-bottom: .6rem;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.32);
  margin: 2rem 0 1.25rem;
  
}
.footer-divider > p {
 
  color: var(--color-soft) !important;
}
.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer-social-icon:hover {
  background: var(--color-accent);
  color: #06322d;
}

.footer-disclaimer {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.55);
}
.logofooter img{
  max-width: 200px;
  border-radius: 50%;
}



/* ==========================================================================
   Back to top
   ========================================================================== */

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1035;
  border: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (min-width: 768px) {
  .back-to-top {
    bottom: 2rem;
  }
}

/* ==========================================================================
   Reveal-on-scroll (single orchestrated pattern, subtle)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Misc content pages
   ========================================================================== */

.page-hero {
  background: linear-gradient(180deg, #F0F7F6 0%, #F8FAFC 100%);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(15, 76, 92, 0.06);
}

.content-block h2 {
  margin-top: 2.25rem;
  font-size: 1.5rem;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block ul {
  color: var(--color-muted);
}

.content-block p {
  color: var(--color-text);
}

.symptom-list li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  padding: .5rem 0;
  border-bottom: 1px dashed rgba(15, 76, 92, 0.12);
}

.symptom-list li:last-child {
  border-bottom: none;
}

.symptom-list i {
  color: var(--color-primary);
  margin-top: .2rem;
}

.disclaimer-note {
  background: rgba(var(--color-accent-rgb), 0.08);
  border: 1px solid rgba(var(--color-accent-rgb), 0.3);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  font-size: .93rem;
  color: var(--color-secondary);
}

.related-service-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 76, 92, 0.1);
  padding: 1.1rem 1.25rem;
  height: 100%;
  transition: box-shadow .15s ease, transform .15s ease;
  display: block;
}

.related-service-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

/* Table (services overview) */
.table-clean th {
  color: var(--color-secondary);
  font-family: var(--font-display);
}

/* Contact info list */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.contact-info-item .icon-tile {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .form-panel {
    padding: 1.35rem;
  }

  .cta-band {
    padding: 2rem 1.35rem;
  }
}