:root {
  --primary: #3f77a7;
  --secondary: #a2cff2;
  --dark: #18344d;
  --text: #34495e;
  --muted: #6f7f8f;
  --light: #f5f9fc;
  --white: #ffffff;
  --border: rgba(63, 119, 167, 0.16);
  --shadow: 0 24px 70px rgba(24, 52, 77, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir", "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 140px;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 44px;
  left:0px;
  width: 100%;
  z-index: 99;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(63, 119, 167, 0.12);
  transition: 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(24, 52, 77, 0.08);
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 230px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.nav-menu a.btn{
  color:white;
}

.nav-cta {
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #2d5f8d);
  color: var(--white) !important;
  box-shadow: 0 12px 30px rgba(63, 119, 167, 0.25);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--primary);
}

.hero {
  position: relative;
  padding: 165px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(162, 207, 242, 0.4), transparent 35%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(63, 119, 167, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 119, 167, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.hero h1,
.about h2,
.services h2,
.certifications h2,
.cta-section h2,
.contact h2 {
  margin: 0;
  font-family: "Trajan Pro", "Cormorant Garamond", Georgia, serif;
  color: var(--dark);
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 55px);
  max-width: 720px;
}

.hero p {
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #245a88);
  box-shadow: 0 18px 38px rgba(63, 119, 167, 0.26);
}

.btn-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
}

.btn-light {
  color: var(--primary);
  background: var(--white);
}

.full {
  width: 100%;
}

.hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust div {
  min-width: 145px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-trust strong {
  display: block;
  color: var(--dark);
}

.hero-trust span {
  font-size: 13px;
  color: var(--muted);
}

.hero-card {
  position: relative;
}

.doctor-card {
  padding: 18px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.doctor-image {
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #dcecf7, #ffffff);
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-info {
  margin-top: -75px;
  margin-inline: 22px;
  position: relative;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 45px rgba(24, 52, 77, 0.14);
}

.doctor-info img {
  width: 210px;
  margin-bottom: 12px;
}

.doctor-info p {
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--dark);
}

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

.intro-section {
  padding: 35px 0 90px;
}

.intro-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.intro-card,
.service-card {
  padding: 30px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(24, 52, 77, 0.06);
}

.intro-card span {
  color: var(--secondary);
  font-size: 34px;
  font-weight: 900;
}

.intro-card h3,
.service-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

.intro-card p,
.service-card p,
.about-content p,
.certifications p,
.contact-info p,
.cta-section p {
  color: var(--muted);
  line-height: 1.8;
}

.about,
.services,
.certifications,
.contact {
  padding: 100px 0;
}

.about {
  background: var(--light);
}

.about-grid,
.cert-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-content h2,
.services h2,
.certifications h2,
.contact h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.about-signature {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 4px solid var(--primary);
}

.about-signature strong,
.about-signature span {
  display: block;
}

.about-signature strong {
  color: var(--dark);
}

.about-signature span {
  color: var(--muted);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.service-card {
  transition: 0.25s ease;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(162, 207, 242, 0.45), rgba(255, 255, 255, 0.9));
  font-size: 24px;
}

.certifications {
  background:
    linear-gradient(135deg, rgba(63, 119, 167, 0.08), rgba(162, 207, 242, 0.18));
}

.cert-list {
  display: grid;
  gap: 16px;
}

.cert-item {
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
}

.cert-item span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.cert-item strong {
  color: var(--dark);
  font-size: 22px;
}

.cta-section {
  padding: 90px 0;
}

.cta-box {
  padding: 60px;
  border-radius: 36px;
  background:
    radial-gradient(circle at right, rgba(162, 207, 242, 0.45), transparent 35%),
    linear-gradient(135deg, var(--primary), #1f517d);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box p,
.section-label.light {
  color: var(--white);
}

.contact-form {
  padding: 36px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 800;
  font-size: 14px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  background: #fbfdff;
}

.form-row textarea {
  height: 130px;
  resize: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(63, 119, 167, 0.1);
}

.contact-detail {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: var(--light);
}

.contact-detail strong,
.contact-detail span {
  display: block;
}

.contact-detail strong {
  color: var(--dark);
}

.contact-detail span {
  color: var(--muted);
}

.footer {
  padding: 35px 0;
  background: #10293f;
  color: rgba(255, 255, 255, 0.72);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer img {
  width: 220px;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .cert-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

   .site-header {
    top: 110px;
  }

  .hero {
    padding-top: 270px;
  }

  .doctor-image {
    height: 430px;
  }

  .cta-box,
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--primary);
  color: #fff;
  padding: 13px 0;
  font-size: 14px;
}

.topbar-content,
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-content {
  justify-content: space-between;
  gap: 20px;
}

.topbar-left,
.topbar-right {
  gap: 14px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.topbar-right a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}

.site-header {
  top: 44px;
}

.hero {
  padding-top: 210px;
}

.btn {
  gap: 12px;
}

.btn-icon {
  width: 38px;
  height: 38px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.btn-icon i{
  font-size:18px;
  color:white;
}

.btn-icon-blue {
  background: rgba(63,119,167,0.12)
}

.btn-secondary .btn-icon {
  background: rgba(63,119,167,0.12);
}

.image-card {
  padding: 16px;
}

.service-image {
  height: 210px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 22px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 0 10px 12px;
  text-align: center;
}

.testimonials {
  padding: 100px 0;
  background: #fff;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 50px;
}

.testimonials-header h2 {
  max-width: 760px;
  font-family: "Trajan Pro", Georgia, serif;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 50px);
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.testimonial-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.testimonial-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.testimonial-card {
  min-height: 330px;
  padding: 50px;
  border-radius: 28px;
  background: var(--primary);
  color: #fff;
}

.stars {
  display: flex;
  gap: 8px;
  color: var(--secondary);
  margin-bottom: 30px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.7;
}

.testimonial-card h3 {
  margin: 26px 0 8px;
  color: #fff;
}

.testimonial-card span {
  opacity: 0.85;
}

.testimonial-controls {
  display: flex;
  gap: 16px;
      margin-left: calc(40% + 45px);
    margin-top: -60px;
}

.testimonial-controls button {
  width: 54px;
  height: 54px;
  border: 10px solid rgba(162,207,242,0.45);
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 120;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20d466;
  color: #fff;
  font-size: 40px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(32, 212, 102, 0.35);
}

.whatsapp-tooltip {
  position: absolute;
  right: 88px;
  width: max-content;
  max-width: 260px;
  padding: 14px 22px;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
  transition: 0.25s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .topbar-content,
  .testimonials-header,
  .topbar-left,
  .topbar-right {
    flex-direction: column;
    text-align: center;
  }

  .site-header {
    top: 110px;
  }

  .hero {
    padding-top: 270px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-controls {
    margin-left: 0;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    padding: 8px 0;
    z-index: 110;
  }

  .topbar-content {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
  }

  .topbar-left {
    flex-direction: row;
    gap: 6px;
    font-size: 13px;
  }

  .topbar-left span {
    display: none;
  }

  .topbar-right {
    flex-direction: row;
    gap: 8px;
  }

  .topbar-right span {
    display: none;
  }

  .topbar-right a {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .site-header {
    top: 42px;
    z-index: 109;
  }

  .nav {
    height: 74px;
  }

  .brand img {
    width: 180px;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(63, 119, 167, 0.1);
    border: 1px solid rgba(63, 119, 167, 0.18);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: 0.25s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 116px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 20px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(24, 52, 77, 0.18);
    border: 1px solid rgba(63, 119, 167, 0.12);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 15px;
  }

  .nav-menu a:hover {
    background: rgba(63, 119, 167, 0.08);
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    padding-top: 165px;
  }
}

.contact-grid {
  align-items: start;
}

.contact-main-card,
.office-card {
  background: #f5f9fc;
  border: 1px solid rgba(63, 119, 167, 0.12);
  border-radius: 24px;
}

.contact-main-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  margin-top: 16px;
}

.contact-icon,
.office-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(63, 119, 167, 0.12);
  color: var(--primary);
  font-size: 20px;
}

.contact-main-card strong,
.office-card h3 {
  display: block;
  color: var(--dark);
}

.contact-main-card a {
  color: var(--muted);
  text-decoration: none;
}

.office-card {
  padding: 24px;
  margin-top: 18px;
}

.office-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.office-card h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.office-card span,
.office-card p {
  color: var(--muted);
}

.office-card p {
  line-height: 1.7;
  margin: 0 0 18px;
}

.office-card small {
  color: var(--primary);
  font-weight: 700;
}

.office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.office-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(63, 119, 167, 0.16);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.map-card {
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(63, 119, 167, 0.14);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-row select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  background: #fbfdff;
  color: var(--text);
}

.form-row select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(63, 119, 167, 0.1);
}

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

  .office-actions {
    flex-direction: column;
  }

  .office-actions a {
    justify-content: center;
  }

  .map-card {
    height: 260px;
  }
}

.credentials {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at top right, rgba(162, 207, 242, 0.28), transparent 36%),
    linear-gradient(135deg, #f4f9fd 0%, #ffffff 100%);
  overflow: hidden;
}

.credentials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(63, 119, 167, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 119, 167, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
}

.credentials-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.credentials-photo {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(24, 52, 77, 0.16);
  border: 12px solid #fff;
}

.credentials-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(24, 52, 77, 0.16);
}

.credentials-content h2 {
  margin: 0;
  font-family: "Trajan Pro", Georgia, serif;
  color: var(--dark);
  font-size: clamp(36px, 4.8vw, 50px);
  line-height: 1.05;
}

.credentials-content p {
  margin: 24px 0 30px;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.institution-logos {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.institution-logo {
  width: 150px;
  height: 110px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(63, 119, 167, 0.14);
  box-shadow: 0 18px 45px rgba(24, 52, 77, 0.07);
}

.institution-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.credential-cards {
  display: grid;
  gap: 16px;
}

.credential-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(63, 119, 167, 0.14);
  box-shadow: 0 18px 45px rgba(24, 52, 77, 0.07);
}

.credential-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(162, 207, 242, 0.45), rgba(63, 119, 167, 0.12));
  color: var(--primary);
  font-size: 22px;
}

.credential-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 4px;
}

.credential-card strong {
  color: var(--dark);
  font-size: 24px;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .credentials {
    padding: 80px 0;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .credentials-photo img {
    height: 460px;
  }

  .institution-logos {
    justify-content: center;
  }

  .institution-logo {
    width: calc(50% - 9px);
  }
}

.faq-section {
  padding: 110px 0;
  background: #ffffff;
}

.faq-list {
  max-width: 920px;
  margin: 45px auto 0;
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(63, 119, 167, 0.16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(24, 52, 77, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  color: var(--dark);
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.faq-section h2{
   max-width: 760px;
  font-family: "Trajan Pro", Georgia, serif;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 50px);
  margin: 0;
}

.faq-question i {
  color: var(--primary);
  transition: 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 26px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 260px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.insurance-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(162, 207, 242, 0.25), transparent 32%),
    linear-gradient(180deg, #f7fbfe 0%, #ffffff 100%);
  overflow: hidden;
}

.insurance-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.insurance-heading h2 {
  margin: 0;
  font-family: "Trajan Pro", Georgia, serif;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 50px);
}

.insurance-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.insurance-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.insurance-marquee::before,
.insurance-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.insurance-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.insurance-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.insurance-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: insuranceScroll 34s linear infinite;
}

.insurance-track:hover {
  animation-play-state: paused;
}

.insurance-track img {
  max-width: 190px;
  max-height: 78px;
  object-fit: contain;
  filter: grayscale(10%);
  opacity: 0.9;
  transition: 0.25s ease;
}

.insurance-track img:hover {
  transform: scale(1.06);
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes insuranceScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .faq-section,
  .insurance-section {
    padding: 80px 0;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 22px;
  }

  .insurance-track {
    gap: 45px;
    animation-duration: 26s;
  }

  .insurance-track img {
    max-width: 145px;
    max-height: 60px;
  }
}

.form-row {
  position: relative;
}

.error-message {
  display: block;
  margin-top: 6px;
  color: #dc3545;
  font-size: 13px;
  font-weight: 600;
}

.input-error {
  border-color: #dc3545 !important;
  background: #fff8f8;
}

.input-success {
  border-color: #28a745 !important;
}

.thankyou-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top right,
      rgba(162, 207, 242, 0.35),
      transparent 35%),
    linear-gradient(
      180deg,
      #f7fbfe 0%,
      #ffffff 100%
    );
}

