/*
Theme Name: Columbia Cove
Theme URI: https://dev.wordpress-developer.us/columbia-cove/
Author: Webskitters
Description: Custom WordPress theme for Columbia Cove.
Version: 1.0.8
Text Domain: columbia-cove
*/

:root {
  --primary-blue: #1565D8;
  --deep-blue: #071E42;
  --dark-navy: #061936;
  --light-blue: #EAF8FF;
  --very-light-blue: #F4FBFF;
  --text-dark: #1C2733;
  --text-muted: #6B7A8C;
  --border-light: #DDEAF5;
  --white: #FFFFFF;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-heading: "Athelas", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.62;
  background: var(--white);
  overflow-x: hidden;
}

p {
  font-family: "DM Sans", var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Athelas", var(--font-heading);
}

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

a {
  text-decoration: none;
}

.site-container {
  max-width: 1604px;
  padding-left: 12px;
  padding-right: 12px;
}

.site-container > .row.g-5 {
  margin-left: 0;
  margin-right: 0;
}

.site-header {
  height: 100%;
  background: var(--white);
  position: relative;
  z-index: 10;
  box-shadow: 0 3px 20px rgba(7, 30, 66, 0.04);
}

.navbar {
  min-height: 76px;
  padding: 0;
}

.navbar-brand img {
  width: 128px;
  height: 106px;
}

.navbar-nav {
  gap: 34px;
}

.nav-link {
  color: var(--deep-blue);
  font-family: "DM Sans", var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 26px 0;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-blue);
}

.nav-link.is-active,
.current-menu-item > .nav-link {
  color: var(--deep-blue);
  box-shadow: inset 0 -2px 0 var(--primary-blue);
}

.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 11px 20px 11px 22px;
  font-family: "DM Sans", var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 30, 66, 0.12);
}

.btn span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 13px;
  transition: background-color 0.2s ease;
}

.btn span i {
  display: none;
}

.btn span::before {
  content: "";
  width: 11px;
  height: 12px;
  display: block;
  background: url("assets/icons/arrow-up-right.svg") center / contain no-repeat;
}

.btn-header {
  color: var(--primary-blue);
  background: #f7fbff;
  min-height: 44px;
  padding-left: 20px;
  padding-right: 8px;
  box-shadow: 0 0 0 1px rgba(18, 103, 232, 0.08);
}

.btn-header span {
  width: 34px;
  height: 34px;
}

.btn-header span,
.btn-secondary-pill span {
  color: var(--white);
  background: var(--primary-blue);
}

.btn-primary-pill {
  color: var(--white);
  background: var(--primary-blue);
  box-shadow: none;
}

.btn-primary-pill:hover,
.btn-primary-pill:focus {
  color: var(--white);
  background: #0e57c8;
  box-shadow: 0 16px 32px rgba(21, 101, 216, 0.24);
}

.btn-primary-pill span,
.btn-light-pill span {
  color: var(--white);
  background: var(--primary-blue);
}

.btn-secondary-pill {
  color: var(--primary-blue);
  background: var(--white);
  border: 1px solid var(--primary-blue);
  box-shadow: none;
}

.btn-secondary-pill:hover,
.btn-secondary-pill:focus {
  color: var(--white);
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  box-shadow: 0 16px 32px rgba(21, 101, 216, 0.18);
}

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

.btn-light-pill:hover,
.btn-light-pill:focus {
  color: var(--white);
  background: var(--primary-blue);
  box-shadow: 0 16px 32px rgba(21, 101, 216, 0.22);
}

.cta-banner .btn-light-pill {
  color: #333333;
}

.cta-banner .btn-light-pill:hover,
.cta-banner .btn-light-pill:focus {
  color: var(--white);
  background: var(--primary-blue);
}

.cta-banner .btn-light-pill:hover span,
.cta-banner .btn-light-pill:focus span {
  background: var(--primary-blue);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #effcff 0%, #e9f9ff 44%, #d9f2ff 100%);
}

.min-vh-hero {
  min-height: 635px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding-top: 18px;
}

