:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-soft: #eef2f7;
  --text: #11263e;
  --muted: #627487;
  --primary: #123f6d;
  --primary-dark: #0c2d4d;
  --accent: #c9a062;
  --accent-soft: rgba(201, 160, 98, 0.12);
  --border: #dde5ef;
  --shadow: 0 22px 60px rgba(15, 36, 58, 0.08);
  --shadow-strong: 0 24px 70px rgba(8, 25, 43, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(201, 160, 98, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #f8fafc 0%, #f6f7fb 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(201, 160, 98, 0.22),
      transparent 22%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(18, 63, 109, 0.12),
      transparent 18%
    ),
    linear-gradient(135deg, #f0f5fb 0%, #f7f8fb 48%, #eef2f8 100%);
  padding-bottom: 76px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(18, 63, 109, 0.06);
  filter: blur(10px);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 58px;
  border-radius: 16px;
  overflow: hidden;
}

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

.logo-wrap span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
  padding-top: 44px;
}

.eyebrow,
.section-tag,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 14px;
}

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

.section-tag.light {
  color: #9bc9ff;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 12ch;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-description,
.section-copy {
  font-size: 1.05rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 30px rgba(18, 63, 109, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 34px rgba(18, 63, 109, 0.28);
}

.btn-secondary {
  background: rgba(18, 63, 109, 0.08);
  color: var(--primary);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-highlights div,
.intro-card,
.step,
.service-card,
.expertise-card,
.contact-box,
.areas-list,
.image-stack img,
.project-card,
.feature-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-highlights div {
  padding: 20px;
  backdrop-filter: blur(12px);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  max-height: 800px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
}

.hero-card {
  position: absolute;
  max-width: 280px;
  padding: 22px 22px 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-card small,
.project-meta span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-card p,
.hero-card span {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.top-card {
  top: 28px;
  right: -20px;
}

.bottom-card {
  left: -28px;
  bottom: 30px;
}

.bottom-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.intro {
  margin-top: -18px;
}

.intro-grid,
.two-column,
.areas-layout,
.split-banner,
.strip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.intro-card,
.step,
.service-card,
.contact-box,
.areas-list,
.feature-card {
  padding: 30px;
}

.partner-strip {
  padding-top: 28px;
}

.strip-grid {
  gap: 44px;
}

.strip-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.strip-pills span,
.area-pill {
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(17, 38, 62, 0.05);
}

.image-stack {
  display: grid;
  gap: 20px;
}

.image-stack img {
  width: 100%;
}

.check-list,
.expertise-card ul,
.reasons {
  margin: 24px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.muted-section {
  background: linear-gradient(180deg, rgba(18, 63, 109, 0.04), transparent);
}

.steps,
.services-grid,
.expertise-grid,
.feature-grid {
  display: grid;
  gap: 24px;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}

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

.expertise-card,
.project-card {
  overflow: hidden;
}

.expertise-card img,
.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-content {
  padding: 28px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head .section-copy {
  max-width: 520px;
}

.project-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.project-viewport {
  overflow: hidden;
}

.project-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.project-track .project-card {
  flex: 0 0 calc((100% - 48px) / 3);
}

.project-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.project-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 38px rgba(17, 38, 62, 0.16);
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 38, 62, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.carousel-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(17, 38, 62, 0.14);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.project-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.project-meta span {
  margin-bottom: 4px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(18, 63, 109, 0.06);
  letter-spacing: 0.08em;
}

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

.service-card {
  font-weight: 700;
  color: var(--text);
  min-height: 130px;
  display: flex;
  align-items: center;
}

.dark-section {
  background: linear-gradient(135deg, #0e2238, #143455 60%, #1a446d);
  color: #fff;
}

.dark-section p,
.dark-section li,
.dark-section h2 {
  color: #fff;
}

.split-banner {
  gap: 48px;
}

.showcase-section {
  background: linear-gradient(180deg, rgba(201, 160, 98, 0.08), transparent);
}

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

.feature-card {
  min-height: 110px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-section {
  padding-top: 44px;
}

.contact-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #fff, #f7f9fc);
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: min(100%, 360px);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(17, 38, 62, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 63, 109, 0.25);
  box-shadow: 0 16px 30px rgba(17, 38, 62, 0.1);
}

.contact-link span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-link small {
  margin-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-link strong {
  font-size: 1rem;
  color: var(--text);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(18, 63, 109, 0.08);
  color: var(--primary);
}

.contact-favicon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: block;
}

.contact-google-icon {
  font-size: 22px;
  line-height: 1;
  color: var(--primary);
}

.whatsapp-link .contact-icon {
  background: rgba(37, 211, 102, 0.14);
  color: #1e9f52;
}

@media (max-width: 1100px) {
  .project-track .project-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 960px) {
  .hero-content,
  .intro-grid,
  .two-column,
  .areas-layout,
  .split-banner,
  .expertise-grid,
  .services-grid,
  .steps,
  .hero-highlights,
  .strip-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    min-height: auto;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-card,
  .bottom-card {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 74px 0;
  }

  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  h1 {
    max-width: none;
  }

  .logo-wrap {
    flex-direction: column;
    text-align: center;
  }

  .project-track .project-card {
    flex: 0 0 100%;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}
