:root {
  --bg: #fffaf0;
  --surface: #ffffff;
  --surface-soft: #fff4da;
  --text: #1a2d4f;
  --muted: #5e6b84;
  --brand: #e53935;
  --brand-dark: #1e63b6;
  --accent: #f6c200;
  --line: #f0dfb4;
  --hero-shadow: 0 22px 48px rgba(30, 99, 182, 0.18);
  --card-shadow: 0 12px 28px rgba(30, 99, 182, 0.1);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 8%, #ffe6cc 0%, transparent 34%),
    radial-gradient(circle at 92% 0%, #ffe682 0%, transparent 30%),
    linear-gradient(180deg, #fffef8 0%, #fff7e8 100%);
  line-height: 1.62;
}

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

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.18;
}

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

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

.top-strip {
  background: linear-gradient(90deg, #e53935, #1e63b6);
  color: #fff6e2;
  font-size: 0.84rem;
}

.top-strip .container {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 7px 0;
  flex-wrap: wrap;
}

.top-strip strong {
  color: #ffffff;
}

header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
  background: rgb(255 255 255);
  border-bottom: 1px solid rgba(17, 54, 29, 0.1);
}

.nav {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  text-decoration: none;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, #e53935, #1e63b6);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 1.02rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 0.93rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(130deg, #e53935, #1e63b6);
  color: #fff;
  padding: 0.72rem 1.2rem;
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.28);
}

.btn-secondary {
  background: #fff;
  color: var(--brand-dark);
  border: 1px solid var(--line);
  padding: 0.72rem 1.2rem;
}

/* ── HERO BANNER SLIDER ──────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  height: clamp(580px, 82vh, 760px);
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.07);
  transition:
    opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 8s ease;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(4, 22, 12, 0.84) 0%,
    rgba(6, 28, 15, 0.56) 52%,
    rgba(8, 32, 17, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 86px;
}

.hero-text {
  max-width: 640px;
}

.tag {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
  max-width: 56ch;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.13);
  border: 1.5px solid rgba(255, 255, 255, 0.62);
  color: #fff !important;
  padding: 0.72rem 1.2rem;
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(200, 215, 200, 0.55);
}

.hero-stats-inner {
  display: flex;
}

.hero-stat {
  flex: 1;
  padding: 14px 8px;
  text-align: center;
  border-right: 1px solid #e0e8db;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brand);
  display: block;
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.77rem;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
  z-index: 4;
  border: 2px solid rgba(255, 255, 255, 0.65);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition:
    background 0.22s,
    border-color 0.22s,
    transform 0.22s;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
  transform: translateY(-65%) scale(1.09);
}

.slider-arrow.prev {
  left: 22px;
}

.slider-arrow.next {
  right: 22px;
}

/* Slide label bottom-right */
.slide-label {
  position: absolute;
  bottom: 78px;
  right: 28px;
  z-index: 4;
  background: rgba(6, 34, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 10px 16px;
  color: #fff;
  text-align: right;
  pointer-events: none;
  opacity: 0;
  transform: translateX(16px);
  transition:
    opacity 0.55s ease 0.45s,
    transform 0.55s ease 0.45s;
}

.hero-slide.active .slide-label {
  opacity: 1;
  transform: translateX(0);
}

.slide-label strong {
  font-family: "Sora", sans-serif;
  display: block;
  font-size: 0.93rem;
}

.slide-label span {
  font-size: 0.8rem;
  color: #c4e8d4;
}

/* Dots */
.hero-slider-dots {
  position: absolute;
  z-index: 4;
  bottom: 76px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.3);
}

/* Progress bar */
.slide-progress-bar {
  position: absolute;
  bottom: 72px;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 3;
  width: 0;
  transition: none;
}

section {
  padding: 52px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3.3vw, 2.35rem);
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
  max-width: 70ch;
}

/* About Us */
.about {
  background: linear-gradient(135deg, #fff8eb 0%, #fff1d3 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(30, 99, 182, 0.2);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(140deg, #e53935, #f6c200);
  color: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(229, 57, 53, 0.3);
  min-width: 130px;
}

.about-badge-num {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.78rem;
  opacity: 0.9;
  display: block;
  margin-top: 4px;
}

.about-content .tag {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e63b6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.25;
}

.about-content > p {
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.75;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 0.95rem;
}

.about-points li .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #ffe9b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.about-points li .check svg {
  width: 12px;
  height: 12px;
  stroke: #1e63b6;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Services */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
  display: flex;
  flex-direction: column;
}

.service::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(246, 194, 0, 0.16);
  right: -40px;
  top: -50px;
  z-index: 0;
}

.service:hover {
  transform: translateY(-6px);
  border-color: #f5c564;
  box-shadow: 0 20px 40px rgba(30, 99, 182, 0.16);
}