.section-label {
  margin: 0 0 12px;
  color: #1565D8;
  font-family: "DM Sans", var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-label.centered {
  text-align: center;
}

h1,
h2 {
  color: var(--deep-blue);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.04;
  margin: 0 0 18px;
}

h1 {
  max-width: 590px;
  font-family: "Athelas", var(--font-heading);
  font-size: 70px;
  font-weight: 400;
  line-height: 1.04;
}

h2 {
  font-family: "Athelas", var(--font-heading);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.04;
}

h1 span,
h2 span {
  color: var(--primary-blue);
}

.lead-copy {
  color: #506579;
  max-width: 515px;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button-row .btn {
  gap: 16px;
  min-height: 59px;
  padding: 8px 8px 8px 27px;
  font-size: 18px;
  letter-spacing: 0;
}

.button-row .btn span {
  width: 47px;
  height: 47px;
}

.button-row .btn-primary-pill span {
  background: var(--white);
}

.button-row .btn-primary-pill span::before {
  background-image: none;
  background-color: var(--primary-blue);
  -webkit-mask: url("assets/icons/arrow-up-right.svg") center / contain no-repeat;
  mask: url("assets/icons/arrow-up-right.svg") center / contain no-repeat;
}

.button-row .btn-primary-pill:hover,
.button-row .btn-primary-pill:focus {
  color: var(--white);
  background: var(--primary-blue);
}

.button-row .btn-primary-pill:hover span,
.button-row .btn-primary-pill:focus span {
  background: var(--white);
}

.button-row .btn-primary-pill:hover span::before,
.button-row .btn-primary-pill:focus span::before {
  background-color: var(--primary-blue);
}

.hero-image-wrap {
  min-height: 635px;
  position: relative;
}

.hero-image-wrap::before {
  content: none;
}

.hero-image {
  position: absolute;
  right: -12px;
  bottom: 0;
  width: min(820px, 116%);
  z-index: 2;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  right: -120px;
  top: 112px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(18, 103, 232, 0.08);
}

.hero-orbit-two {
  left: -100px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.28);
}

.section {
  padding: 92px 0;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
  background: linear-gradient(105deg, #effcff 0%, #e9f9ff 48%, #d9f5ff 100%);
}

.about-hero .row {
  min-height: 0;
  align-items: flex-start !important;
}

.about-hero h1 {
  max-width: 690px;
  margin-bottom: 14px;
}

.about-hero .lead-copy {
  max-width: 650px;
  margin-bottom: 20px;
  color: #344b62;
  font-size: 17px;
  line-height: 1.55;
}

.about-hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 670px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-hero-pillars li {
  padding: 9px 14px;
  color: #071E42;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 101, 216, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 30, 66, 0.06);
  font-family: "DM Sans", var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.about-hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.about-hero-media::before {
  content: "";
  position: absolute;
  right: 86px;
  top: 45%;
  width: 390px;
  height: 390px;
  background: url("assets/images/Ellipse-2.png") center / contain no-repeat;
  transform: translateY(-50%);
  z-index: 0;
}

.about-hero-img {
  position: relative;
  z-index: 1;
  width: 620px;
  max-width: 100%;
  margin: -28px 0 -8px auto;
}

.about-page-intro {
  padding-top: 76px;
  background: linear-gradient(180deg, var(--white) 0%, var(--very-light-blue) 100%);
}

.about-page-intro::after {
  right: -20px;
  bottom: 90px;
}

.about-main-photo {
  width: 658px;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.about-feature-list {
  gap: 12px;
}

.about-feature-list .feature-card {
  padding: 18px 24px;
}

.about-why-section {
  padding: 82px 0;
}

.approach-section {
  background: var(--white);
}

.about-page .section {
  padding: 76px 0;
}

.about-page .about-why-section {
  padding: 82px 0;
}

.about-page .section h2 {
  margin-bottom: 14px;
}

.about-page .section-copy {
  margin-bottom: 20px;
  line-height: 1.58;
}

.approach-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  color: #454b55;
  font-size: 17px;
  line-height: 1.45;
}

.check-list li {
  position: relative;
  padding-left: 40px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  background: url("assets/icons/check-circle.svg") center / contain no-repeat;
}

.impact-section {
  padding: 92px 0 104px;
  color: var(--white);
  background: var(--dark-navy);
}

.impact-section .section-label {
  justify-content: center;
  color: #7CC7FF;
}

.impact-section h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}

.impact-section h2 span {
  color: #7CC7FF;
}

.impact-grid {
  margin-top: 36px;
}

.impact-grid article {
  min-height: 174px;
  padding: 28px 20px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.impact-grid i {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  color: #7CC7FF;
  background: rgba(124, 199, 255, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.impact-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}

.impact-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.about-team-section {
  padding: 72px 0 78px;
  background: var(--very-light-blue);
}

.services-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
  background: linear-gradient(105deg, #effcff 0%, #e9f9ff 48%, #d9f5ff 100%);
}

.services-hero .row {
  min-height: 558px;
}

.services-hero h1 {
  margin-bottom: 12px;
}

.services-hero .lead-copy {
  max-width: 640px;
}

.services-hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.services-hero-media::before {
  content: "";
  position: absolute;
  right: 133px;
  top: 40%;
  width: 472px;
  height: 472px;
  background: url("assets/images/Ellipse-2.png") center / contain no-repeat;
  transform: translateY(-50%);
  z-index: 0;
}

.services-hero-img {
  position: relative;
  z-index: 1;
  width: 780px;
  max-width: 112%;
  margin: 0 0 0 auto;
}

.services-page-section {
  padding-top: 96px;
  padding-bottom: 112px;
}

.services-page-section .section-heading {
  max-width: 1050px;
  margin-bottom: 46px;
}

.services-page-grid .service-card {
  min-height: 473px;
  padding: 52px 48px 0;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.services-page-grid .service-card::before {
  bottom: -54px;
  width: 330px;
  height: 330px;
  opacity: 0.7;
}

.services-page-grid .service-card img {
  width: 82%;
  height: 305px;
  margin-top: 24px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 0;
  background: linear-gradient(105deg, #effcff 0%, #e9f9ff 48%, #d9f5ff 100%);
}

.detail-hero .row {
  min-height: 555px;
}

.detail-hero h1 {
  margin-bottom: 12px;
}

.detail-hero .lead-copy {
  max-width: 640px;
}

.detail-hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.detail-hero-media::before {
  content: "";
  position: absolute;
  right: 128px;
  top: 44%;
  width: 472px;
  height: 472px;
  background: url("assets/images/Ellipse-2.png") center / contain no-repeat;
  transform: translateY(-50%);
  z-index: 0;
}

.detail-hero-img {
  position: relative;
  z-index: 1;
  width: 760px;
  max-width: 112%;
  margin: 0 0 0 auto;
}

.detail-intro-section {
  background: var(--white);
}

.detail-intro-collage {
  position: relative;
  min-height: 560px;
  max-width: 602px;
  margin: 0 auto;
}

.detail-intro-collage::after {
  content: "";
  position: absolute;
  left: 98px;
  bottom: 0;
  width: 296px;
  height: 84px;
  background: #e3f6ff;
  z-index: 0;
}

.detail-intro-main {
  position: relative;
  z-index: 1;
  width: 392px;
  margin-left: 49px;
  border-radius: 6px;
}

.detail-intro-small {
  position: absolute;
  right: 58px;
  top: 142px;
  z-index: 2;
  width: 300px;
  border: 6px solid var(--white);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(7, 30, 66, 0.12);
}

.detail-highlight-card {
  margin: 24px 0 28px;
  padding: 24px 30px;
  background: #eaf8ff;
  border-radius: 12px;
}

.detail-highlight-card h3 {
  margin: 0 0 12px;
  color: var(--deep-blue);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
}

.detail-highlight-card p {
  margin: 0;
  color: #506579;
  font-size: 15px;
  line-height: 1.65;
}

.detail-offer-section {
  padding: 104px 0 112px;
  color: var(--white);
  background: var(--dark-navy);
}

.detail-offer-section .section-heading {
  max-width: 920px;
}

.detail-offer-section .section-label {
  color: #1565D8;
}

.detail-offer-section h2 {
  color: var(--white);
}

.detail-offer-section h2 span {
  color: #1565D8;
}

.detail-offer-section .section-heading > p:last-child {
  max-width: 650px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.detail-offer-grid {
  margin-top: 40px;
}

.detail-offer-grid article {
  min-height: 220px;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.detail-offer-grid i {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: #7CC7FF;
  background: rgba(124, 199, 255, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.detail-offer-grid h3 {
  margin: 0 0 13px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 500;
}

.detail-offer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.52;
}

.detail-path-section {
  background: var(--white);
}

.detail-check-list {
  margin-top: 26px;
}

.detail-path-img {
  width: 710px;
  max-width: 100%;
  margin: 0 auto;
}

.detail-faq-section {
  padding: 100px 0 104px;
  background: linear-gradient(180deg, #eef9ff 0%, var(--white) 100%);
}

.detail-faq-section .section-heading {
  margin-bottom: 32px;
}

.detail-faq-list {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.detail-faq-list article {
  overflow: hidden;
  color: var(--white);
  background: #164d93;
  border-radius: 5px;
}

.detail-faq-list article:has(.collapse.show),
.detail-faq-list article:first-child {
  background: var(--primary-blue);
}

.detail-faq-toggle {
  width: 100%;
  padding: 20px 30px;
  color: var(--white);
  background: transparent;
  border: 0;
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

.detail-faq-list p {
  margin: 0 30px 24px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px dashed rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.6;
}

.careers-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 0;
  background: linear-gradient(105deg, #effcff 0%, #e9f9ff 48%, #d9f5ff 100%);
}

.careers-hero .row {
  min-height: 555px;
}

.careers-hero .lead-copy {
  max-width: 690px;
}

.careers-hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.careers-hero-media::before {
  content: "";
  position: absolute;
  right: 116px;
  top: 42%;
  width: 472px;
  height: 472px;
  background: url("assets/images/Ellipse-2.png") center / contain no-repeat;
  transform: translateY(-50%);
  z-index: 0;
}

.careers-hero-img {
  position: relative;
  z-index: 1;
  width: 680px;
  max-width: 112%;
  margin: 0 0 0 auto;
}

.careers-benefits-section {
  background: var(--white);
}

.careers-benefit-grid article {
  min-height: 260px;
  padding: 34px 28px 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(7, 30, 66, 0.08);
}

.careers-benefit-grid article.is-featured {
  color: var(--white);
  background: var(--primary-blue);
}

.careers-benefit-grid i {
  width: 47px;
  height: 47px;
  margin-bottom: 26px;
  color: var(--primary-blue);
  background: #e7f5ff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.careers-benefit-grid .is-featured i {
  color: var(--primary-blue);
  background: var(--white);
}

.careers-benefit-grid h3 {
  margin: 0 0 14px;
  color: var(--deep-blue);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
}

.careers-benefit-grid p {
  margin: 0;
  color: #506579;
  font-size: 15px;
  line-height: 1.55;
}

.careers-benefit-grid .is-featured h3,
.careers-benefit-grid .is-featured p {
  color: var(--white);
}

.careers-positions-section {
  padding: 102px 0 104px;
  color: var(--white);
  background: var(--dark-navy);
}

.careers-positions-section .section-label {
  color: #1565D8;
}

.careers-positions-section h2 {
  color: var(--white);
}

.careers-position-list {
  display: grid;
  gap: 30px;
  margin-top: 42px;
}

.position-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 174px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.position-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.position-tags span {
  min-height: 42px;
  padding: 10px 22px;
  color: var(--white);
  border: 1px solid var(--primary-blue);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-family: "DM Sans", var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.position-tags span:first-child {
  background: var(--primary-blue);
}

.position-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
}

.position-location {
  color: var(--white);
}

.position-location i {
  margin-right: 10px;
}

.position-card p {
  max-width: 1040px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.position-card .btn {
  flex: 0 0 auto;
  color: var(--primary-blue);
}

.position-card .btn:hover,
.position-card .btn:focus {
  color: var(--white);
  background: var(--primary-blue);
  box-shadow: 0 16px 32px rgba(21, 101, 216, 0.22);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 0;
  background: linear-gradient(105deg, #effcff 0%, #e9f9ff 48%, #d9f5ff 100%);
}

.contact-hero .row {
  min-height: 590px;
}

.contact-hero h1 {
  margin-bottom: 14px;
}

.contact-hero .lead-copy {
  max-width: 720px;
}

.contact-hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.contact-hero-media::before {
  content: "";
  position: absolute;
  right: 128px;
  top: 42%;
  width: 472px;
  height: 472px;
  background: url("assets/images/Ellipse-2.png") center / contain no-repeat;
  transform: translateY(-50%);
  z-index: 0;
}

.contact-hero-img {
  position: relative;
  z-index: 1;
  width: 677px;
  max-width: 114%;
  margin: 0 40px 0 auto;
}

.contact-form-section {
  padding: 84px 0 82px;
  background: var(--white);
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1fr);
  gap: 58px;
  align-items: stretch;
  padding: 0;
  background: var(--white);
  border-radius: 0;
  box-shadow: none;
}

.contact-form-image {
  min-height: 580px;
  background: url("assets/images/appointment-care.png") center / cover no-repeat;
  border-radius: 12px;
}

.contact-form-panel {
  padding: 0;
}

.contact-form-panel h2 {
  margin-bottom: 24px;
  color: #252525;
  font-family: "Athelas", var(--font-heading);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.05;
}

.contact-form-panel > p {
  display: none;
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.contact-form .form-control {
  min-height: 54px;
  padding: 13px 16px;
  background: #f7faff;
  border-color: #eaf1f8;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  min-width: 158px;
  margin-top: 8px;
}

.contact-form-panel .gform_wrapper {
  margin-top: 0;
}

.contact-form-panel .gform_wrapper .gfield_label,
.contact-form-panel .gform_wrapper .gform-field-label {
  color: #454545;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
}

.contact-form-panel .gform_wrapper .gfield_required {
  display: none;
}

.contact-form-panel .gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 24px;
}

.contact-form-panel .gform_wrapper #field_1_5,
.contact-form-panel .gform_wrapper #field_1_4 {
  grid-column: 1 / -1;
}

.contact-form-panel .gform_wrapper #field_1_2 {
  grid-column: 1 / 2;
}

.contact-form-panel .gform_wrapper #field_1_3 {
  grid-column: 2 / 3;
}

.contact-form-panel .gform_wrapper input[type="text"],
.contact-form-panel .gform_wrapper input[type="email"],
.contact-form-panel .gform_wrapper input[type="tel"],
.contact-form-panel .gform_wrapper textarea {
  width: 100%;
  min-height: 51px;
  padding: 13px 18px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #f7f7f7;
  color: #252525;
  font-size: 17px;
  font-weight: 400;
  box-shadow: none;
}

.contact-form-panel .gform_wrapper textarea {
  min-height: 146px;
  resize: vertical;
}

.contact-form-panel .gform_wrapper input::placeholder,
.contact-form-panel .gform_wrapper textarea::placeholder {
  color: #555555;
  opacity: 1;
}

.contact-form-panel .gform_wrapper input[type="text"]:focus,
.contact-form-panel .gform_wrapper input[type="email"]:focus,
.contact-form-panel .gform_wrapper input[type="tel"]:focus,
.contact-form-panel .gform_wrapper textarea:focus {
  border-color: rgba(21, 101, 216, 0.42);
  box-shadow: 0 0 0 4px rgba(21, 101, 216, 0.08);
}

.contact-form-panel .gform_wrapper .gform_footer input[type="submit"],
.contact-page .contact-form-panel #gform_submit_button_1,
.contact-form-panel .gform_wrapper .gform_button {
  width: 161px !important;
  min-width: 161px !important;
  height: 58px !important;
  min-height: 58px !important;
  border: 0 !important;
  border-radius: 60px !important;
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  padding: 0 34px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}

.contact-form-panel .gform_wrapper .gform_footer input[type="submit"]:hover,
.contact-form-panel .gform_wrapper .gform_footer input[type="submit"]:focus,
.contact-page .contact-form-panel #gform_submit_button_1:hover,
.contact-page .contact-form-panel #gform_submit_button_1:focus,
.contact-form-panel .gform_wrapper .gform_button:hover,
.contact-form-panel .gform_wrapper .gform_button:focus {
  background: var(--dark-navy) !important;
  box-shadow: 0 14px 28px rgba(7, 30, 66, 0.16) !important;
  transform: translateY(-2px);
}

.contact-info-section {
  padding: 86px 0;
  background: var(--dark-navy);
}

.contact-info-card {
  min-height: 235px;
  padding: 38px 34px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  text-align: center;
}

.contact-info-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  color: var(--primary-blue);
  background: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-info-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
}

.contact-info-card a,
.contact-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.contact-info-card a:hover,
.contact-info-card a:focus {
  color: var(--white);
}

.contact-map-section {
  padding: 92px 0 105px;
  background: var(--white);
}

.contact-map-section .section-heading {
  margin-bottom: 42px;
}

.contact-map-img {
  width: min(100%, 1420px);
  margin: 0 auto;
  border-radius: 14px;
}

.page-content {
  max-width: 960px;
  margin: 0 auto;
}

.page-content .entry-content {
  margin-top: 24px;
}

.error-404-page {
  background: var(--white);
}

.error-404-section {
  min-height: 720px;
  padding: 120px 0;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 28%, rgba(124, 199, 255, 0.22), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(21, 101, 216, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.error-404-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 72px;
  align-items: center;
}

.error-404-content {
  max-width: 760px;
}

.error-404-code {
  display: block;
  margin-bottom: 12px;
  color: rgba(21, 101, 216, 0.12);
  font-family: var(--font-heading);
  font-size: clamp(92px, 13vw, 172px);
  font-weight: 700;
  line-height: 0.8;
}

.error-404-content h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
}

.error-404-content > p:not(.section-label) {
  max-width: 650px;
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.7;
}

.error-404-panel {
  padding: 42px;
  background: var(--white);
  border: 1px solid rgba(21, 101, 216, 0.12);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(7, 30, 66, 0.12);
}

.error-404-panel img {
  width: 110px;
  margin-bottom: 28px;
}

.error-404-panel h2 {
  margin-bottom: 12px;
  font-size: 35px;
}

.error-404-panel p {
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.error-404-links {
  display: grid;
  gap: 12px;
}

.error-404-links a {
  padding: 14px 16px;
  color: var(--deep-blue);
  background: var(--very-light-blue);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.error-404-links a:hover,
.error-404-links a:focus {
  color: var(--white);
  background: var(--primary-blue);
}

.about-section,
.testimonial-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--very-light-blue) 100%);
  overflow: hidden;
  position: relative;
}

.about-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 58px;
  width: 360px;
  height: 168px;
  background: url("assets/images/about-mark.png") center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.about-section .site-container {
  position: relative;
  z-index: 1;
}

.image-collage {
  position: relative;
  min-height: 520px;
  padding: 0 60px 45px 0;
}

.collage-main,
.collage-small,
.why-main,
.why-small,
.testimonial-img,
.founder-img,
.team-card img {
  border-radius: 16px;
  object-fit: cover;
}

.collage-main {
  width: 430px;
  height: 365px;
  box-shadow: 0 20px 45px rgba(7, 30, 66, 0.1);
}

.collage-small {
  position: absolute;
  right: 18px;
  bottom: 32px;
  width: 360px;
  height: 260px;
  border: 8px solid var(--white);
  box-shadow: 0 18px 38px rgba(7, 30, 66, 0.12);
}

.section-copy {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:first-child {
  background: #EAF8FF;
  border-color: #EAF8FF;
}

.feature-card:hover,
.service-card:hover,
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(7, 30, 66, 0.12);
}

.feature-icon {
  min-width: 32px;
  color: var(--primary-blue);
  background: transparent;
  border-radius: 0;
  font-family: "DM Sans", var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 0 0 auto;
  padding-top: 3px;
}

.feature-card h3 {
  margin: 0 0 4px;
  color: #333333;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.16;
}

.why-cards h3 {
  margin: 0 0 4px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.16;
}

.why-cards p,
.team-card p {
  margin: 0;
  color: #A5AAB6;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.feature-card p {
  margin: 0;
  color: #4E4E4E;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
}

.services-section {
  background: var(--white);
}

.service-grid {
  max-width: 100%;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 325px;
  padding: 27px 28px 0;
  text-align: center;
  background: #dff4ff url("assets/images/service-card-bg.svg") center / cover no-repeat;
  border: 1px solid #ccecff;
  border-radius: 17px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 330px;
  height: 330px;
  opacity: 0.7;
  background: url("assets/images/service-card-circle.svg") center / contain no-repeat;
  transform: translateX(-50%);
  z-index: 0;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 17px;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 28px;
}

.service-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 520px;
  object-fit: contain;
  object-position: center bottom;
  margin: 15px auto 0;
}

.why-section {
  color: var(--white);
  background: var(--dark-navy);
}

.why-section h2,
.why-section .section-copy {
  color: var(--white);
}

.why-section h2 {
  color: var(--white);
}

.why-section h2 span {
  color: #7CC7FF;
}

.why-section .section-label {
  color: #7CC7FF;
}

.why-section .section-copy {
  opacity: 0.68;
}

.why-cards > [class*="col-"] {
  display: flex;
}

.why-cards article {
  width: 100%;
  height: 100%;
  min-height: 165px;
  padding: 20px;
  background: #0b2a58;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.why-cards i {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #9fd0ff;
  background: rgba(18, 103, 232, 0.22);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-images {
  position: relative;
  min-height: 498px;
  padding: 58px 54px 0 0;
  margin-left: -28px;
}

.why-main {
  position: relative;
  z-index: 1;
  width: 560px;
  height: 470px;
  margin-left: auto;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
}

.why-small {
  position: absolute;
  right: 0;
  z-index: 2;
  width: 300px;
  height: 172px;
  border: 4px solid var(--white);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.why-small.top {
  top: 8px;
}

.stories-section {
  background: linear-gradient(180deg, var(--white) 0%, #eef9ff 100%);
}

.story-card {
  height: 513px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 25, 54, 0.05), rgba(6, 25, 54, 0.88));
}

.story-card div {
  position: relative;
  z-index: 1;
}

.story-card p {
  color: #a9d7ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.story-card h3 {
  color: var(--white);
  font-family: "Athelas", var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
}

.cta-banner {
  margin-top: 42px;
  padding: 36px 42px;
  color: var(--white);
  background: linear-gradient(135deg, #1267e8, #0d54c4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 38px rgba(18, 103, 232, 0.22);
}

.cta-banner p {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.cta-banner h2 {
  max-width: 620px;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 52px;
  font-weight: 700;
}

.cta-banner span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 400;
}

.testimonial-slider {
  position: relative;
  min-height: 560px;
}

.testimonial-visual {
  position: relative;
  min-height: 560px;
}

.testimonial-img {
  width: 520px;
  height: 445px;
  margin-left: auto;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}

.quote-card {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: 560px;
  padding: 28px 30px 26px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 24px 58px rgba(7, 30, 66, 0.14);
}

.quote-card > p {
  color: #4a4f58;
  font-size: 16px;
  font-style: italic;
  line-height: 1.75;
  margin: 0 0 20px;
}

.quote-mark {
  color: var(--primary-blue);
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 0.6;
  height: 24px;
  margin: 0 0 2px;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quote-person img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-person strong {
  color: var(--deep-blue);
  display: block;
  font-family: "Athelas", var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

.quote-person span {
  color: var(--primary-blue);
  font-family: "DM Sans", var(--font-body);
  font-size: 14px;
  font-weight: 500;
}

.stars {
  margin-left: auto;
  color: #ffb300;
  font-size: 17px;
  letter-spacing: 1px;
  text-align: right;
  line-height: 1.25;
}

.stars small {
  color: #333333;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
}

.testimonial-controls {
  position: absolute;
  right: 76px;
  bottom: 44px;
  display: flex;
  gap: 13px;
  z-index: 3;
}

.testimonial-control {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.testimonial-control.prev {
  color: #333333;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 30, 66, 0.08);
}

.testimonial-control.next {
  color: var(--white);
  background: var(--primary-blue);
  box-shadow: 0 12px 30px rgba(21, 101, 216, 0.2);
}

.testimonial-control:hover,
.testimonial-control:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(7, 30, 66, 0.16);
}

.testimonial-control.prev:hover,
.testimonial-control.prev:focus {
  color: var(--white);
  background: var(--primary-blue);
}

.testimonial-control.next:hover,
.testimonial-control.next:focus {
  background: #0e57c8;
}

.founder-section {
  background: var(--white);
}

.founder-content {
  min-height: 430px;
  padding: 42px 42px 42px 70px;
  background: url("assets/images/employee-of-the-month-background.png") right center / contain no-repeat;
}

.founder-img {
  width: 658px;
  height: 430px;
  object-position: center top;
  background: #f4f7fa;
}

.founder-section h3 {
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 600;
}

.team-section {
  background: var(--very-light-blue);
}

.team-card {
  transition: none;
}

.team-card:hover {
  transform: none;
  box-shadow: none;
}

.team-card img {
  width: 100%;
  height: 430px;
  object-position: center top;
  background: #e9eef5;
}

.team-card h3 {
  margin: 18px 0 4px;
  color: #333333;
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.16;
}

.team-card p {
  font-size: 18px;
  font-weight: 400;
  color: #4E4E4E;
}

.appointment-section {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.appointment-blue {
  padding: 30px 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1565D8 url("assets/images/book-appointment-background.png") center / cover no-repeat;
}

.appointment-image {
  background-image: url("assets/images/appointment-care.png");
  background-size: cover;
  background-position: center;
}

.form-card {
  width: min(100%, 538px);
  padding: 42px 38px 39px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(6, 25, 54, 0.18);
}

.form-card h2 {
  margin-bottom: 24px;
  font-size: 31px;
  line-height: 1.15;
}

.form-label {
  color: var(--deep-blue);
  font-size: 11px;
  font-weight: 600;
}

.form-control,
.form-select {
  min-height: 43px;
  color: var(--deep-blue);
  background-color: #f6f8fb;
  border: 1px solid #edf1f6;
  border-radius: 4px;
  font-size: 12px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(18, 103, 232, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(18, 103, 232, 0.12);
}

.form-card .gform_wrapper {
  margin-top: 0;
}

.form-card .gform_wrapper .gfield_label,
.form-card .gform_wrapper .gform-field-label {
  margin-bottom: 8px;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.form-card .gform_wrapper .gfield_required {
  display: none;
}

.form-card .gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 20px;
}

.form-card .gform_wrapper #field_2_1,
.form-card .gform_wrapper #field_2_4 {
  grid-column: 1 / -1;
}

.form-card .gform_wrapper #field_2_2 {
  grid-column: 1 / 2;
}

.form-card .gform_wrapper #field_2_3 {
  grid-column: 2 / 3;
}

.form-card .gform_wrapper input[type="text"],
.form-card .gform_wrapper input[type="email"],
.form-card .gform_wrapper input[type="tel"],
.form-card .gform_wrapper textarea {
  width: 100%;
  min-height: 53px;
  padding: 14px 19px;
  color: #4d4d4d;
  background-color: #f7f7f7;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.4;
  box-shadow: none;
}

.form-card .gform_wrapper textarea {
  min-height: 153px;
  resize: vertical;
}

.form-card .gform_wrapper input::placeholder,
.form-card .gform_wrapper textarea::placeholder {
  color: #555;
  opacity: 1;
}

.form-card .gform_wrapper input[type="text"]:focus,
.form-card .gform_wrapper input[type="email"]:focus,
.form-card .gform_wrapper input[type="tel"]:focus,
.form-card .gform_wrapper textarea:focus {
  border-color: rgba(18, 103, 232, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(18, 103, 232, 0.12);
}

.form-card .gform_wrapper .gform_footer {
  margin-top: 18px;
  padding-bottom: 0;
}

.form-card .gform_wrapper .gform_footer input[type="submit"],
.form-card .gform_wrapper #gform_submit_button_2,
.form-card .gform_wrapper .gform_button {
  min-width: 167px !important;
  min-height: 60px !important;
  border: 0 !important;
  border-radius: 60px !important;
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  padding: 0 30px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}

.form-card .gform_wrapper .gform_footer input[type="submit"]:hover,
.form-card .gform_wrapper .gform_footer input[type="submit"]:focus,
.form-card .gform_wrapper #gform_submit_button_2:hover,
.form-card .gform_wrapper #gform_submit_button_2:focus,
.form-card .gform_wrapper .gform_button:hover,
.form-card .gform_wrapper .gform_button:focus {
  background: var(--dark-navy) !important;
  box-shadow: 0 14px 28px rgba(7, 30, 66, 0.16) !important;
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark-navy);
  padding: 82px 0 30px;
}

.footer-watermark {
  position: absolute;
  left: -20px;
  bottom: 42px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(72px, 13vw, 220px);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-main-row {
  justify-content: space-between;
}

.footer-links-col {
  max-width: 430px;
}

.footer-contact-col {
  max-width: 300px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 18px;
}

.footer-logo-link {
  width: fit-content;
  margin-bottom: 18px;
}

.footer-logo-link .footer-logo {
  margin-bottom: 0;
}

.site-footer h3 {
  color: #7CC7FF;
  font-family: "Athelas", var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 18px;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.site-footer a {
  transition: color 0.2s ease;
}

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

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-quick-menu {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  column-gap: 78px;
  row-gap: 2px;
  width: max-content;
  max-width: 100%;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--white);
}

.site-footer i {
  color: #8dc5ff;
  margin-right: 8px;
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom a {
  width: 40px;
  height: 40px;
  margin: 0 0 0 14px;
  color: #7CC7FF;
  background: #FFFFFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  background: #EAF8FF;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.footer-bottom a svg {
  display: block;
  flex: 0 0 auto;
}

.footer-bottom a i {
  margin: 0;
  color: var(--primary-blue);
}

/* 31-07-2026 start */

.footer-contact-col a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.footer-contact-col a i {
    flex: 0 0 auto;
}

.footer-contact-col a span {
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
}

/* 31-07-2026 end */

@media (max-width: 991.98px) {
  .site-header {
    height: auto;
  }

  .error-404-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .error-404-panel {
    max-width: 520px;
  }

  .navbar {
    min-height: 70px;
  }

  .navbar-collapse {
    padding: 18px 0 24px;
    background: var(--white);
  }

  .navbar-nav {
    gap: 0;
    margin-bottom: 16px;
  }

  .nav-link {
    padding: 10px 0;
  }

  .min-vh-hero {
    min-height: auto;
    padding: 80px 0 0;
  }

  .hero-copy {
    text-align: center;
    padding-top: 0;
  }

  .button-row {
    justify-content: center;
  }

  .lead-copy,
  h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-wrap {
    min-height: 520px;
  }

  .hero-image {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(560px, 92vw);
  }

  .hero-image-wrap::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 480px;
    height: 480px;
  }

  .section {
    padding: 76px 0;
  }

  .about-hero {
    padding: 68px 0 54px;
    text-align: center;
  }

  .about-hero .section-label {
    justify-content: center;
  }

  .about-hero .lead-copy {
    max-width: 720px;
  }

  .about-hero-pillars {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-media {
    justify-content: center;
  }

  .about-hero-media::before {
    right: auto;
    left: 50%;
    width: min(390px, 72vw);
    height: min(390px, 72vw);
    transform: translate(-50%, -50%);
  }

  .about-hero-img {
    max-width: 590px;
    width: 100%;
    margin: 28px auto 0;
  }

  .about-main-photo,
  .approach-img {
    width: 100%;
    height: auto;
    max-height: 540px;
  }

  .why-images {
    min-height: 440px;
    padding: 44px 34px 0 0;
    margin-left: 0;
  }

  .why-main {
    width: min(100%, 560px);
    height: 410px;
  }

  .why-small {
    width: min(285px, 48vw);
    height: 160px;
  }

  .services-hero {
    padding: 90px 0 0;
    text-align: center;
  }

  .services-hero .row {
    min-height: auto;
  }

  .services-hero .section-label {
    justify-content: center;
  }

  .services-hero-media {
    justify-content: center;
  }

  .services-hero-media::before {
    right: auto;
    left: 50%;
    width: min(472px, 78vw);
    height: min(472px, 78vw);
    transform: translate(-50%, -50%);
  }

  .services-hero-img {
    max-width: 720px;
    width: 100%;
    margin: 42px auto 0;
  }

  .services-page-grid .service-card {
    min-height: 475px;
  }

  .detail-hero {
    padding: 86px 0 0;
    text-align: center;
  }

  .detail-hero .row {
    min-height: auto;
  }

  .detail-hero .section-label {
    justify-content: center;
  }

  .detail-hero-media {
    justify-content: center;
  }

  .detail-hero-media::before {
    right: auto;
    left: 50%;
    width: min(472px, 78vw);
    height: min(472px, 78vw);
    transform: translate(-50%, -50%);
  }

  .detail-hero-img {
    max-width: 720px;
    width: 100%;
    margin: 42px auto 0;
  }

  .detail-path-img {
    width: 100%;
  }

  .detail-intro-collage {
    min-height: 560px;
    max-width: 602px;
  }

  .detail-intro-main {
    width: 65%;
    margin-left: 8%;
  }

  .detail-intro-small {
    right: 9%;
    top: 142px;
    width: 50%;
  }

  .careers-hero {
    padding: 86px 0 0;
    text-align: center;
  }

  .careers-hero .row {
    min-height: auto;
  }

  .careers-hero .section-label {
    justify-content: center;
  }

  .careers-hero-media {
    justify-content: center;
  }

  .careers-hero-media::before {
    right: auto;
    left: 50%;
    width: min(472px, 78vw);
    height: min(472px, 78vw);
    transform: translate(-50%, -50%);
  }

  .careers-hero-img {
    max-width: 620px;
    width: 100%;
    margin: 42px auto 0;
  }

  .contact-hero {
    padding: 86px 0 0;
    text-align: center;
  }

  .contact-hero .row {
    min-height: auto;
  }

  .contact-hero .section-label {
    justify-content: center;
  }

  .contact-hero-media {
    justify-content: center;
  }

  .contact-hero-media::before {
    right: auto;
    left: 50%;
    width: min(472px, 78vw);
    height: min(472px, 78vw);
    transform: translate(-50%, -50%);
  }

  .contact-hero-img {
    max-width: 650px;
    width: 100%;
    margin: 42px auto 0;
  }

  .contact-form-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 760px;
    margin: 0 auto;
  }

  .contact-form-image {
    min-height: 420px;
  }

  .contact-form-panel {
    padding: 14px 14px 26px;
  }

  .contact-form-panel .gform_wrapper .gform_fields {
    grid-template-columns: 1fr;
  }

  .contact-form-panel .gform_wrapper #field_1_5,
  .contact-form-panel .gform_wrapper #field_1_4,
  .contact-form-panel .gform_wrapper #field_1_2,
  .contact-form-panel .gform_wrapper #field_1_3 {
    grid-column: auto;
  }

  .position-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-collage,
  .why-images,
  .testimonial-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .appointment-section {
    grid-template-columns: 1fr;
  }

  .appointment-blue {
    justify-content: center;
    padding: 72px 24px;
  }

  .appointment-image {
    min-height: 390px;
  }

  .cta-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 14px;
  }

  .site-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .error-404-section {
    min-height: auto;
    padding: 82px 0;
  }

  .error-404-content > p:not(.section-label) {
    font-size: 18px;
  }

  .error-404-panel {
    padding: 28px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  .button-row,
  .button-row .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .about-hero {
    padding: 48px 0 40px;
    overflow: hidden;
  }

  .about-hero .row {
    min-height: auto;
  }

  .about-hero .site-container,
  .about-hero .row,
  .about-hero [class*="col-"] {
    max-width: 100%;
    min-width: 0;
  }

  .about-hero h1,
  .about-hero .lead-copy {
    max-width: 100%;
  }

  .about-hero-img {
    width: min(100%, 360px);
    margin-top: 22px;
  }

  .about-hero .lead-copy {
    font-size: 15px;
    line-height: 1.55;
  }

  .about-hero-pillars {
    gap: 8px;
  }

  .about-hero-pillars li {
    padding: 8px 10px;
    font-size: 12px;
  }

  .about-main-photo,
  .approach-img {
    height: 300px;
  }

  .why-images {
    min-height: 360px;
    padding: 34px 18px 0 0;
  }

  .why-main {
    height: 330px;
  }

  .why-small {
    width: min(220px, 54vw);
    height: 122px;
  }

  .impact-grid article {
    min-height: 150px;
  }

  .impact-grid strong {
    font-size: 36px;
  }

  .services-hero {
    padding: 66px 0 0;
  }

  .services-hero-img {
    margin-top: 28px;
  }

  .services-page-section {
    padding-top: 62px;
    padding-bottom: 70px;
  }

  .services-page-grid .service-card {
    min-height: 390px;
    padding: 34px 22px 0;
  }

  .services-page-grid .service-card h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .services-page-grid .service-card p {
    font-size: 15px;
    line-height: 24px;
  }

  .services-page-grid .service-card::before {
    bottom: 34px;
    width: 260px;
    height: 260px;
  }

  .services-page-grid .service-card img {
    width: 92%;
    height: 210px;
  }

  .detail-hero {
    padding: 62px 0 0;
  }

  .detail-hero-img {
    margin-top: 28px;
  }

  .detail-intro-collage {
    min-height: 420px;
  }

  .detail-intro-collage::after {
    left: 16%;
    width: 50%;
    height: 62px;
  }

  .detail-intro-main {
    width: 66%;
    margin-left: 4%;
  }

  .detail-intro-small {
    right: 0;
    top: 104px;
    width: 55%;
    border-width: 5px;
  }

  .detail-offer-section,
  .detail-faq-section {
    padding: 68px 0;
  }

  .detail-offer-grid article {
    min-height: auto;
  }

  .detail-faq-list h3 {
    padding: 17px 18px;
    font-size: 24px;
  }

  .detail-faq-list p {
    margin: 0 18px 20px;
    font-size: 14px;
  }

  .careers-hero {
    padding: 62px 0 0;
  }

  .careers-hero-img {
    margin-top: 28px;
  }

  .contact-hero {
    padding: 62px 0 0;
  }

  .contact-hero-img {
    margin-top: 28px;
  }

  .contact-form-section {
    padding: 62px 0;
  }

  .contact-form-shell {
    padding: 10px;
    gap: 18px;
  }

  .contact-form-image {
    min-height: 315px;
  }

  .contact-form-panel {
    padding: 10px 10px 20px;
  }

  .contact-form-panel h2 {
    font-size: 34px;
  }

  .contact-form-panel .gform_wrapper .gform_button {
    width: 100%;
  }

  .contact-info-section {
    padding: 62px 0;
  }

  .contact-info-card {
    min-height: auto;
    padding: 30px 22px;
  }

  .contact-map-section {
    padding: 62px 0 70px;
  }

  .careers-positions-section {
    padding: 68px 0;
  }

  .position-card {
    padding: 28px 22px;
  }

  .position-tags span {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .position-card h3 {
    font-size: 26px;
  }

  .position-card .btn {
    width: 100%;
  }

  .hero-image-wrap {
    min-height: 395px;
  }

  .hero-image-wrap::before {
    width: 330px;
    height: 330px;
    bottom: 44px;
  }

  .image-collage {
    min-height: 420px;
    padding-right: 0;
  }

  .collage-main {
    width: 88%;
    height: 280px;
  }

  .collage-small {
    width: 74%;
    height: 205px;
    right: 0;
  }

  .service-card {
    min-height: 300px;
  }

  .service-card img {
    width: 88%;
    height: 180px;
  }

  .why-images {
    min-height: 435px;
    padding: 40px 0 0;
  }

  .why-main {
    width: 86%;
    height: 360px;
  }

  .why-small {
    right: auto;
    left: 0;
    width: 58%;
    height: 120px;
  }

  .why-small.bottom {
    top: 128px;
  }

  .testimonial-visual {
    min-height: 585px;
  }

  .testimonial-img {
    width: 88%;
    height: 380px;
  }

  .quote-card {
    left: 0;
    right: 0;
    bottom: 46px;
    width: 92%;
    margin: 0 auto;
  }

  .stars {
    width: 100%;
    margin: 8px 0 0 64px;
  }

  .quote-person {
    flex-wrap: wrap;
  }

  .round-next {
    right: 22px;
  }

  .founder-img,
  .team-card img {
    height: 360px;
  }

  .form-card {
    padding: 26px;
  }

  .form-card .gform_wrapper .gform_fields {
    grid-template-columns: 1fr;
  }

  .form-card .gform_wrapper #field_2_1,
  .form-card .gform_wrapper #field_2_2,
  .form-card .gform_wrapper #field_2_3,
  .form-card .gform_wrapper #field_2_4 {
    grid-column: auto;
  }

  .form-card .gform_wrapper .gform_button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-links-col,
  .footer-contact-col {
    max-width: none;
  }

  .footer-quick-menu {
    grid-auto-flow: row;
    grid-template-rows: none;
    width: 100%;
  }
}


/* Columbia Cove - Contact form tablet validation layout fix */
  @media (max-width: 991px) {
    #gform_wrapper_1,
    #gform_wrapper_1 form,
    #gform_wrapper_1 .gform-body,
    #gform_wrapper_1 .gform_fields {
      width: 100%;
    }

    #gform_wrapper_1 .gform_fields {
      display: grid !important;
      grid-template-columns: 1fr !important;
      column-gap: 0 !important;
      row-gap: 18px !important;
    }

    #gform_wrapper_1 .gfield,
    #gform_wrapper_1 .gfield--width-half,
    #gform_wrapper_1 .gfield--width-full {
      grid-column: 1 / -1 !important;
      width: 100% !important;
      min-width: 0 !important;
      margin: 0 !important;
    }

    #gform_wrapper_1 .gfield_label,
    #gform_wrapper_1 .gform-field-label {
      display: block;
      width: 100%;
      margin: 0 0 8px;
      line-height: 1.35;
      white-space: normal;
    }

    #gform_wrapper_1 input[type="text"],
    #gform_wrapper_1 input[type="email"],
    #gform_wrapper_1 input[type="tel"],
    #gform_wrapper_1 textarea {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box;
    }

    #gform_wrapper_1 .gfield_validation_message,
    #gform_wrapper_1 .validation_message {
      display: block;
      width: 100%;
      margin-top: 6px;
      line-height: 1.35;
      clear: both;
    }

    #gform_wrapper_1 .gform_validation_errors {
      margin-bottom: 22px;
    }

    #gform_wrapper_1 .ginput_container_consent {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    #gform_wrapper_1 .ginput_container_consent label {
      margin: 0;
      line-height: 1.45;
    }
  }


body.privacy-policy {
    color: #1C2733;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.62;
  }

  body.privacy-policy .page-content {
    max-width: 960px;
    margin: 0 auto;
  }

  body.privacy-policy .entry-content {
    margin-top: 24px;
  }

  body.privacy-policy .entry-content p,
  body.privacy-policy .entry-content li {
    color: #1C2733;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.62;
  }

  body.privacy-policy .entry-content h2 {
    color: #071E42;
    font-family: "Athelas", Georgia, serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.04;
    margin: 34px 0 18px;
  }

  body.privacy-policy .entry-content h3 {
    color: #071E42;
    font-family: "Athelas", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.16;
    margin: 24px 0 12px;
  }

  body.privacy-policy .entry-content a {
    color: #1565D8;
  }

  body.privacy-policy .entry-content strong {
    color: #071E42;
    font-weight: 700;
  }

  @media (max-width: 767px) {
    body.privacy-policy .entry-content h2 {
      font-size: 34px;
    }
  }

