:root {
  --primary: #002d62;
  --primary-dark: #001c3d;
  --accent: #0096ff;
  --bg: #f5f8fc;
  --text: #0b1f38;
  --muted: #556b87;
  --white: #ffffff;
  --radius-lg: 18px;
  --shadow: 0 14px 36px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 100px 0;
}

.light-bg {
  background: var(--white);
}

/* ============================================================================
   HEADER – Clean, Compact, Responsive
============================================================================ */
.header {
    width: 100%;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
}

/* ============================================================================
   NAVIGATION MENU
============================================================================ */
.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #002D62;
    padding: 8px 0;
    transition: 0.25s;
}

.navbar ul li a:hover {
    color: #0096FF;
}

/* ============================================================================
   STABLE DROPDOWN (DESKTOP)
============================================================================ */
.dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 55px;
    left: 0;
    width: 250px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.dropdown:hover .mega-menu,
.dropdown.hover-active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    height: 25px;
}

.mega-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #002D62;
    margin-bottom: 10px;
}

.mega-menu a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #002D62;
    text-decoration: none;
    transition: 0.2s ease;
}

.mega-menu a:hover {
    color: #0096FF;
    padding-left: 5px;
}

/* ============================================================================
   MOBILE MENU ICON
============================================================================ */
.mobile-menu-icon {
    display: none;
    font-size: 32px;
    cursor: pointer;
}

/* ============================================================================
   MOBILE RESPONSIVE
============================================================================ */
@media (max-width: 900px) {

    .mobile-menu-icon {
        display: block;
    }

    .navbar .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        padding: 20px 0;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease;
    }

    .nav-links.nav-active {
        max-height: 700px;
        opacity: 1;
        pointer-events: auto;
        border-bottom: 1px solid #eee;
    }

    .dropdown:hover .mega-menu {
        display: none;
    }

    .dropdown.open .mega-menu {
        display: block !important;
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto;
        padding: 12px 20px;
        background: #f4f8ff;
        border-radius: 10px;
        box-shadow: none;
    }
}


/* ================= HERO SPLIT LAYOUT ================= */
.hero-split {
  background: linear-gradient(135deg, var(--primary), #0056b3);
  padding: 180px 0 140px;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* LEFT CONTENT */
.hero-content {
  max-width: 560px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  margin: 22px 0;
  color: var(--white);
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

/* BADGE */
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 22px;
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

/* CTA */
.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* SINGLE BLUE BUTTON STYLE */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 16px 34px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,150,255,0.35);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #007dd6;
  transform: translateY(-3px);
}

/* RIGHT IMAGE */
.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}


@media (max-width: 900px) {

  .hero-split {
    padding: 140px 0 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-cta {
    justify-content: center;
  }

  .btn-primary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero-media img {
    max-width: 100%;
  }
}


/* ================= TYPOGRAPHY ================= */
h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--primary);
}

.section-text {
  font-size: 18px;
  color: var(--muted);
  max-width: 820px;
}

/* ================= GRID ================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

/* ================= LIST ================= */
.list {
  list-style: none;
}

.list li {
  padding-left: 32px;
  margin-bottom: 16px;
  position: relative;
}

.list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ================= CARDS ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 50px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  border-top: 4px solid transparent;
}

.card:hover {
  transform: translateY(-6px);
  border-top: 4px solid var(--accent);
}

/* ================= HIGHLIGHT ================= */
.highlight {
  background: linear-gradient(135deg, #e9f3ff, #ffffff);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 90px 0;
  text-align: center;
  color: var(--white);
}

.cta h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 30px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .grid-2,
  .cards,
  .cards.three {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  h2 {
    font-size: 28px;
    text-align: center;
  }
}

.cta-micro {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* ================= ADVANCED CTA ================= */
.cta-advanced {
  background: linear-gradient(135deg, #002d62, #001c3d);
  padding: 110px 0;
  text-align: center;
}

.cta-advanced h2 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.3;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 46px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: #0096ff;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(0,150,255,0.45);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #007dd6;
  transform: translateY(-4px);
}

/* ================= RETAINER FORM ================= */
.retainer-form-section {
  background: #f7fafd;
  padding: 120px 0;
}

.retainer-form-section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 60px;
}

/* FORM CARD */
.retainer-form {
  background: #ffffff;
  padding: 50px;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: center;
}

/* INPUTS */
.retainer-form input,
.retainer-form select {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1.5px solid #d6e2f1;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
}

.retainer-form input:focus,
.retainer-form select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0,150,255,0.15);
}

/* SUBMIT BUTTON */
.retainer-submit {
  grid-column: span 4;
  margin-top: 20px;

  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;

  background: #0096ff;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(0,150,255,0.45);
  transition: all 0.3s ease;
}

.retainer-submit:hover {
  background: #007dd6;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 900px) {
  .retainer-form {
    grid-template-columns: 1fr;
    padding: 35px;
  }

  .retainer-submit {
    grid-column: span 1;
  }

  .retainer-form-section h2 {
    font-size: 30px;
  }
}

/* =========================
   CALLBACK SECTION
========================= */

.callback-section {
    margin-top: 80px;
}

/* Blue Top Bar */
.callback-top {
    background: linear-gradient(135deg, #002c5f, #0056d2);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.callback-top h2 {
    font-size: 32px;
    font-weight: 800;
}

.callback-top p {
    margin: 10px 0 20px;
    font-size: 16px;
    opacity: 0.9;
}

.callback-btn {
    display: inline-block;
    background: #00b4ff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

/* Form Area */
.callback-form-area {
    background: #ffffff;
    text-align: center;
    padding: 70px 20px;
}

.callback-form-area h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.callback-form-area p {
    font-size: 15px;
    margin-bottom: 30px;
    color: #555;
}

/* Form */
.callback-form-area form {
    max-width: 420px;
    margin: auto;
}

.callback-form-area input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #cfd9ff;
    font-size: 15px;
}

.callback-form-area button {
    width: 100%;
    padding: 14px;
    background: #0096ff;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.callback-form-area button:hover {
    background: #0073cc;
}


