:root {
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --primary: #ab4a9c;
  --primary-light: #c86bbc;
  --primary-dark: #93388a;
  --mint: #ecfdf5;
  --sky: #e0f2fe;
  --cream: #fffdf7;
  --light: #f8fafc;
  --white: #ffffff;
  --text: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 55%, #f3e8ff 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.container {
  width: min(1280px, 95%);
  margin: auto;
}

.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.86rem;
  padding: 9px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.lang a {
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: #64748b;
  transition: 0.3s;
}

.lang a.active {
  color: #a855f7;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(168, 85, 247, 0.2);
  backdrop-filter: blur(10px);
  box-shadow:
    0 8px 24px rgba(168, 85, 247, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--navy-soft);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(171, 74, 156, 0.24);
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 1.1rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(239, 223, 236, 0.85) 40%,
      rgba(171, 74, 156, 0.45) 100%
    ),
    url("../img/image-3.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% -10%;
  height: 55%;
  background: radial-gradient(circle, #f3e8ff 0%, rgba(243, 232, 255, 0) 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #f3e8ff;
  color: #ab4a9c;
  border: 1px solid #e9d5ff;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
  color: var(--navy);
  margin-bottom: 22px;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.12rem;
  color: #475569;
  max-width: 660px;
  margin-bottom: 32px;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 22px;
  border-radius: 16px;
  font-weight: 800;
  transition: 0.25s;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(171, 74, 156, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-light {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.hero-panel {
  justify-self: end;
  max-width: 390px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 180px;
  border-radius: 22px;
  object-fit: cover;
  margin-bottom: 18px;
}

.panel-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #e2e8f0;
}

.panel-line:last-child {
  border-bottom: 0;
}

.panel-line strong {
  color: var(--navy);
}

.stats-wrap {
  margin-top: -44px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.stat-card h2 {
  font-size: 2.05rem;
  color: var(--primary);
  letter-spacing: -0.05em;
}

.stat-card p {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 50px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: #f3e8ff;
  color: var(--primary);
  font-size: 1.55rem;
  margin-bottom: 18px;
}
.card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 9px;
}

.card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.image-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid #fff;
  background: #fff;
}

.image-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #475569;
  font-weight: 650;
}

.check-item span {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9d5ff;
  color: #8b3a7f;
  font-size: 0.86rem;
}

.band {
  background: linear-gradient(135deg, #fae8ff 0%, #f3e8ff 100%);
  border-block: 1px solid #d8b4fe;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.news-card {
  min-height: 260px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.news-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.news-card div {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-card small {
  color: #c86cbc;
  font-weight: 800;
}

.news-card h3 {
  font-size: 1.5rem;
  line-height: 1.15;
  margin-top: 10px;
}

.cta {
  padding: 86px 0;
}

.cta-box {
  background: linear-gradient(200deg, #581c87 0%, #ab4a9c 100%);
  color: #fff;
  border-radius: 34px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(200, 107, 188, 0.25);
}

.cta-box h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
}

.cta-box p {
  color: #cbd5e1;
  max-width: 680px;
}

footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 52px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 36px;
}

footer h4 {
  color: var(--navy);
  margin-bottom: 12px;
}

footer p,
footer a {
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.copyright {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  color: #94a3b8;
  font-size: 0.92rem;
}

.page-hero {
  padding: 92px 0;
  background: linear-gradient(135deg, #f5e6f2 0%, #eadcf7 50%, #ffffff 100%);
}

.page-hero h1 {
  font-size: clamp(41.6px, 6vw, 66.8px);
  line-height: 1;
  letter-spacing: -0.07em;
  color: var(--navy);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.08rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font: inherit;
}

.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.map-box {
  background: #f3e8ff;
  border-radius: 26px;
  min-height: 320px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 900;
  border: 1px solid #e9d5ff;
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }
  .nav-links {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: var(--shadow);
  }
  .nav-links.show {
    display: flex;
  }
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(239, 223, 236, 0.82) 55%,
        rgba(171, 74, 156, 0.5) 100%
      ),
      url("../img/image-3.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-grid,
  .split,
  .contact-grid,
  .news-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    justify-self: stretch;
    max-width: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    display: none;
  }
  .container {
    width: 92%;
  }
  .navbar {
    min-height: 70px;
  }
  .logo {
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 1px;
    width: auto;
    display: block;
  }
  .nav-links {
    top: 70px;
  }
  .hero-grid {
    padding: 58px 0 76px;
  }
  .hero h1 {
    font-size: 3.05rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    width: 100%;
  }
  .stats-wrap {
    margin-top: -38px;
  }
  .stats-grid,
  .cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 70px 0;
  }
  .image-card img {
    height: 280px;
  }
  .cta-box {
    padding: 32px;
  }
}

#menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--navy);
}

@media (max-width: 768px) {
  .navbar {
    position: relative;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #ffffff;
    padding: 20px;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    z-index: 99;
  }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }
}