.thankyou-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.thankyou-card {
  width: 100%;
  max-width: 760px;
  text-align: center;

  padding: 60px;

  background: #fff;

  border-radius: 36px;

  border: 1px solid rgba(63,119,167,0.12);

  box-shadow:
    0 30px 90px rgba(24,52,77,0.12);
}

.success-icon {
  width: 90px;
  height: 90px;

  margin: 0 auto 30px;

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

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #2ecc71,
      #27ae60
    );

  color: #fff;

  font-size: 40px;
}

.thankyou-logo {
  width: 260px;
  margin: 0 auto 25px;
}

.thankyou-label {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--primary);

  font-size: 14px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.thankyou-card h1 {
  margin: 0 0 20px;

  color: var(--dark);

  font-family:
    "Trajan Pro",
    Georgia,
    serif;

  font-size:
    clamp(
      38px,
      5vw,
      64px
    );

  line-height: 1.1;
}

.thankyou-card p {
  max-width: 600px;

  margin: 0 auto 35px;

  color: var(--muted);

  font-size: 18px;

  line-height: 1.8;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 16px;

  margin-bottom: 35px;
}

.thankyou-footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;

  padding-top: 25px;

  border-top:
    1px solid rgba(63,119,167,0.1);
}

.thankyou-item {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--muted);

  font-weight: 600;
}

