/* RESET */
html,
body {
  width: 100%;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
/* HEADER */
.header {
  background: #fff;
  position: relative !important; /* non-sticky */
  z-index: 999;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}

.navbar {
  padding: 0;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 110px;
  width: auto;
  padding: 20px 0;
}

.brand-tagline {
  font-size: 14px;
  color: #555;
  white-space: nowrap;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  color: #111827 !important;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px !important;
}

/* DESKTOP WHATSAPP */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.whatsapp-btn:hover {
  color: #fff;
  background: #1ebe5d;
}

/* MOBILE WHATSAPP (center area before toggler) */
.mobile-whatsapp {
  display: none;
}

/* TOGGLER */
.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

/* MOBILE / TABLET */
@media (max-width: 991px) {

  .brand-tagline {
    display: none;
  }

  .logo-img {
    height: 85px;
    padding: 12px 0;
  }

  /* show mobile whatsapp */
  .mobile-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    margin-right: 12px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    flex-shrink: 0;
  }

  .mobile-whatsapp:hover {
    color: #fff;
    background: #1ebe5d;
  }

  /* collapsed menu */
  .navbar-collapse {
    background: #fff;
    margin-top: 10px;
    padding: 14px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  }

  .navbar-nav .nav-link {
    padding: 12px 10px !important;
    border-bottom: 1px solid #f2f2f2;
  }
}

@media (max-width: 576px) {

  .logo-img {
    height: 72px;
  }

  .mobile-whatsapp {
    width: 38px;
    height: 38px;
    font-size: 18px;
    margin-right: 10px;
  }

  .navbar-collapse {
    padding: 12px;
  }
}

/* ===============================
   REMOVE HEADER WHATSAPP BUTTONS
================================= */
.whatsapp-btn,
.mobile-whatsapp {
  display: none !important;
}

/* ===============================
   FLOATING WHATSAPP BUTTON
   SAME STYLE MOBILE + DESKTOP
================================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #25d366;
  color: #ffffff;
  text-decoration: none;

  padding: 12px 18px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;
  line-height: 1;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
}

.whatsapp-float i {
  font-size: 18px;
  line-height: 1;
}

.whatsapp-float:hover {
  color: #ffffff;
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

@media (max-width: 576px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 11px 16px;
    gap: 8px;
    font-size: 13px;
  }

  .whatsapp-float i {
    font-size: 16px;
  }
}

/* HERO */
.hero {
  padding: 10px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.hero-left h1 {
  font-family: "Merriweather", serif;
  font-weight: 800;
  line-height: 1.3;
  font-size: 47px;
  font-weight: 800;
  margin-bottom: 18px;
}

.highlight {
  color: #0d3a53; /* deep navy text */
  background: #e6edf5; /* light navy background */
  padding: 0 6px;
}

.hero-sub {
  color: #dc2626;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 16px;
  color: #444;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.btn-primary {
  background: #0b5ed7;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.price-box {
  background: #0f172a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 14px;
  min-width: 200px;
}

.price-label {
  font-size: 16px;
  color: #cbd5e1;
  letter-spacing: 0.07em;
}

.price-amount {
  font-size: 22px;
  font-weight: 800;
}

.price-note {
  font-size: 11px;
  color: #f87171;
}

.hero-features {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 15px;
  color: #555;
}

/* RIGHT */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image {
  max-width: 420px;
  width: 100%;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 20px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-badge strong {
  display: block;
  font-size: 14px;
}

.hero-badge span {
  font-size: 12px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-features {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero-left h1 {
    font-size: 43px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .price-box {
    width: 100%;
  }

  .hero-badge {
    display: none;
  }
}
/* MOBILE ORDER FIX — TEXT FIRST, IMAGE SECOND */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    order: 1;
    padding-top: 50px;
  }

  .hero-right {
    order: 2;
  }
}

/* SECTION WRAPPER */
.why-steps {
  padding: 64px 0;
  background: #f9fafb;
}

.why-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px; /* reduced from 32px */
}

/* CARDS */
.why-card,
.steps-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px; /* reduced from 36px */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* HEADINGS */
.why-card h2,
.steps-card h2 {
  font-size: 26px; /* slightly tighter */
  font-weight: 800;
  margin-bottom: 8px; /* reduced */
}

.why-sub,
.steps-sub {
  color: #555;
  margin-bottom: 22px; /* reduced from 28px */
  font-size: 15px; /* slightly reduced */
  line-height: 1.45;
}

/* WHY ITEMS */
.why-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; /* reduced from 20px */
  margin-bottom: 22px; /* reduced */
}

.why-item {
  background: #f9fafb;
  border-radius: 14px;
  padding: 18px;
  border: 2px solid #000000; /* visible soft border */
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.why-item i {
  font-size: 20px; /* slightly reduced */
  color: #000080;
  margin-bottom: 10px;
}

.why-item h3 {
  font-size: 15px; /* reduced */
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.45;
}

.why-item:hover {
  transform: translateY(-3px); /* softer hover */
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* CTA */
.why-btn {
  display: block;
  width: 100%;
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 12px; /* reduced from 14px */
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

/* STEPS */
.steps-list {
  position: relative;
}

.step {
  display: flex;
  gap: 18px; /* reduced from 20px */
  padding-bottom: 20px; /* reduced from 26px */
  position: relative;
}

.step:last-child {
  padding-bottom: 0;
}

.step::before {
  content: "";
  position: absolute;
  left: 17px; /* adjusted for smaller icon */
  top: 38px;
  bottom: -8px;
  width: 2px;
  background: #e5e7eb;
}

.step:last-child::before {
  display: none;
}

.step-icon {
  width: 34px; /* reduced from 38px */
  height: 34px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  background: #fff;
  flex-shrink: 0;
  font-size: 14px;
}

.step-icon.active {
  border-color: #000080;
  color: #000080;
  background: #eff6ff;
}

.step-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.step-content p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.45;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .why-steps {
    padding: 48px 0;
  }

  .why-items {
    grid-template-columns: 1fr;
  }

  .why-card,
  .steps-card {
    padding: 24px; /* reduced from 26px */
  }
}

/* DOCUMENTS SECTION */
.documents-section {
  padding: 64px 0; /* match why-steps */
  background: #ffffff;
}

.documents-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* LEFT IMAGE */
.documents-image {
  position: relative;
  min-height: 320px; /* reduced height */
}

.documents-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.documents-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.35),
    rgba(15, 23, 42, 0.85)
  );
}

