/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #fff;
  color: #1a1a2e;
}

/* ===== NAV ===== */
nav {
  background: #0a0a0a;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  height: 72px;
}
.logo-img img {
  height: 66px;
  width: auto;
  display: block;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
}
.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
}
.nav-links > li > a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
  display: block;
}
.nav-links > li > a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f5c518;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-phone svg {
  width: 16px;
  height: 16px;
  fill: #f5c518;
}
.nav-phone:hover {
  color: #f5c518;
}
.nav-cta {
  background: #f5c518;
  color: #0a0a0a;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  border: 2px solid #f5c518;
}
.nav-cta:hover {
  background: #e0b000;
  color: #0a0a0a;
  border-color: #e0b000;
}

/* ===== DROPDOWN MENU ===== */
.has-dropdown {
  position: relative;
  padding: 0;
}
.drop-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
  background: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: inherit;
  transition:
    background 0.2s,
    color 0.2s;
}
.drop-trigger:hover,
.has-dropdown:hover .drop-trigger {
  background: rgba(255, 255, 255, 0.08);
  color: #f5c518;
}
.drop-trigger .arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drop-trigger .arrow svg {
  width: 9px;
  height: 9px;
  fill: currentColor;
}
.has-dropdown:hover .drop-trigger .arrow {
  transform: rotate(180deg);
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%);
  background: #111111;
  border-radius: 12px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 260px;
  overflow: hidden;
  z-index: 9999;
  padding: 8px;
}
.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
  margin-bottom: 2px;
}
.dropdown a:last-child {
  margin-bottom: 0;
}
.dropdown a:hover {
  background: rgba(245, 197, 24, 0.1);
}
.dropdown a:hover .drop-icon {
  background: #f5c518;
}
.dropdown a:hover .drop-icon svg {
  fill: #0a0a0a;
}

.drop-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.drop-icon svg {
  width: 18px;
  height: 18px;
  fill: #f5c518;
  transition: fill 0.15s;
}
.drop-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.drop-text span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px;
}

/* ===== HERO ===== */
.hero {
  background: url("../images/bg_cover.jpeg") center center / cover no-repeat;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 10, 30, 0.6) 20%,
    rgba(5, 10, 30, 0) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  max-width: 800px;
}
.hero-tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.18);
  color: #f5c518;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0;
}
.hero h1 em {
  color: #f5c518;
  font-style: normal;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: #f5c518;
  margin: 20px 0;
  border-radius: 2px;
}
.hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 600px;
}

/* Hero Icons */
.hero-icons {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.hero-icon-circle {
  width: 62px;
  height: 62px;
  border: 2px solid #f5c518;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.08);
  transition: background 0.2s;
}
.hero-icon-circle:hover {
  background: rgba(245, 197, 24, 0.22);
}
.hero-icon-circle svg {
  width: 26px;
  height: 26px;
  fill: #f5c518;
}
.hero-icon-item span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.4;
}

/* Trust Bar */
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.hero-trust span svg {
  width: 15px;
  height: 15px;
  fill: #f5c518;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: #f5c518;
  color: #0a0e1a;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary-custom:hover {
  background: #e0b000;
  color: #0a0e1a;
}
.btn-dark-custom {
  background: #0a0e1a;
  color: #fff;
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-dark-custom:hover {
  background: #1a2235;
  color: #fff;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #f5c518;
  padding: 15px 60px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item {
  text-align: center;
}
.stat-item .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0a0e1a;
  line-height: 1;
}
.stat-item .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(10, 14, 26, 0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 60px;
  background: #fff;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d4a800;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
  color: #1a1a2e;
}
.section-sub {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 0;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 90px 60px;
  background: #fff;
}
.services-head {
  text-align: center;
  margin-bottom: 72px;
}
.services-head .section-title {
  margin-bottom: 14px;
}
.services-head .section-sub {
  margin: 0 auto;
}

.svc-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Each alternating block */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 24px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.svc-block:hover {
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}
.svc-block--reverse {
  direction: rtl;
}
.svc-block--reverse > * {
  direction: ltr;
}

/* Visual panel */
.svc-block-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.svc-block-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-block:hover .svc-block-visual img {
  transform: scale(1.04);
}
.svc-block-bignum {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  letter-spacing: -4px;
  pointer-events: none;
}

/* Content panel */
.svc-block-content {
  background: #fff;
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d4a800;
  margin-bottom: 12px;
}
.svc-block-content h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 16px;
}
.svc-block-content h3 em {
  font-style: normal;
  color: #d4a800;
}
.svc-block-content > p {
  color: #666;
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.svc-block-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.svc-block-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.svc-block-list li:last-child {
  border-bottom: none;
}
.svc-block-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #f5c518;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-block-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #1a1a2e;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  transition:
    background 0.2s,
    color 0.2s;
}
.svc-block-btn:hover {
  background: #f5c518;
  color: #1a1a2e;
}
.svc-cards {
  gap: 20px;
}

