:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #20282d;
  --muted: #5d666f;
  --primary: #20282d;
  --primary-strong: #1c2539;
  --accent: #eaa638;
  --line: #e7e6e2;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(28, 37, 57, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1,
h2,
h3,
h4 {
  font-family: 'Red Hat Display', sans-serif;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  color: var(--primary);
}

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

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

.topbar {
  background: var(--primary-strong);
  color: #cfd6e4;
  font-size: 0.85rem;
}

.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 1rem;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.topbar-left a {
  color: #cfd6e4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.topbar-left a:hover {
  color: var(--accent);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.topbar-social a {
  color: #cfd6e4;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  transition: all 0.3s ease;
}

.topbar-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(9px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--text);
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  flex-wrap: wrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.94rem;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.main-nav a.is-active {
  color: var(--accent);
  position: relative;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 8px;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background: #d6941f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(234, 166, 56, 0.4);
}

.btn-sm {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(32, 40, 45, 0.25);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 82vh;
  min-height: 480px;
  max-height: 760px;
  overflow: hidden;
}

.hero-banner img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 1.2s ease-out;
}

@keyframes zoomIn {
  from {
    transform: scale(1.1);
    opacity: 0.8;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-banner-shape {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: clamp(220px, 22vw, 340px);
  height: auto;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero {
  padding: 3.5rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.6rem;
  align-items: stretch;
}

.hero-copy {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  font-size: 0.74rem;
  color: #7a8592;
  margin-bottom: 0.7rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0.4rem 0;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin: 1.4rem 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-stats article {
  background: #f0f0f0;
  border: 1px solid rgba(15, 30, 45, 0.08);
  border-radius: 12px;
  padding: 1.4rem 0.9rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stats article:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-stats .stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-strong);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
  display: block;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-visual:hover img {
  transform: scale(1.05);
}

.section {
  padding: 2.2rem 0;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head.centered {
  text-align: center;
  margin-bottom: 1.6rem;
}

.section-band {
  background: #f8f6f1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band {
  text-align: center;
  padding: 2.4rem 0 0.6rem;
}

.cta-band .btn {
  padding: 1.1rem 2rem;
  border-radius: 10px;
  font-size: 1.02rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 18px 45px rgba(28, 37, 57, 0.1);
  }
  50% {
    box-shadow: 0 18px 45px rgba(234, 166, 56, 0.4);
  }
}

.service-band-list {
  display: flex;
  flex-direction: column;
}

.service-band {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.service-band:nth-child(odd) {
  background: #f8f6f1;
}

.service-band:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-band-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.service-band:hover .service-band-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(234, 166, 56, 0.3);
}

.service-band-text {
  flex: 1;
}

.service-band-text h3 {
  margin-bottom: 0.3rem;
  font-size: 1.15rem;
}

.service-band-text p {
  color: var(--muted);
  margin: 0;
}

.service-band-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  transition: all 0.3s ease;
}

.service-band:hover .service-band-arrow {
  transform: translateX(5px);
  background: #d6941f;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.partners-grid img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.partners-grid img:hover {
  transform: scale(1.05);
}

.cards-2,
.cards-3 {
  display: grid;
  gap: 1rem;
}

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

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.2rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 30, 45, 0.13);
  border-color: rgba(27, 58, 99, 0.28);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ecf1f7;
  color: var(--primary-strong);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.card-link:hover {
  color: var(--accent);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  transition: all 0.3s ease;
}

.timeline article:hover .step-num {
  background: var(--accent);
  transform: scale(1.15);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.timeline article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  transition: all 0.3s ease;
}

.timeline article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

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

.ticks li {
  padding-left: 0.2rem;
  margin: 0.5rem 0;
  transition: transform 0.2s ease;
}

.ticks li:hover {
  transform: translateX(5px);
}

.ticks li i {
  margin-right: 0.35rem;
  color: var(--primary-strong);
}

.side-block {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.side-block-reverse {
  flex-direction: row-reverse;
}

.side-block-img {
  flex: 0 0 42%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.side-block-img img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.side-block-img:hover img {
  transform: scale(1.08);
}

.side-block-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.side-block-text .btn {
  align-self: flex-start;
}

.page-hero {
  padding: 2.8rem 0 1rem;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.page-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.page-hero-text .btn {
  align-self: flex-start;
}

.page-hero-img img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.5s ease;
}

.page-hero-img:hover img {
  transform: scale(1.05);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.news-card {
  padding: 0;
  overflow: hidden;
}

.news-thumb {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.news-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.04);
}

.news-body {
  padding: 1rem;
}

.news-date {
  color: #7a8592;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-page-section {
  padding-top: 2rem;
}

.contact-page-head {
  margin-bottom: 1.6rem;
}

.contact-page-head h1 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 0.4rem;
}

.contact-page-head p {
  color: var(--muted);
  max-width: 520px;
}

.contact-map-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.contact-map-info h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--primary-strong);
  margin-bottom: 0.7rem;
}

.contact-hours {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-hours li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-hours li i {
  color: var(--primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-map-info p {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.contact-form select {
  cursor: pointer;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd3d7;
  border-radius: 10px;
  padding: 0.75rem;
  font: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(234, 166, 56, 0.1);
}

.alert {
  border-radius: 12px;
  padding: 0.8rem;
}

.alert-error {
  background: #fce8e8;
  border: 1px solid #efb9b9;
  color: #7b2222;
}

.alert-success {
  background: #e7f0f6;
  border: 1px solid #b7cfe0;
  color: #123a5f;
}

.site-footer {
  margin-top: 2rem;
  background: var(--primary-strong);
  color: #cfd6e4;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta p {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-cta h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2.4rem 0;
}

.footer-grid h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.site-footer a {
  color: #cfd6e4;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--accent);
}

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

.site-footer li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.55rem 0;
  font-size: 0.92rem;
}

.site-footer li i {
  color: var(--accent);
  margin-top: 0.2rem;
}

.footer-quick-list li {
  position: relative;
  padding-left: 0.9rem;
  transition: transform 0.2s ease;
}

.footer-quick-list li:hover {
  transform: translateX(5px);
}

.footer-quick-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #9aa4b8;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .topbar-left span,
  .topbar-left a span.title-label {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 92px;
    right: 4%;
    width: min(360px, 92vw);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid,
  .page-hero-inner,
  .cards-2,
  .cards-3,
  .timeline,
  .footer-grid,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    height: 46vh;
    min-height: 260px;
  }

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

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

  .side-block,
  .side-block-reverse {
    flex-direction: column;
  }

  .side-block-img {
    flex: none;
    width: 100%;
  }

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

  .service-band {
    flex-wrap: wrap;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