.documents-image-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #ffffff;
  max-width: 260px;
}

.documents-image-text h3 {
  font-size: 18px; /* aligned with section h3 */
  font-weight: 800;
  margin-bottom: 6px;
}

.documents-image-text p {
  font-size: 13.5px;
  color: #e5e7eb;
  line-height: 1.45;
}

/* RIGHT CONTENT */
.documents-content {
  padding: 32px; /* reduced from 40 */
  color: #ffffff;
}

.documents-content h2 {
  font-size: 26px; /* SAME as why-card h2 */
  font-weight: 800;
  margin-bottom: 8px;
}

.documents-sub {
  font-size: 15px; /* SAME as why-sub */
  color: #cbd5e1;
  margin-bottom: 22px;
  line-height: 1.45;
  max-width: 420px;
}

/* LIST */
.documents-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.documents-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px; /* reduced */
  margin-bottom: 12px;
  font-size: 14px; /* aligned with site */
  font-weight: 600;
}

.check-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000080;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  flex-shrink: 0;
}

/* BUTTON */
.documents-btn {
  display: inline-block;
  background: #ffffff;
  color: #1e3a8a;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px; /* match why-btn */
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .documents-card {
    grid-template-columns: 1fr;
  }

  .documents-image {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .documents-section {
    padding: 48px 0;
  }

  .documents-content {
    padding: 24px;
  }

  .documents-btn {
    width: 100%;
    text-align: center;
  }
}

/* COST SECTION */
.cost-section {
  padding: 64px 0;
  background: #ffffff;
}

.cost-header {
  text-align: center;
  margin-bottom: 28px;
}

.cost-header h2 {
  font-size: 26px; /* same as other section h2 */
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 8px;
}

.cost-header p {
  font-size: 15px;
  color: #555;
  line-height: 1.45;
}

/* CARD */
.cost-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 22px;
}

/* TABLE */
.cost-table {
  width: 100%;
  border-collapse: collapse;
}

.cost-table thead {
  background: #000080;
  color: #ffffff;
}

.cost-table th {
  padding: 14px 18px;
  font-size: 14px;
  text-align: left;
}

.cost-table th.amount {
  text-align: right;
}

.cost-table td {
  padding: 16px 18px;
  font-size: 14.5px;
  color: #111;
  border-bottom: 1px solid #f1f5f9;
}

.cost-table td.amount {
  text-align: right;
  font-weight: 700;
}

.cost-table tbody tr:hover {
  background: #f9fafb;
}

/* SERVICE NOTE */
.service-note {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  color: #111;
}

/* ACTIONS */
.cost-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.cost-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #000080;
  background: transparent;
  color: #000080;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.cost-btn:hover {
  background: #000080;
  color: #ffffff;
}

/* FOOTNOTE */
.cost-footnote {
  text-align: center;
  font-size: 12.5px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .cost-header h2 {
    font-size: 24px;
  }

  .cost-table th,
  .cost-table td {
    padding: 12px 14px;
  }

  .cost-btn {
    width: 100%;
    justify-content: center;
  }
}

/* SHARED SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 36px;
  color: #111;
}

/* ================= HOW IT WORKS ================= */

.process-section {
  padding: 64px 0;
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.process-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.process-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eff6ff;
  color: #000080;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}

.process-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.45;
}

.process-arrow {
  font-size: 22px;
  color: #cbd5e1;
}

/* ================= OTHER SERVICES ================= */

.services-section {
  padding: 64px 0;
  background: #f9fafb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.45;
}
.services-section {
  padding: 80px 0;
  background: #f8f9fc;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111827;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}


/* Large Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 35px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    padding: 26px 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .service-card p {
    font-size: 0.92rem;
  }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-arrow {
    display: none;
  }

  .process-card {
    margin-bottom: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .process-section,
  .services-section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 24px;
  }
}

/* FOOTER */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
  font-size: 14px;
}

/* TOP */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 32px;
  padding-bottom: 20px;
}

/* BRAND */
.footer-logo {
  margin-bottom: 14px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-img {
  height: 68px; /* Slightly smaller than header */
  width: auto;
  display: block;
}

.footer-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  max-width: 280px;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  color: #9ca3af;
  font-size: 18px;
  transition: color 0.15s ease;
}

.footer-socials a:hover {
  color: #000080;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #4b5563;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #111827;
}

/* CONTACT */
.footer-contact .contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #4b5563;
}

.contact-list i {
  color: #9ca3af;
}

/* CTA */
.footer-cta {
  display: inline-block;
  background: #000080;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(11, 94, 215, 0.3);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 94, 215, 0.4);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
  font-size: 13px;
  color: #9ca3af;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #111827;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
