:root {
  --primary: #2a4393;
  --primary-dark: #1f3477;
  --accent: #b8b7b0;
  --bg: #f3f5fa;
  --text: #1f2533;
  --white: #ffffff;
  --border: #d9deeb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.7rem 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  width: clamp(170px, 24vw, 270px);
  height: auto;
}

.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.7rem;
  border-radius: 7px;
}

.main-nav a:hover {
  background: #e8eefc;
}

.hero {
  background-image: linear-gradient(rgba(17, 29, 72, 0.4), rgba(19, 31, 77, 0.42)),
    url("assets/theme/WhatsApp Image 2026-05-04 at 16.00.52.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
}

.hero-content {
  padding: 6.3rem 0 6.2rem;
  max-width: 760px;
  color: #ffffff;
}

.eyebrow {
  color: #dce3ff;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  color: #ffffff;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 0.72rem 1.2rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.section {
  padding: 4.4rem 0;
  scroll-margin-top: 105px;
}

.services h2,
.about h2,
.contact h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  color: #1b2b61;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  margin-top: 0;
  margin-bottom: 2rem;
  max-width: 760px;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 0.45rem 1rem;
  margin: 0.5rem 0 2rem;
}

.service-links a {
  color: #1f3477;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.service-links a::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #e3e9fb;
  color: #1f3477;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.service-links a:hover {
  text-decoration: underline;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(32, 53, 121, 0.07);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 1rem 1rem 1.2rem;
}

.service-body h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1.06rem;
}

.service-notes {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.service-notes li {
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.service-notes.collapsed {
  max-height: calc(1.6em * 3);
  overflow: hidden;
}

.read-more-btn {
  border: 0;
  background: transparent;
  color: #1f3477;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-top: 0.25rem;
}

.service-slider {
  position: relative;
}

.slider-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d3d8e6;
  background: #eff2fa;
  width: 100%;
}

.slide {
  display: none !important;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.slide.is-active {
  display: block !important;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #cad3ea;
  background: rgba(238, 242, 251, 0.9);
  color: #213c89;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
}

.slider-arrow[data-prev] {
  left: 8px;
}

.slider-arrow[data-next] {
  right: 8px;
}

.slider-arrow:hover {
  background: #dfe8fc;
}

.no-photo {
  background: #eef1f9;
  border: 1px dashed #c2cbdf;
  color: #46506c;
  padding: 0.8rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.about-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 6px solid var(--accent);
  border-radius: 10px;
  padding: 1rem 1rem 0.9rem;
}

.about-box ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.contact {
  background: #e7edf9;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-wrap {
  max-width: 760px;
}

.contact-list p {
  margin: 0.3rem 0;
}

.contact-list a {
  color: #1b2b61;
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-icon {
  display: inline-block;
  width: 22px;
}

.site-footer {
  background: #1a2756;
  color: #e6e9f7;
  padding: 1.4rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer h3 {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.site-footer p {
  margin: 0.2rem 0;
}

@media (max-width: 860px) {
  .service-links {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .about-wrap {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 5.3rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
  }
}
