:root {
  --color-bg: #f5fdfc;
  --color-surface: #ffffff;
  --color-muted: #ecf7f5;
  --color-accent: #ff6b4a;
  --color-accent-soft: #ffe1d8;
  --color-primary: #00a89a;
  --color-primary-deep: #007b74;
  --color-gold: #ffd66b;
  --color-text: #163436;
  --color-text-soft: #486164;
  --color-navy: #031a3a;
  --color-navy-deep: #020f24;
  --color-ink: #0b1220;
  --color-border: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 14px 36px rgba(2, 6, 23, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Playfair Display", "Georgia", serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-soft);
  background: #ffffff;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--color-primary-deep);
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--color-text-soft);
}

.nav {
  position: relative;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-soft);
  padding: 0.35rem 0;
}

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

/* nav-cta removed (Contact now a normal link) */

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 34px;
  height: 32px;
  border-radius: 999px;
  padding: 0;
}

.nav-toggle-line {
  display: block;
  height: 2px;
  width: 20px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-text-soft);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding: 3.5rem 0 3.25rem;
  position: relative;
  overflow: hidden;
}

.hero--sag {
  padding: 5.2rem 0 5.4rem;
  background: radial-gradient(900px 420px at 50% 40%, rgba(255, 214, 107, 0.22), transparent 60%),
    radial-gradient(760px 380px at 12% 56%, rgba(255, 107, 74, 0.16), transparent 62%),
    radial-gradient(720px 360px at 86% 56%, rgba(0, 168, 154, 0.22), transparent 64%),
    linear-gradient(180deg, var(--color-primary-deep) 0%, #022f2c 100%);
  color: rgba(255, 255, 255, 0.9);
}

.hero--sag::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("assets/studentngkmain.png");
  background-size: cover;
  background-position: center right;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.02);
}

.hero--sag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 38, 35, 0.72) 0%, rgba(0, 38, 35, 0.88) 62%, rgba(0, 38, 35, 0.96) 100%);
}

.hero-sag-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
}

.hero-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #ffffff;
  letter-spacing: -0.04em;
  margin-top: 1rem;
  line-height: 1.06;
}

.hero-subtitle--center {
  margin-inline: auto;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.18rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 168, 154, 0.08);
  color: var(--color-primary-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.15rem, 3.3vw, 2.8rem);
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-top: 0.85rem;
}

.hero-subtitle {
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.45rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease,
    color 0.16s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #00c1b0);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 123, 116, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 123, 116, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-deep);
  border: 1px solid rgba(0, 168, 154, 0.16);
}

.btn-ghost:hover {
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.btn-full {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.1rem;
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
}

.hero-label {
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.section {
  padding: 3.25rem 0;
}

.section-muted {
  background: #ffffff;
}

/* About section: white outer background + hero-colored inner panel */
.about-section {
  background: #ffffff;
}

.about-header {
  margin-bottom: 1.2rem;
}

.about-header .eyebrow {
  background: rgba(0, 168, 154, 0.08);
  color: var(--color-primary-deep);
}

.about-panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.2vw, 2.2rem);
  background: radial-gradient(900px 420px at 50% 40%, rgba(255, 214, 107, 0.18), transparent 60%),
    radial-gradient(760px 380px at 12% 56%, rgba(255, 107, 74, 0.12), transparent 62%),
    radial-gradient(720px 360px at 86% 56%, rgba(0, 168, 154, 0.22), transparent 64%),
    linear-gradient(180deg, var(--color-primary-deep) 0%, #022f2c 100%);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.18);
  position: relative;
  overflow: hidden;
}

.about-panel-inner {
  align-items: center;
}

.about-panel-inner > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(0.4rem, 1.6vw, 1.1rem);
}

.about-panel-inner h2 {
  margin-top: 0.55rem;
}

.about-panel-inner p {
  margin-top: 1.05rem;
}

.about-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.about-panel h2 {
  color: #ffffff;
}

.about-panel .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.about-panel .stat-card {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(2, 6, 23, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

/* Make stat text use the primary button color */
.about-panel .stat-number,
.about-panel .stat-label {
  color: var(--color-primary);
}

.section-accent {
  background: linear-gradient(135deg, rgba(0, 168, 154, 0.13), rgba(255, 123, 82, 0.12));
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}

.section-subtitle {
  margin-top: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.8;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: start;
}

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

.stat-card {
  background: var(--color-surface);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.stat-number {
  display: block;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary-deep);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.services-sag-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-sag-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
  min-height: 165px;
}

.service-sag-icon {
  width: 40px;
  height: 40px;
  color: rgba(2, 6, 23, 0.82);
  display: grid;
  place-items: center;
  margin-bottom: 1.05rem;
}

.service-sag-icon svg {
  width: 26px;
  height: 26px;
}

.service-sag-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-ink);
}

.service-sag-card p {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.74);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.region-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
  min-height: 190px;
}