.thankyou-item i {
  color: var(--primary);
}

@media (max-width: 768px) {

  .thankyou-card {
    padding: 40px 24px;
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-logo {
    width: 220px;
  }

}

.calendly-cta-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(162, 207, 242, 0.28), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.calendly-cta-box {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: 38px;
  background:
    radial-gradient(circle at right, rgba(162, 207, 242, 0.5), transparent 36%),
    linear-gradient(135deg, var(--primary), #18344d);
  box-shadow: 0 30px 90px rgba(24, 52, 77, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.calendly-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.calendly-cta-content,
.calendly-popup-btn {
  position: relative;
  z-index: 2;
}

.calendly-cta-content h2 {
  max-width: 720px;
  margin: 0;
  font-family: "Trajan Pro", Georgia, serif;
  color: #fff;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
}

.calendly-cta-content p {
  max-width: 620px;
  margin: 20px 0 26px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.7;
}

.calendly-cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.calendly-cta-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 14px;
  font-weight: 700;
}

.calendly-cta-features i {
  color: var(--secondary);
}

.calendly-popup-btn {
  flex-shrink: 0;
  min-width: 250px;
}

@media (max-width: 900px) {
  .calendly-cta-section {
    padding: 70px 0;
  }

  .calendly-cta-box {
    padding: 42px 26px;
    flex-direction: column;
    text-align: center;
  }

  .calendly-cta-features {
    justify-content: center;
  }

  .calendly-popup-btn {
    width: 100%;
  }
}

.contact-premium {
  padding: 110px 0;
  background:
    radial-gradient(circle at top right, rgba(162, 207, 242, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.contact-heading {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.contact-heading h2 {
  margin: 0;
  font-family: "Trajan Pro", Georgia, serif;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.contact-heading p {
  margin: 20px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.contact-premium-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.contact-left {
  display: grid;
  gap: 22px;
}

.schedule-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at right, rgba(162, 207, 242, 0.46), transparent 36%),
    linear-gradient(135deg, var(--primary), #18344d);
  box-shadow: 0 28px 80px rgba(24, 52, 77, 0.18);
  color: #fff;
}

.schedule-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 30px;
}

.schedule-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.schedule-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Trajan Pro", Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.schedule-card p {
  max-width: 620px;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-contact-card {
  min-height: 142px;
  padding: 22px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(63, 119, 167, 0.14);
  box-shadow: 0 18px 45px rgba(24, 52, 77, 0.07);
  text-decoration: none;
  transition: .25s ease;
}

.quick-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(24, 52, 77, 0.12);
}

.quick-contact-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(63, 119, 167, 0.1);
  color: var(--primary);
  font-size: 20px;
}

.quick-contact-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quick-contact-card strong {
  display: block;
  color: var(--dark);
  font-size: 14px;
  word-break: break-word;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.premium-office {
  margin-top: 0;
  padding: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(63, 119, 167, 0.14);
  box-shadow: 0 18px 45px rgba(24, 52, 77, 0.07);
}

.premium-office .office-header {
  align-items: flex-start;
}

.premium-office h3 {
  font-size: 19px;
}

.small-map {
  height: 185px;
}

.contact-form-wrap {
  position: sticky;
  top: 155px;
}

.premium-contact-form {
  padding: 38px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(63, 119, 167, 0.14);
  box-shadow: 0 28px 80px rgba(24, 52, 77, 0.13);
}

.form-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.premium-contact-form h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-family: "Trajan Pro", Georgia, serif;
  font-size: 32px;
  line-height: 1.1;
}

.premium-contact-form p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.7;
}

.premium-contact-form .form-row {
  margin-bottom: 16px;
}

.premium-contact-form textarea {
  min-height: 150px;
}

@media (max-width: 1050px) {
  .contact-premium-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    position: static;
  }
}

@media (max-width: 900px) {
  .contact-premium {
    padding: 80px 0;
  }

  .schedule-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 34px 24px;
  }

  .schedule-icon {
    margin: 0 auto;
  }

  .quick-contact-grid,
  .offices-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact-card {
    text-align: center;
  }

  .quick-contact-card i {
    margin-left: auto;
    margin-right: auto;
  }

  .premium-contact-form {
    padding: 30px 22px;
  }
}



.eleonor-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.eleonor-modal.active {
  display: flex;
}

.eleonor-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 41, 63, 0.72);
  backdrop-filter: blur(8px);
}

.eleonor-modal-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  max-height: 92vh;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
  animation: eleonorModalIn 0.25s ease;
}

.eleonor-modal-header {
  padding: 28px 34px 22px;
  border-bottom: 1px solid rgba(63, 119, 167, 0.12);
  background:
    radial-gradient(circle at top right, rgba(162, 207, 242, 0.35), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.eleonor-modal-header span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.eleonor-modal-header h3 {
  margin: 0;
  color: var(--dark);
  font-family: "Trajan Pro", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.eleonor-modal-header p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.eleonor-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.eleonor-iframe-wrap {
  height: 640px;
  background: #fff;
}

.eleonor-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.eleonor-modal-open {
  overflow: hidden;
}

@keyframes eleonorModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .eleonor-modal {
    padding: 12px;
  }

  .eleonor-modal-content {
    border-radius: 24px;
    max-height: 94vh;
  }

  .eleonor-modal-header {
    padding: 24px 22px 18px;
  }

  .eleonor-modal-close {
    top: 12px;
    right: 12px;
  }

  .eleonor-iframe-wrap {
    height: 72vh;
  }
}