/* ===== WHY US ===== */
.why-section {
  background: #0f1322;
  padding: 100px 60px;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left .section-label {
  margin-bottom: 12px;
}
.why-em {
  font-style: normal;
  color: #f5c518;
  position: relative;
}
.why-highlights {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.why-highlight-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why-highlight-num {
  font-size: 2rem;
  font-weight: 800;
  color: #f5c518;
  line-height: 1;
}
.why-highlight-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5c518;
  color: #0f1322;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.why-cta:hover {
  background: #e0b000;
  color: #0f1322;
  transform: translateY(-2px);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 28px 24px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.why-card:hover {
  background: rgba(245, 197, 24, 0.06);
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateY(-5px);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: #f5c518;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process-section {
  padding: 90px 60px;
  background: #f8f9fb;
}
.process-header {
  text-align: center;
  margin-bottom: 64px;
}
.process-header .section-label {
  color: #d4a800;
}
.process-header .section-title {
  margin-bottom: 14px;
}
.process-header .section-sub {
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, #f5c518, #e0a800);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 56px;
  height: 56px;
  background: #1a1a2e;
  border: 3px solid #f5c518;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #f5c518;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background 0.25s;
}
.process-step:hover .step-circle {
  background: #f5c518;
  color: #1a1a2e;
}
.step-connector {
  display: none;
}
.step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.step-body p {
  color: #666;
  font-size: 0.87rem;
  line-height: 1.65;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #f5c518;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0a0e1a;
  max-width: 560px;
}

/* ===== FOOTER ===== */
footer {
  background: #0a0d1a;
  padding: 22px 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
footer p {
  color: rgb(224, 224, 224);
  font-size: 0.82rem;
  margin: 0;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV DRAWER ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0a0a;
  z-index: 999;
  overflow-y: auto;
  padding: 24px 24px 40px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a,
.mobile-nav button.mob-drop-trigger {
  display: block;
  width: 100%;
  text-align: left;
  padding: 13px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 8px;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-nav a:hover,
.mobile-nav button.mob-drop-trigger:hover {
  background: rgba(255, 255, 255, 0.07);
}
.mobile-nav a.active {
  color: #f5c518;
}
.mob-sub {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
}
.mob-sub.open {
  display: flex;
}
.mob-sub a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 14px;
}
.mobile-nav .mob-cta {
  margin-top: 16px;
  background: #f5c518;
  color: #0a0a0a !important;
  text-align: center;
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 700;
}
.mobile-nav .mob-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.9rem;
  margin-top: 8px;
}
.mobile-nav .mob-phone svg {
  width: 16px;
  height: 16px;
  fill: #f5c518;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .svc-block {
    grid-template-columns: 1fr;
  }
  .svc-block--reverse {
    direction: ltr;
  }
  .svc-block-visual {
    min-height: 260px;
  }
  .svc-cards {
    gap: 20px;
  }
  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .contact-body {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  .nav-links,
  .nav-phone {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-content {
    padding: 50px 20px 60px;
  }
  .hero-icons {
    gap: 16px;
  }
  .hero-icon-circle {
    width: 50px;
    height: 50px;
  }
  .hero-icon-circle svg {
    width: 20px;
    height: 20px;
  }
  .hero-trust {
    gap: 12px;
  }
  .section,
  .why-section,
  .process-section {
    padding: 60px 20px;
  }
  .services-section {
    padding: 60px 20px;
  }
  .services-head {
    margin-bottom: 40px;
  }
  .stats-bar {
    padding: 28px 20px;
    gap: 16px;
  }
  .stat-item .num {
    font-size: 1.8rem;
  }
  footer {
    padding: 22px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc-block-content {
    padding: 32px 24px;
  }
  .svc-block-bignum {
    font-size: 5rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-highlights {
    gap: 20px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 50px 20px;
    flex-direction: column;
    text-align: center;
  }
}