.region-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.2s ease;
}

.region-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 22, 23, 0.78) 0%,
    rgba(7, 22, 23, 0.12) 58%,
    rgba(7, 22, 23, 0.0) 100%
  );
}

.region-title {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 1;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.region-card:hover .region-image {
  transform: scale(1.07);
}

.country-card,
.service-card,
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.country-card h3,
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.country-card p,
.service-card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.country-card ul,
.service-card ul {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.country-card li,
.service-card li {
  margin-bottom: 0.22rem;
}

.feature-list {
  margin-top: 1.3rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-title {
  display: block;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--color-text);
}

.feature-text {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.pill-panel {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(0, 168, 154, 0.08));
  border-radius: 999px;
  padding: 1.3rem 1.6rem;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.pill-panel-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.pill-panel-text {
  font-size: 0.9rem;
}

.section-reviews {
  background: linear-gradient(180deg, rgba(0, 168, 154, 0.06), rgba(255, 214, 107, 0.06));
}

.section-header--tight {
  margin-bottom: 1.6rem;
}

.reviews-shell {
  position: relative;
  margin-top: 0.35rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --review-card-width: clamp(280px, 62vw, 560px);
}

.reviews-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  padding-block: 0.6rem;
  padding-inline: calc((100vw - var(--review-card-width)) / 2);
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-padding-inline: calc((100vw - var(--review-card-width)) / 2);
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.1rem;
  box-shadow: var(--shadow-card);
  scroll-snap-align: center;
  flex: 0 0 var(--review-card-width);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-quote {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.74);
}

.review-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
}

.review-name {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--color-ink);
}

.review-meta {
  margin-top: 0.12rem;
  font-size: 0.82rem;
  color: rgba(15, 23, 42, 0.55);
}

.review-rating {
  color: #f2b01e;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  user-select: none;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(15, 23, 42, 0.72);
}

.reviews-nav span {
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-1px);
}

.reviews-nav--prev {
  left: calc(50% - (var(--review-card-width) / 2) - 22px);
}

.reviews-nav--next {
  right: calc(50% - (var(--review-card-width) / 2) - 22px);
}

.reviews-nav:hover {
  background: #ffffff;
  color: rgba(15, 23, 42, 0.9);
}

.reviews-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  width: min(560px, 100%);
  background: #ffffff;
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
}

.modal--consultation {
  width: min(980px, 100%);
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 38px 100px rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.consultation-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.05rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), #00c1b0);
  box-shadow: 0 18px 40px rgba(0, 123, 116, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-top: 1.05rem;
  align-self: center;
}

.consultation-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(0, 123, 116, 0.42);
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
  align-items: stretch;
}

.consultation-copy {
  border-radius: 18px;
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
  background:
    radial-gradient(520px 320px at 12% 20%, rgba(0, 168, 154, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(0, 168, 154, 0.14), rgba(255, 214, 107, 0.08));
  border: 1px solid rgba(0, 168, 154, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.consultation-title {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: rgba(2, 6, 23, 0.88);
  letter-spacing: -0.03em;
}

.consultation-text {
  margin-top: 0.7rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.72);
}

.consultation-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.14);
  position: relative;
}

.consultation-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 168, 154, 0.12), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.consultation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-close {
  position: absolute;
  right: 0.85rem;
  top: 0.75rem;
  border: none;
  background: rgba(255, 255, 255, 0.65);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  color: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.82);
  color: rgba(15, 23, 42, 0.9);
}

@media (max-width: 768px) {
  .modal--consultation {
    padding: 1rem;
  }

  .consultation-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .consultation-media {
    order: -1;
    min-height: 220px;
  }
}


.contact-layout {
  align-items: stretch;
}

.contact-details {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-soft);
}

.contact-value {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.contact-form {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}

.form-field label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-field input,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0.7rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  background: #fdfefe;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(0, 168, 154, 0.6);
  box-shadow: 0 0 0 1px rgba(0, 168, 154, 0.28);
}

.form-hint {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--color-text-soft);
}

.site-footer {
  margin-top: 0.5rem;
  background: #071617;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 3.2rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.2rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 34ch;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
}

.footer-cols {
  display: flex;
  gap: 3rem;
}

.footer-col h3 {
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  margin-top: 0.85rem;
  font-size: 0.92rem;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 2.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  padding: 1.1rem 0 1.8rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
  .hero--sag {
    padding: 4.6rem 0 4.9rem;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-sag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 0.25rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-list {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    min-width: 220px;
    padding: 0.6rem 0.7rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav.open .nav-list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero--sag {
    padding: 3.9rem 0 4.2rem;
  }

  .section {
    padding: 2.7rem 0;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .region-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

@media (max-width: 540px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-sag-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reviews-nav--prev {
    left: -0.5rem;
  }

  .reviews-nav--next {
    right: -0.5rem;
  }
}
