/* Typography & base */
:root {
  --blue: #0a7b55;
  --yellow: #63d391;
  --light: #f7f9fc;
  --muted: #4b5563;
  --dark: #0a503a;
  --card: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", "Source Sans Pro", sans-serif;
  margin: 0;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}

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

p {
  margin: 0 0 1rem 0;
  color: var(--muted);
}

h1, h2, h3, h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  color: #0f172a;
}

.page-hero {
  padding: 48px 0;
}

.page-banner + .page-hero,
.page-hero + section {
  margin-top: 16px;
}

.page-hero h1 {
  margin: 0 0 8px;
  color: #0f172a;
}

.page-hero p {
  margin: 0;
  color: #4b5563;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* Give body content breathing room below sticky header/banner */
main,
.page-hero,
.about-hero,
.contact,
.services,
.news,
.doctors,
.appointment,
.service-detail,
.specialists,
.owner,
.cta,
.partners,
.partners-secondary,
.stats-bar,
.highlights {
  padding-top: 20px;
}

/* Top bar */
/* Header / navigation */
.sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.sticky-header.is-floating {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
  position: relative;
  flex-wrap: wrap;
}

.topbar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  align-items: center;
}

.topbar__phone {
  font-weight: 700;
  color: var(--blue);
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-branding img {
  max-height: 50px;
  height: auto;
}

.site-title {
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
}

.site-tagline {
  font-size: 12px;
  color: var(--yellow);
}

.primary-nav .menu {
  list-style: none;
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 0;
}

.primary-nav .menu > li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
}

.primary-nav .menu > li::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23cbd5e1' stroke-width='1.5'/%3E%3C/svg%3E");
  opacity: 0.9;
}

.primary-nav a {
  font-weight: 700;
  font-size: 14px;
  color: #374151;
}

.primary-nav a:hover {
  color: var(--yellow);
}

.primary-nav .menu > li.current-menu-item > a,
.primary-nav .menu > li.current-page-ancestor > a,
.primary-nav .menu > li.current_page_item > a {
  color: var(--yellow);
}

.primary-nav .menu > li.current-menu-item::after,
.primary-nav .menu > li.current-page-ancestor::after,
.primary-nav .menu > li.current_page_item::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  width: 34px;
  margin: 0 auto;
  border-radius: 3px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #111827;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--blue) 40%, #132f6b 60%);
  color: #fff;
  padding: 100px 0 120px;
  overflow: hidden;
}

.highlights {
  padding: 50px 0;
  background: #fff;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
  align-items: start;
}

.highlight-card {
  background: transparent;
  border-radius: 0;
  padding: 8px 6px;
  box-shadow: none;
}

.highlight-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #f5f6fa;
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.highlight-card h4 {
  margin: 6px 0 8px;
  font-weight: 700;
  color: #0f172a;
  font-size: 17px;
}

.highlight-card p {
  margin: 0 auto;
  color: #6b7280;
  line-height: 1.5;
  max-width: 240px;
}

.hero--boxed .hero__background {
  max-width: 1140px;
  width: 92vw;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero__content {
  position: relative;
}

.hero__text {
  max-width: 520px;
}

.hero__text h1 {
  font-size: clamp(32px, 4vw, 44px);
  color: #fff;
}

.hero__text p {
  color: #e5e7eb;
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--yellow);
  color: #0b1b3a;
  box-shadow: 0 10px 30px rgba(247, 166, 0, 0.35);
}

.btn-secondary {
  background: #fff;
  color: var(--blue);
}

.feature-bar {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.feature-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.feature {
  text-align: center;
}

.feature__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #f9fafb;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--yellow);
}

/* Intro */
.intro {
  padding: 80px 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}

.intro__card,
.expert-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.intro__tabs {
  display: inline-flex;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.intro__tabs .active {
  color: var(--blue);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.expert-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
}

.expert-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c7d2fe, #f1f5f9);
}

.expert-card__name {
  font-weight: 700;
}

.expert-card__role {
  color: var(--yellow);
  font-weight: 700;
  font-size: 13px;
}

/* CTA */
.cta {
  background: var(--blue);
  color: #fff;
  padding: 50px 0;
}

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

.cta__inner h3 {
  margin-bottom: 6px;
  color: #fff;
}

.cta__inner p {
  color: #e5e7eb;
}

/* Why */
.why {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* About page */
.about-hero {
  padding: 60px 0;
}
.about-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}
.about-hero__images {
  position: relative;
  min-height: 260px;
}
.about-hero__img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-hero__img--main {
  width: 80%;
}
.about-hero__img--secondary {
  position: absolute;
  width: 50%;
  bottom: -20px;
  right: 0;
}
.about-hero__text h1 {
  font-size: 36px;
  margin: 6px 0 12px;
}

