* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
  user-select: none;
}

body {
  color: #0f172a;
  background: #ffffff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* ===== HEADER ===== */
.header {
  background: #ffffff;
  height: 72px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* padding: 0 20px; */
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  /* box-shadow: 0 0 0 2px #2563eb,
     0 2px 6px rgba(0, 0, 0, 0.12); */
}

.logo {
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
}

.logo span {
  color: #2563eb;
}

/* ===== NAVBAR (MODERN) ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* backdrop-filter: blur(10px); */
  background: #ffffff;
}

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

.nav a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  padding: 6px 0;
  transition: color 0.25s ease;
}

/* Hover underline animation */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover {
  color: #2563eb;
}

/* CTA Button */
.nav-btn {
  margin-left: 14px;
  padding: 10px 18px !important;
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 13px;
}

.nav-btn::after {
  display: none;
}

.nav-btn:hover {
  background: #1e40af;
}
/* nav */

/* ===== DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* SHOW DROPDOWN */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #0f172a;
  transition: 0.3s;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 992px) {
  .nav {
    position: absolute;
    top: 72px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .nav.show {
    display: flex;
  }

  .nav a,
  .nav-dropdown {
    padding: 12px 24px;
  }

  .nav-btn {
    margin: 12px 24px 0;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
}

.hero h1 {
  font-size: 46px;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero p {
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 34px;
  color: #e0e7ff;
}

.btn-primary {
  background: #ffffff;
  color: #2563eb;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.25s ease;
}

.btn-primary:hover {
  background: #eef2ff;
}

/* ===== SECTIONS ===== */
.section {
  padding: 20px 20px;
  text-align: center;
}

.light-bg {
  background: #f8fafc;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 56px;
  color: #64748b;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  background: #eef2ff;
  color: #2563eb;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: #ffffff;
  padding: 34px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  margin-bottom: 14px;
  color: #0f172a;
}

.card ul {
  padding-left: 18px;
  color: #475569;
}

.card li {
  margin-bottom: 8px;
}

.card p {
  color: #475569;
}

/* ===== PROCESS ===== */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.step {
  text-align: center;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 14px;
}

.step h4 {
  margin-bottom: 8px;
  color: #0f172a;
}

.step p {
  color: #64748b;
  font-size: 14px;
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  text-align: center;
  padding: 90px 20px;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.cta p {
  max-width: 650px;
  margin: 0 auto 32px;
  color: #e0e7ff;
}
.logo-div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
}

.logo span {
  color: #2563eb;
}

/* ===== FOOTER EXTENDED ===== */
.logo-image {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  /* box-shadow: 0 0 0 2px #2563eb,
     0 2px 6px rgba(0, 0, 0, 0.12); */
}
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 70px;
}

/* .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
} */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 50px;
  align-items: start;
  margin: 0px 30px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-logo span {
  color: #2563eb;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 320px;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #2563eb;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #2563eb;
}

/* SOCIAL */
.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #ffffff;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #2563eb;
}

.footer-divider {
  margin: 0 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom p {
    line-height: 1.6;
  }
}
/* Privacy Policy and terms services */
/* ===== LEGAL PAGES (TERMS & PRIVACY) ===== */
.legal-page {
  padding: 90px 0;
  background: #f8fafc;
}

.legal-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: auto;
}

.legal-card h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0f172a;
}

.legal-card .updated {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 30px;
}

.legal-card h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #0f172a;
}

.legal-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
}

.legal-card ul {
  padding-left: 18px;
  margin-top: 10px;
}

.legal-card li {
  font-size: 15px;
  color: #475569;
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .legal-card {
    padding: 30px;
  }

  .legal-card h1 {
    font-size: 28px;
  }
}

/* =====================================================
   MOBILE & RESPONSIVE ENHANCEMENTS (SAFE ADD-ON)
   FOR SECOND LAYOUT
===================================================== */

/* ---------- GLOBAL ---------- */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .container {
    width: 92%;
  }
}

/* ---------- HERO ---------- */
@media (max-width: 768px) {
  .hero {
    padding: 70px 16px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .btn-primary {
    width: 100%;
    max-width: 320px;
  }
}

/* ---------- SECTIONS ---------- */
@media (max-width: 768px) {
  .section {
    padding: 60px 16px;
  }

  .section h2 {
    font-size: 26px;
  }

  .section-desc {
    font-size: 15px;
    margin-bottom: 40px;
  }
}

/* ---------- CARDS ---------- */
@media (max-width: 600px) {
  .card {
    padding: 26px;
  }

  .card-grid,
  .card-grid.three {
    gap: 22px;
  }
}

/* ---------- PROCESS ---------- */
@media (max-width: 600px) {
  .process {
    gap: 24px;
  }

  .step p {
    font-size: 13px;
  }
}

/* ---------- CTA ---------- */
@media (max-width: 768px) {
  .cta {
    padding: 70px 16px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    font-size: 15px;
  }
}

/* ---------- NAV TOUCH IMPROVEMENT ---------- */
@media (max-width: 992px) {
  .nav a {
    font-size: 15px;
  }

  .nav a::after {
    display: none;
  }
}

/* ---------- FOOTER ---------- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin: 0 16px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-bottom {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* ---------- LEGAL PAGES ---------- */
@media (max-width: 600px) {
  .legal-page {
    padding: 70px 16px;
  }

  .legal-card {
    padding: 26px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 14px;
  }
}
/* ===== FOOTER MAP ===== */
.footer-map {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
  background: #0f172a;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%) contrast(1.05);
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.footer-map a:hover iframe {
  transform: scale(1.03);
  filter: grayscale(0%);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-map {
    height: 180px;
  }
}