.service-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.service-main {
  display: grid;
  gap: 24px;
}

.service-feature {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(171, 74, 156, 0.1);
  color: var(--primary);
  font-size: 1.8rem;
}

.service-feature h3,
.service-side h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.service-feature p {
  margin-bottom: 12px;
}

.shift-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.shift-box div {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.shift-box strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

.shift-box span {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-side {
  background: linear-gradient(
    135deg,
    rgba(171, 74, 156, 0.1),
    rgba(125, 59, 152, 0.08)
  );
  border: 1px solid rgba(171, 74, 156, 0.18);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.mini-service {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(171, 74, 156, 0.15);
}

.mini-service:last-of-type {
  border-bottom: none;
}

.mini-service span {
  font-size: 1.45rem;
}

.mini-service h4 {
  margin-bottom: 4px;
}

.mini-service p {
  font-size: 0.95rem;
  margin: 0;
}

.service-btn {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-side {
    position: static;
  }
}

@media (max-width: 600px) {
  .service-feature {
    grid-template-columns: 1fr;
  }

  .shift-box {
    grid-template-columns: 1fr;
  }
}
.office-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  margin-top: 20px;
  transition: 0.25s;
}

.office-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.office-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.office-header span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f3e8ff;
  color: var(--primary);
  font-size: 1.1rem;
}

.office-header h4 {
  margin: 0;
  color: var(--navy);
}

.office-card p {
  margin-bottom: 10px;
}

.office-btn {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

.news-list {
  display: grid;
  gap: 26px;
}

.news-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.news-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.news-item > div {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-item small {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.news-item h3 {
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.news-item p {
  color: var(--muted);
  margin-bottom: 20px;
}

.news-item .btn {
  width: fit-content;
}

@media (max-width: 800px) {
  .news-item {
    grid-template-columns: 1fr;
  }

  .news-item img {
    min-height: 220px;
  }

  .news-item .btn {
    width: 100%;
  }
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  margin-bottom: 12px;
}

.service-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-content a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 26px;
}

.service-content h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.service-content p {
  color: var(--muted);
}

.facility-panel {
  margin-top: 50px;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(171, 74, 156, 0.1),
    rgba(255, 255, 255, 0.95)
  );
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 35px;
}

.facility-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.facility-list div {
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--navy);
}

.service-cta {
  margin-top: 40px;
  padding: 30px;
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-cta p {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .service-grid,
  .facility-panel {
    grid-template-columns: 1fr;
  }

  .facility-list {
    grid-template-columns: 1fr;
  }

  .service-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.agency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.agency-card {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #ece7f5;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.agency-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.1rem;
}

.agency-card p {
  color: var(--muted);
  margin: 0;
}

.agency-card-wide {
  grid-column: span 3;
}

@media (max-width: 900px) {
  .agency-grid {
    grid-template-columns: 1fr;
  }

  .agency-card-wide {
    grid-column: span 1;
  }
}
.location-map {
  max-width: 1000px;
  margin: 40px auto 0;
}

.location-card {
  overflow: hidden;
}

.location-card img {
  width: 100%;
  display: block;
}

.location-stats {
  margin-top: 30px;
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}
.map-caption {
  text-align: center;
  margin-top: 16px;
  color: var(--muted);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.flow-chart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.flow-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.flow-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ab4a9c 0%, #8b3e7d 100%);
}

.flow-step h3 {
  margin-bottom: 12px;
  font-size: 14px;
}

.flow-step p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.flow-arrow {
  font-size: 2rem;
  color: #ab4a9c;
  font-weight: 800;
}

@media (max-width: 991px) {
  .flow-chart {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .flow-step {
    width: 100%;
    max-width: 420px;
  }
}