.stats-bar {
  background: #f9fafb;
  padding: 30px 0;
  margin: 20px 0 40px;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-item {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.stat-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--yellow);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.stat-item__value {
  font-weight: 800;
  color: #0f172a;
}
.stat-item__label {
  color: var(--muted);
}

.specialists {
  background: #f9fafb;
  padding: 60px 0;
}
.specialists__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  text-align: center;
}
.specialist-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}
.specialist-card__avatar img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.specialist-card__name {
  font-weight: 700;
  margin-top: 8px;
}
.specialist-card__role {
  color: var(--muted);
  font-size: 13px;
}

.owner {
  padding: 60px 0;
}
.owner__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}
.owner__text p {
  color: var(--muted);
  margin-bottom: 12px;
}
.owner__name {
  font-weight: 800;
}
.owner__role {
  color: var(--yellow);
  font-weight: 700;
}

.why__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: #f9fafb;
  border: 1px solid var(--border);
}

.why__number {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--blue);
  border: 1px solid var(--border);
}

.why__visual {
  display: grid;
  gap: 12px;
}

.mock-img {
  width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e5e7eb, #f9fafb);
  padding-top: 60%;
  position: relative;
  overflow: hidden;
}

.mock-img--gold {
  background: radial-gradient(circle at 30% 30%, #f7c948, #d97706);
}

.mock-img--clinic {
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.mock-img--team {
  background: linear-gradient(145deg, #c7d2fe, #eef2ff);
}

.mock-img--tint {
  background: linear-gradient(145deg, #e0f2fe, #eef2ff);
}

/* Services */
.services {
  background: #f9fafb;
  padding: 80px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.services__grid--gallery {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.service-card--gallery {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  display: grid;
  grid-template-rows: 240px 1fr;
  gap: 10px;
}

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

.service-card__body {
  padding: 0;
}

.service-card__body h4 {
  margin: 6px 0 6px;
}

.service-card__body p {
  margin: 0 0 10px;
  color: #4b5563;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.service-card h4 {
  margin-top: 4px;
}

.service-card__body .link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}
.service-card__body .link-more::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 2px;
  background: var(--yellow);
}

/* Services blocks layout */
.services-blocks {
  background: #f9fafb;
  padding: 80px 0;
}

.services-blocks .container {
  display: grid;
  gap: 28px;
}

.service-block {
  display: grid;
  grid-template-columns: minmax(240px, 40%) 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.service-block__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg);
}

.service-block__content h3 {
  margin: 0 0 12px;
}

.service-block__content p {
  margin: 0;
  color: #4b5563;
}

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

  .service-block__img img {
    height: 220px;
  }
}

/* Service detail */
.service-detail {
  padding: 60px 0;
}
.service-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.service-detail__feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.service-detail__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f6fa;
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.service-detail__process ol {
  padding-left: 20px;
  color: var(--muted);
}
.service-detail__process li {
  margin-bottom: 8px;
  font-weight: 700;
  color: #0f172a;
}
.service-detail__prices table {
  width: 100%;
  border-collapse: collapse;
}
.service-detail__prices td {
  padding: 10px 6px;
  border-bottom: 1px solid var(--border);
}
.service-detail__prices .price {
  text-align: right;
  font-weight: 700;
  color: #ff9f1c;
}
.service-detail__sidebar {
  background: #f9fafb;
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.service-detail__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-detail__list li {
  padding: 8px 6px;
  border-left: 3px solid transparent;
}
.service-detail__list li.is-active {
  border-left-color: var(--yellow);
  background: #fff;
}
.service-detail__list a {
  color: #0f172a;
  font-weight: 700;
}
.service-detail__promo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

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

/* News */
.news {
  padding: 80px 0;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.news-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: 180px 1fr;
}

.news-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body {
  padding: 14px;
}

.news-card__meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

/* Notice board page */
.notice-board-page {
  padding: 64px 0 120px;
  background: linear-gradient(180deg, #fdfdff 0%, #f3f6fb 100%);
}

.notice-board-page__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.notice-board-page__heading {
  margin-bottom: 24px;
  text-align: center;
}

.notice-board-page__title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0;
  color: #0f172a;
}

.notice-board-page__subtitle {
  margin-top: 6px;
  color: #6b7280;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice-board-page__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.notice-board-page__empty-message {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  padding: 22px 0;
}

.notice-card {
  position: relative;
  padding: 32px 36px 32px 88px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 25px 40px rgba(15, 23, 42, 0.08);
  overflow: visible;
  --notice-accent: #94a3b8;
  --notice-icon-color: #475569;
  --notice-icon-shadow: rgba(75, 85, 105, 0.25);
}

.notice-card__stripe {
  position: absolute;
  left: 44px;
  top: 26px;
  bottom: 26px;
  width: 6px;
  border-radius: 4px;
  background: var(--notice-accent);
}

.notice-card__icon {
  position: absolute;
  left: 6px;
  top: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--notice-icon-color);
  box-shadow: 0 18px 35px var(--notice-icon-shadow);
  z-index: 2;
}

.notice-card__content {
  position: relative;
  z-index: 1;
}

.notice-card__headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.notice-card__category {
  font-weight: 700;
  color: var(--notice-accent);
}

.notice-card__date {
  font-weight: 600;
  color: #94a3b8;
}

.notice-card__title {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  line-height: 1.3;
}

.notice-card__title-link {
  color: inherit;
  text-decoration: none;
}

.notice-card__title-link:hover {
  text-decoration: underline;
}

.notice-card__message {
  margin: 0;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.65;
}

.notice-card--variant-emerald {
  --notice-accent: #2f857f;
  --notice-icon-color: #0b6b57;
  --notice-icon-shadow: rgba(47, 133, 127, 0.35);
}

.notice-card--variant-blue {
  --notice-accent: #4f6ff4;
  --notice-icon-color: #2238c9;
  --notice-icon-shadow: rgba(79, 111, 244, 0.35);
}

.notice-card--variant-amber {
  --notice-accent: #d08b2e;
  --notice-icon-color: #794d10;
  --notice-icon-shadow: rgba(208, 139, 46, 0.35);
}

.notice-card--variant-red {
  --notice-accent: #e0473a;
  --notice-icon-color: #941c0d;
  --notice-icon-shadow: rgba(224, 71, 58, 0.35);
}

.notice-card--variant-teal {
  --notice-accent: #1276a7;
  --notice-icon-color: #0b4f72;
  --notice-icon-shadow: rgba(18, 118, 167, 0.35);
}

.notice-card--variant-neutral {
  --notice-accent: #94a3b8;
  --notice-icon-color: #475569;
  --notice-icon-shadow: rgba(75, 85, 105, 0.25);
}

@media (max-width: 880px) {
  .notice-card {
    padding-left: 72px;
  }

  .notice-card__icon {
    left: 4px;
  }

  .notice-card__stripe {
    left: 36px;
  }
}

@media (max-width: 640px) {
  .notice-board-page {
    padding: 80px 0 100px;
  }

  .notice-board-page__heading {
    margin-bottom: 28px;
  }

  .notice-card {
    padding: 26px 26px 26px 68px;
  }

  .notice-card__headline {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Partners */
.partners {
  padding: 60px 0;
  background: #fff;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  align-items: center;
  text-align: center;
  color: var(--muted);
}

.partner {
  border: 1px dashed var(--border);
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
}

/* Secondary partners strip */
.partners-secondary {
  background: linear-gradient(180deg, #f5f7fb 0%, #eef2f7 100%);
  padding: 40px 0 50px;
}
.partners-secondary__inner {
  text-align: center;
  background: #fff;
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.partners-secondary__title {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 700;
}
.partners-secondary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px 18px;
  align-items: center;
}
.partners-secondary__item {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: #7b8794;
  font-size: 13px;
  padding: 10px 8px;
  border-radius: var(--radius);
}
.partners-secondary__logo img {
  max-height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
}
.partners-secondary__name {
  font-weight: 700;
  color: #0f172a;
}
.partners-secondary__desc {
  color: #6b7280;
  font-size: 12px;
}

/* Doctors */
.doctors {
  padding: 80px 0;
  background: #fff;
}

.doctors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.doctor-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  align-items: center;
}

.doctor-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f2fe, #d9f99d);
}

.doctor-card__role {
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 4px;
}

/* Appointment */
.appointment {
  background: #f9fafb;
  padding: 80px 0;
}

.appointment__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

.appointment__list {
  padding-left: 18px;
  color: var(--muted);
}

.appointment__form {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.appointment__form .field {
  display: grid;
  gap: 6px;
}

.appointment__form input,
.appointment__form select,
.appointment__form textarea {
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
}

/* Contact */
.contact {
  padding: 80px 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.contact__list li + li {
  margin-top: 8px;
}

.contact__map iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact__map--full {
  margin-top: 16px;
}

.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: none;
}

.contact-info-card {
  border-left: 3px solid #e5e7eb;
}

.contact-info-card__item + .contact-info-card__item {
  margin-top: 10px;
}

.contact-info-card__label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-info-card__value a {
  color: #0f172a;
  font-weight: 700;
}

.contact-info-card__social {
  margin-top: 12px;
}

.contact-form-card h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

.contact-form-card {
  background: #f5f7fb;
  border: 1px solid #e5e7eb;
}

.contact-form-card .appointment__form {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.contact-form-card .btn-primary {
  width: 100%;
}

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

/* Page banner */
.page-banner {
  background: #0a7b55;
  color: #fff;
  padding: 28px 0;
}
.page-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-banner__title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.page-banner__crumbs {
  font-size: 13px;
  color: #cbd5e1;
}
.page-banner__crumbs a {
  color: #cbd5e1;
}
.page-banner__crumbs .sep {
  margin: 0 6px;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #e5e7eb;
  padding: 50px 20px 0;
}
.site-footer,
.site-footer p,
.site-footer a,
.site-footer li,
.site-footer h4,
.footer__tagline,
.newsletter__hint,
.footer__links a {
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.site-footer h4 {
  color: #fff;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cbd5e1;
}

.footer__list li + li {
  margin-top: 8px;
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px 12px;
  border-radius: var(--radius);
  border: none;
}

.newsletter-form button {
  padding: 10px 12px;
  background: var(--yellow);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
}

.footer__social span {
  display: inline-block;
  margin-right: 8px;
  padding: 6px;
  background: #0f254f;
  border-radius: 50%;
  font-size: 12px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 20px;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__links a {
  color: #cbd5e1;
  margin-left: 12px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-block;
  background-color: #0f254f;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
  background-color: var(--yellow);
  transform: translateY(-2px);
}

.social-facebook {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 4h2V1h-2a5 5 0 0 0-5 5v2H7v3h3v8h3v-8h3l1-3h-4V6a2 2 0 0 1 2-2Z' fill='%23fff'/%3E%3C/svg%3E");
}

.social-twitter {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 5.8a6.6 6.6 0 0 1-1.9.5 3.3 3.3 0 0 0 1.4-1.8 6.5 6.5 0 0 1-2.1.8 3.3 3.3 0 0 0-5.6 3v.7A9.3 9.3 0 0 1 3.7 5a3.3 3.3 0 0 0 1 4.4 3.3 3.3 0 0 1-1.5-.4v.1a3.3 3.3 0 0 0 2.7 3.3 3.3 3.3 0 0 1-1.5.1 3.3 3.3 0 0 0 3 2.2A6.6 6.6 0 0 1 2 17.3 9.3 9.3 0 0 0 7 19c6.1 0 9.5-5 9.5-9.5v-.4A6.7 6.7 0 0 0 22 5.8Z' fill='%23fff'/%3E%3C/svg%3E");
}

.social-linkedin {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9h3v9H6zM7.5 3a1.75 1.75 0 1 1 0 3.5A1.75 1.75 0 0 1 7.5 3ZM10.5 9H13v1.2C13.4 9.5 14.4 9 15.6 9 18.3 9 19 10.7 19 13.2V18h-3v-4c0-1.1-.2-2-1.3-2-1.2 0-1.7.8-1.7 2V18h-2.5V9Z' fill='%23fff'/%3E%3C/svg%3E");
}

.social-instagram {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4h10a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3Zm0 2a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H7Zm5 2.5A3.5 3.5 0 1 1 8.5 12 3.5 3.5 0 0 1 12 8.5Zm0 2a1.5 1.5 0 1 0 1.5 1.5A1.5 1.5 0 0 0 12 10.5Zm4.25-4.75a.75.75 0 1 1-.75.75.75.75 0 0 1 .75-.75Z' fill='%23fff'/%3E%3C/svg%3E");
}

.social-youtube {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.6 7.2a2.5 2.5 0 0 0-1.8-1.8C18 5 12 5 12 5s-6 0-7.8.4A2.5 2.5 0 0 0 2.4 7.2 26.6 26.6 0 0 0 2 12a26.6 26.6 0 0 0 .4 4.8 2.5 2.5 0 0 0 1.8 1.8C6 19 12 19 12 19s6 0 7.8-.4a2.5 2.5 0 0 0 1.8-1.8A26.6 26.6 0 0 0 22 12a26.6 26.6 0 0 0-.4-4.8ZM10 15V9l5 3-5 3Z' fill='%23fff'/%3E%3C/svg%3E");
}

/* Utilities */
.kicker {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  font-weight: 800;
  font-size: 13px;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .primary-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 70px 18px 24px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 25;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav .menu {
    flex-direction: column;
    gap: 14px;
  }

  .primary-nav .menu > li {
    padding-top: 0;
  }

  .primary-nav .menu > li::after {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    order: -1;
  }

  .header__inner {
    justify-content: flex-start;
    gap: 16px;
  }

  .cta__inner, .header__inner {
    flex-wrap: wrap;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 70px 0 90px;
  }
}