.service .id {
  font-family: "Sora", sans-serif;
  color: #1e63b6;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
  position: relative;
  z-index: 1;
}

.service h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: none;
  margin-bottom: 0;
}

/* Coverage */
.coverage {
  background: linear-gradient(120deg, #e53935, #ef6c00 52%, #f6c200);
  color: #fff8e8;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.coverage h2 {
  color: #fff;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin-bottom: 6px;
}

.coverage p {
  color: #fff3d5;
}

.coverage .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

/* Why Choose Us */
.why {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.why-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  background: linear-gradient(145deg, #fff2c8, #ffe39c);
  border: 1px solid #f5c564;
  color: #1e63b6;
}

.why-item h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Process / How We Work */
.process {
  border-top: 1px solid #f2deb0;
  border-bottom: 1px solid #f2deb0;
  background: linear-gradient(180deg, #ffffff 0%, #fff7e7 100%);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.step:hover {
  transform: translateX(5px);
  border-color: #f3bf56;
  box-shadow: 0 10px 24px rgba(30, 99, 182, 0.12);
}

.step.active {
  background: linear-gradient(135deg, #fff8e8, #fff0cd);
  border-color: #f1b94a;
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.14);
}

.step:focus-visible {
  outline: 2px solid #1e63b6;
  outline-offset: 2px;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(140deg, #e53935, #1e63b6);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text strong {
  color: #1e63b6;
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.step-text p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.step-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;
  margin-top: 0;
  color: #44567a;
  font-size: 0.86rem;
  border-top: 1px dashed transparent;
}

.step.active .step-extra {
  max-height: 80px;
  opacity: 1;
  margin-top: 8px;
  padding-top: 8px;
  border-top-color: #f3cb7a;
}

.process-note {
  margin-top: 12px;
  text-align: center;
  color: #5b6b87;
  font-size: 0.88rem;
}

.process-image-wrap {
  position: relative;
}

.process-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(30, 99, 182, 0.16);
}

/* CTA */
.cta {
  padding: 64px 0 54px;
}

.cta-box {
  border-radius: 22px;
  background: linear-gradient(125deg, #e53935, #1e63b6 65%, #f6c200);
  color: #fff;
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 18px 36px rgba(30, 99, 182, 0.32);
}

.cta-box p {
  color: #ddefe4;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.cta .btn-primary {
  background: #ffffff;
  color: #1e63b6;
}

.cta .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--card-shadow);
}

.contact-card h3 {
  margin-bottom: 9px;
}

.contact-row {
  color: var(--muted);
  margin-top: 8px;
}

.contact-row a {
  color: #1e63b6;
  text-decoration: none;
  font-weight: 700;
}

/* Footer */
footer {
  margin-top: 10px;
  background: linear-gradient(125deg, #1e63b6, #e53935 62%, #f6c200);
  color: #fff9eb;
  padding: 42px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.footer-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}

.footer-card h3 {
  color: #ffffff;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.footer-brand {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-card p {
  color: #fff4d6;
  font-size: 0.92rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  color: #fff7e4;
  text-decoration: none;
  font-weight: 700;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-contact {
  display: grid;
  gap: 7px;
}

.footer-map {
  border: 0;
  width: 100%;
  height: 210px;
  border-radius: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  margin-top: 18px;
  padding-top: 14px;
  text-align: center;
  color: #fff3d0;
  font-size: 0.9rem;
}

/* Floating call button */
.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 95;
  background: linear-gradient(140deg, #e53935, #1e63b6);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.45);
  animation: pulse-call 2s infinite;
}

.floating-call svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.58);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(229, 57, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
  }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 980px) {
  .cta-box,
  .contact-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    justify-content: flex-start;
  }

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

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

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-main {
    height: 300px;
  }

  .about-badge {
    right: 10px;
    bottom: -16px;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-img {
    height: 280px;
  }
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  z-index: 100;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--brand-dark);
  border-radius: 4px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* Animate to X when open */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    padding: 0 0 0;
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: rgba(246, 249, 241, 0.98);
    border-top: 1px solid var(--line);
    padding: 12px 0 16px;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .nav-links a:hover {
    background: #fff1cc;
  }

  .nav-links .btn-primary {
    margin: 8px 16px 0;
    text-align: center;
    border-radius: 999px;
  }

  .hero {
    height: clamp(520px, 84vh, 680px);
    align-items: flex-start;
    padding-top: 54px;
  }

  .hero-stat {
    padding: 10px 4px;
  }

  .hero-stat-num {
    font-size: 1.2rem;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .slide-label {
    display: none;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .floating-call {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .floating-call svg {
    width: 24px;
    height: 24px;
  }
}
