:root {
      --navy: #1a3366;
      --blue: #2455a4;
      --blue-mid: #2d6bb5;
      --blue-light: #4a90d9;
      --silver: #8e9db5;
      --silver-light: #c8d0dc;
      --offwhite: #f5f7fa;
      --white: #ffffff;
      --text-dark: #1a2235;
      --text-mid: #3a4a62;
      --text-light: #6b7a92;
      --border: #dde3ed;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Overpass', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─── */
    .navbar {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      padding: 0.55rem 0;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: box-shadow 0.3s;
    }
    .navbar.scrolled { box-shadow: 0 2px 20px rgba(26,51,102,0.10); }
    .navbar-brand img { height: 52px; }
    .navbar-nav .nav-link {
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-mid) !important;
      padding: 0.5rem 1rem !important;
      transition: color 0.2s;
    }
    .navbar-nav .nav-link:hover { color: var(--blue) !important; }
    .btn-book-nav {
      background: var(--blue);
      color: var(--white) !important;
      border-radius: 4px;
      padding: 0.45rem 1.2rem !important;
      font-weight: 700;
      letter-spacing: 0.05em;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-book-nav:hover {
      background: var(--navy) !important;
      transform: translateY(-1px);
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 92vh;
      background: linear-gradient(135deg, #f0f4fb 0%, #e8eef8 40%, #dce6f4 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero-bg-circle {
      position: absolute;
      border-radius: 50%;
      opacity: 0.08;
    }
    .hero-bg-circle.c1 {
      width: 700px; height: 700px;
      background: var(--blue);
      top: -200px; right: -150px;
    }
    .hero-bg-circle.c2 {
      width: 400px; height: 400px;
      background: var(--navy);
      bottom: -100px; left: -80px;
    }
    .hero-rule {
      display: block;
      width: 48px; height: 3px;
      background: var(--blue);
      margin-bottom: 1.2rem;
    }
    .hero-eyebrow {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.75rem;
    }
    .hero-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 0.4rem;
    }
    .hero-specialty {
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--blue-mid);
      letter-spacing: 0.04em;
      margin-bottom: 1.4rem;
    }
    .hero-credentials {
      display: inline-flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 1.6rem;
    }
    .hero-credentials span {
      background: rgba(36,85,164,0.08);
      color: var(--navy);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 0.3rem 0.8rem;
      border-radius: 3px;
      border: 1px solid rgba(36,85,164,0.2);
    }
    .hero-desc {
      font-size: 0.97rem;
      color: var(--text-mid);
      font-weight: 300;
      max-width: 480px;
      margin-bottom: 2rem;
      line-height: 1.8;
    }
    .btn-primary-cta {
      background: var(--blue);
      color: var(--white);
      border: none;
      padding: 0.85rem 2.2rem;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 4px;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-primary-cta:hover {
      background: var(--navy);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(26,51,102,0.22);
      text-decoration: none;
    }
    .btn-outline-cta {
      background: transparent;
      color: var(--navy);
      border: 2px solid var(--navy);
      padding: 0.82rem 2rem;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 4px;
      text-decoration: none;
      display: inline-block;
      margin-left: 0.75rem;
      transition: all 0.2s;
    }
    .btn-outline-cta:hover {
      background: var(--navy);
      color: var(--white);
      transform: translateY(-2px);
      text-decoration: none;
    }
    .hero-image-wrap {
      position: relative;
      text-align: center;
    }
    .hero-image-wrap img {
      max-height: 560px;
      width: auto;
      max-width: 100%;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 20px 48px rgba(26,51,102,0.18));
      animation: floatUp 0.9s ease both;
    }
    .hero-badge {
      position: absolute;
      bottom: 60px;
      left: -20px;
      background: var(--white);
      border-radius: 8px;
      padding: 0.9rem 1.2rem;
      box-shadow: 0 8px 28px rgba(26,51,102,0.14);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      z-index: 3;
      animation: floatUp 1.1s 0.2s ease both;
    }
    .hero-badge .badge-icon {
      width: 38px; height: 38px;
      background: var(--blue);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1rem;
    }
    .hero-badge .badge-text strong {
      display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy);
    }
    .hero-badge .badge-text span {
      font-size: 0.72rem; color: var(--text-light); font-weight: 300;
    }

    @keyframes floatUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── STATS BAR ─── */
    #stats {
      background: var(--navy);
      padding: 2.4rem 0;
    }
    .stat-item { text-align: center; padding: 0.5rem 0; }
    .stat-item .stat-num {
      display: block;
      font-size: 2rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .stat-item .stat-label {
      font-size: 0.75rem;
      font-weight: 300;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--silver-light);
    }
    .stat-divider {
      width: 1px;
      height: 48px;
      background: rgba(255,255,255,0.18);
      margin: auto;
    }

    /* ─── SECTION SHARED ─── */
    section { padding: 4rem 0; }
    .section-eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 900;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .section-sub {
      font-size: 0.97rem;
      color: var(--text-light);
      font-weight: 300;
      max-width: 540px;
      line-height: 1.8;
    }
    .rule-line {
      display: block; width: 40px; height: 3px;
      background: var(--blue); margin-bottom: 1.2rem;
    }

    /* ─── ABOUT ─── */
    #about { background: var(--offwhite); }
    .about-img-wrap {
      position: relative;
    }
    .about-img-wrap img {
      border-radius: 8px;
      width: 100%;
      max-width: 420px;
      box-shadow: 0 16px 48px rgba(26,51,102,0.14);
    }
    .about-img-accent {
      position: absolute;
      top: -16px; left: -16px;
      width: 100px; height: 100px;
      border: 3px solid var(--blue);
      border-radius: 8px;
      z-index: 0;
    }
    .about-img-wrap img { position: relative; z-index: 1; }
    .about-card {
      position: absolute;
      bottom: 24px; right: -20px;
      background: var(--white);
      border-radius: 8px;
      padding: 1rem 1.3rem;
      box-shadow: 0 8px 28px rgba(26,51,102,0.14);
      z-index: 2;
    }
    .about-card .line1 { font-size: 1.5rem; font-weight: 900; color: var(--navy); }
    .about-card .line2 { font-size: 0.72rem; color: var(--text-light); font-weight: 300; letter-spacing: 0.06em; }
    .about-text h2 { margin-bottom: 0.5rem; }
    .about-text p { font-size: 0.95rem; color: var(--text-mid); font-weight: 300; line-height: 1.85; margin-bottom: 1rem; }
    .about-text .highlight-quote {
      border-left: 3px solid var(--blue);
      padding-left: 1.2rem;
      font-size: 1rem;
      font-style: italic;
      color: var(--navy);
      font-weight: 300;
      margin: 1.5rem 0;
    }
    .detail-row { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; margin-top: 1rem; }
    .detail-item { font-size: 0.85rem; color: var(--text-mid); }
    .detail-item i { color: var(--blue); margin-right: 0.4rem; font-size: 0.8rem; }

    /* ─── SERVICES ─── */
    #services { background: var(--white); }
    .service-card {
      background: var(--offwhite);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 2rem 1.6rem;
      height: 100%;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--blue);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,51,102,0.12); border-color: var(--blue-light); }
    .service-card:hover::before { transform: scaleX(1); }
    .svc-icon {
      width: 48px; height: 48px;
      background: rgba(36,85,164,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem;
      font-size: 1.2rem;
      color: var(--blue);
      transition: background 0.2s, color 0.2s;
    }
    .service-card:hover .svc-icon { background: var(--blue); color: white; }
    .service-card h5 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
    .service-card p { font-size: 0.86rem; color: var(--text-light); font-weight: 300; line-height: 1.7; margin: 0; }

    /* ─── PACKAGES ─── */
    #packages { background: linear-gradient(160deg, #1a3366 0%, #2455a4 100%); }
    #packages .section-title { color: var(--white); }
    #packages .section-eyebrow { color: var(--blue-light); }
    #packages .section-sub { color: rgba(255,255,255,0.65); }
    #packages .rule-line { background: var(--blue-light); }

    .pkg-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      padding: 2.4rem 2rem;
      height: 100%;
      transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
    }
    .pkg-card.featured {
      background: var(--white);
      border-color: var(--white);
    }
    .pkg-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
    .pkg-badge {
      position: absolute;
      top: 1.2rem; right: 1.2rem;
      background: var(--blue-light);
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.7rem;
      border-radius: 20px;
    }
    .pkg-card.featured .pkg-badge { background: var(--navy); }
    .pkg-type {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.6rem;
    }
    .pkg-card.featured .pkg-type { color: var(--text-light); }
    .pkg-name {
      font-size: 1.2rem;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 0.4rem;
    }
    .pkg-card.featured .pkg-name { color: var(--navy); }
    .pkg-timeframe {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      margin-bottom: 1.4rem;
      padding-bottom: 1.2rem;
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .pkg-card.featured .pkg-timeframe { color: var(--text-light); border-bottom-color: var(--border); }
    .pkg-price {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.2rem;
    }
    .pkg-card.featured .pkg-price { color: var(--navy); }
    .pkg-currency {
      font-size: 0.9rem;
      vertical-align: super;
      font-weight: 300;
      margin-right: 2px;
    }
    .pkg-per {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      margin-bottom: 1.6rem;
    }
    .pkg-card.featured .pkg-per { color: var(--text-light); }
    .pkg-features {
      list-style: none;
      padding: 0; margin: 0 0 1.8rem;
    }
    .pkg-features li {
      font-size: 0.86rem;
      color: rgba(255,255,255,0.8);
      padding: 0.4rem 0;
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
    }
    .pkg-card.featured .pkg-features li { color: var(--text-mid); }
    .pkg-features li i { color: var(--blue-light); font-size: 0.75rem; margin-top: 0.25rem; flex-shrink: 0; }
    .pkg-card.featured .pkg-features li i { color: var(--blue); }
    .btn-pkg {
      display: block;
      text-align: center;
      background: rgba(255,255,255,0.15);
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.4);
      padding: 0.8rem;
      border-radius: 4px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-pkg:hover { background: rgba(255,255,255,0.25); color: var(--white); text-decoration: none; }
    .pkg-card.featured .btn-pkg {
      background: var(--blue);
      color: white;
      border-color: var(--blue);
    }
    .pkg-card.featured .btn-pkg:hover { background: var(--navy); border-color: var(--navy); }

    /* ─── ONLINE CONSULTATION ─── */
    #online-consult { background: var(--offwhite); }
    .consult-step {
      display: flex;
      gap: 1.2rem;
      margin-bottom: 1.8rem;
    }
    .consult-step .step-num {
      width: 40px; height: 40px; min-width: 40px;
      background: var(--blue);
      color: white;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem;
      font-weight: 700;
    }
    .consult-step .step-body h6 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
    .consult-step .step-body p { font-size: 0.84rem; color: var(--text-light); font-weight: 300; margin: 0; }
    .consult-visual {
      background: var(--white);
      border-radius: 10px;
      padding: 2.4rem;
      box-shadow: 0 12px 40px rgba(26,51,102,0.10);
      border: 1px solid var(--border);
    }
    .consult-visual .cv-icon {
      width: 64px; height: 64px;
      background: rgba(36,85,164,0.08);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      color: var(--blue);
      margin: 0 auto 1.5rem;
    }
    .consult-visual h4 { font-size: 1rem; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 0.5rem; }
    .consult-visual p { font-size: 0.85rem; color: var(--text-light); font-weight: 300; text-align: center; line-height: 1.7; margin-bottom: 1.5rem; }
    .consult-tech {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--offwhite);
      border-radius: 6px;
      padding: 0.8rem 1rem;
      margin-bottom: 0.7rem;
    }
    .consult-tech i { color: var(--blue); width: 20px; text-align: center; font-size: 0.9rem; }
    .consult-tech span { font-size: 0.82rem; color: var(--text-mid); font-weight: 300; }

    /* ─── FOCUS AREAS ─── */
    #focus { background: var(--white); }
    .focus-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.2rem;
      border-radius: 8px;
      transition: background 0.2s;
    }
    .focus-item:hover { background: var(--offwhite); }
    .focus-num {
      font-size: 2rem;
      font-weight: 900;
      color: rgba(36,85,164,0.12);
      line-height: 1;
      min-width: 48px;
      font-variant-numeric: tabular-nums;
    }
    .focus-body h6 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
    .focus-body p { font-size: 0.83rem; color: var(--text-light); font-weight: 300; margin: 0; }

    /* ─── CONTACT ─── */
    #contact { background: var(--offwhite); }
    .contact-card {
      background: var(--white);
      border-radius: 10px;
      padding: 2.4rem 2rem;
      border: 1px solid var(--border);
      box-shadow: 0 6px 24px rgba(26,51,102,0.07);
    }
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.4rem;
    }
    .contact-row .ci {
      width: 40px; height: 40px; min-width: 40px;
      background: rgba(36,85,164,0.08);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--blue);
    }
    .contact-row .ct label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 0.15rem; }
    .contact-row .ct span { font-size: 0.9rem; color: var(--text-dark); font-weight: 400; }
    .map-placeholder {
      background: linear-gradient(135deg, #dde6f5 0%, #c8d8f0 100%);
      border-radius: 10px;
      height: 320px;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      gap: 0.8rem;
      border: 1px solid var(--border);
    }
    .map-placeholder i { font-size: 2rem; color: var(--blue); }
    .map-placeholder span { font-size: 0.85rem; color: var(--text-light); font-weight: 300; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--navy);
      padding: 3.5rem 0 1.5rem;
    }
    .footer-logo img { height: 52px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
    .footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; }
    .footer-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
    .footer-link {
      display: block;
      font-size: 0.86rem;
      color: rgba(255,255,255,0.7);
      font-weight: 300;
      text-decoration: none;
      margin-bottom: 0.5rem;
      transition: color 0.2s;
    }
    .footer-link:hover { color: var(--white); text-decoration: none; }
    .footer-bottom {
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
      font-weight: 300;
    }
    .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--white); }

    /* ─── MODALS ─── */
    .modal-dialog { max-width: 680px; }
    .modal-content {
      border: none;
      border-radius: 10px;
      overflow: hidden;
    }
    .modal-header {
      background: var(--navy);
      border-bottom: none;
      padding: 1.5rem 1.8rem;
    }
    .modal-title { color: var(--white); font-size: 1.05rem; font-weight: 700; }
    .modal-header .close { color: rgba(255,255,255,0.6); opacity: 1; font-size: 1.5rem; }
    .modal-header .close:hover { color: white; }
    .modal-body {
      padding: 2rem 1.8rem;
      max-height: 70vh;
      overflow-y: auto;
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.8;
      font-weight: 300;
    }
    .modal-body h5 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 0.4rem; }
    .modal-body h5:first-child { margin-top: 0; }
    .modal-body ul { padding-left: 1.2rem; margin-bottom: 0.8rem; }
    .modal-body ul li { margin-bottom: 0.3rem; }
    .modal-body strong { font-weight: 600; color: var(--text-dark); }
    .modal-footer {
      background: var(--offwhite);
      border-top: 1px solid var(--border);
      padding: 1rem 1.8rem;
    }
    .btn-modal-close {
      background: var(--blue);
      color: white;
      border: none;
      padding: 0.55rem 1.8rem;
      border-radius: 4px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-modal-close:hover { background: var(--navy); }

    /* ─── MISC ─── */
    @media (max-width: 767px) {
      #hero { min-height: auto; padding: 4rem 0 3rem; }
      .hero-image-wrap { margin-top: 2.5rem; }
      .hero-badge { display: none; }
      .stat-divider { display: none; }
      .about-card { position: static; margin-top: 1rem; }
      section { padding: 4rem 0; }
    }

    .whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  z-index: 1000;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  animation: glow 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

/* 🌟 Glow animation */
@keyframes glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .whatsapp-btn {
    padding: 10px;
    border-radius: 50%;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn img {
    width: 28px;
    height: 28px;
  }
}