
    :root {
      --navy-bg: #15284b;
      --navy-card: #182c52;
      --navy-border: rgba(255, 255, 255, 0.22);
      --blue-btn: #2d79e6;
      --blue-btn-hover: #1b68d6;
      --text-white: #ffffff;
      --text-dark: #15284b;
      --text-muted: #556987;
      --flag-red: #c6363c;
      --page-bg: #eaf0f8;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }

    body {
      background-color: var(--page-bg);
      color: #333;
    }

    /* Container Spacing (Maintains exact 2-side margins) */
    .container-box {
      max-width: 1560px;
      margin: 0 auto;
      padding: 0 40px;
      width: 100%;
    }

    /* ========================================================
       1. HEADER STYLES
       ======================================================== */
    .site-header {
      background-color: var(--navy-bg);
      width: 100%;
      position: relative;
      z-index: 1000;
    }

    .header-top {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      height: 70px;
      border-bottom: 1px solid var(--navy-border);
    }

    .brand-section {
      display: flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
    }

    .flag-accent {
      display: flex;
      flex-direction: column;
      width: 5px;
      height: 38px;
      border-radius: 2px;
      overflow: hidden;
    }
    .flag-red { background: var(--flag-red); height: 34%; }
    .flag-blue { background: #0c4077; height: 33%; }
    .flag-white { background: #ffffff; height: 33%; }

    .brand-divider {
      width: 1px;
      height: 42px;
      background: var(--navy-border);
    }

    .brand-logo-text {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .brand-logo-text .ribbon-icon {
      width: 24px;
      height: 24px;
      background: linear-gradient(135deg, #c6363c 50%, #2d79e6 50%);
      border-radius: 50%;
      display: inline-block;
    }
    .logo-main { color: var(--text-white); line-height: 1.1; }
    .logo-main .line-1 { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; }
    .logo-main .line-2 { font-size: 16px; font-weight: 600; display: block; }
    .logo-main .line-2 span { font-style: italic; font-weight: 400; font-size: 14px; margin-right: 3px; }

    .header-cta-group { display: flex; align-items: stretch; }
    .cta-box {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 26px;
      text-decoration: none;
      transition: background 0.2s ease;
    }
    .cta-box .sub-label { font-size: 11px; margin-bottom: 2px; opacity: 0.9; font-weight: 500; }
    .cta-box .main-label { font-size: 14px; font-weight: 700; line-height: 1.25; }
    .cta-visa { background-color: var(--blue-btn); color: var(--text-white); min-width: 180px; }
    .cta-visa:hover { background-color: var(--blue-btn-hover); }
    .cta-residence { background-color: var(--text-white); color: var(--text-dark); max-width: 260px; }
    .cta-residence:hover { background-color: #f7fafc; }

    .hamburger-btn {
      display: none;
      background: none;
      border: none;
      color: var(--text-white);
      font-size: 24px;
      padding: 0 20px;
      cursor: pointer;
    }

    /* Main Navbar */
    .main-navbar { background-color: var(--navy-bg); width: 100%; position: relative; }
    .nav-list { display: flex; list-style: none; align-items: stretch; width: 100%; justify-content: space-between; }
    .nav-item {
      flex: 1;
      display: flex;
      align-items: stretch;
      justify-content: center;
      border-right: 1px solid var(--navy-border);
      position: relative;
    }
    .nav-item:first-child { border-left: 1px solid var(--navy-border); }
    .nav-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      color: var(--text-white);
      text-decoration: none;
      font-size: 12.5px;
      font-weight: 600;
      padding: 13px 8px;
      text-align: center;
      width: 100%;
      cursor: pointer;
    }
    .nav-link i.chevron-icon { font-size: 9px; transition: transform 0.2s ease; margin-left: 3px; }
    .nav-link:hover { background-color: rgba(255, 255, 255, 0.08); }

    .nav-item.active { background-color: var(--text-white); }
    .nav-item.active .nav-link { background-color: var(--text-white); color: var(--text-dark); }
    .nav-item.active .nav-link i.chevron-icon { transform: rotate(180deg); color: var(--text-dark); }
    .lang-item { flex: 0 0 65px; border-right: none; }
    .lang-item .nav-link { font-size: 14px; }

    /* Desktop Mega Sub-Menu */
    .desktop-megamenu {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--text-white);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      display: none;
      z-index: 999;
      border-bottom: 1px solid #d9e1ec;
    }
    .megamenu-inner {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      padding: 24px 40px;
      max-width: 1560px;
      margin: 0 auto;
      box-sizing: border-box;
      overflow-x: auto;
    }
    .megamenu-item {
      flex: 1;
      min-width: 95px;
      max-width: 140px;
      color: var(--text-dark);
      font-size: 12.5px;
      font-weight: 600;
      line-height: 1.35;
      text-decoration: none;
      display: block;
      transition: color 0.15s ease;
    }
    .megamenu-item:hover { color: var(--blue-btn); }

    /* ========================================================
       2. HERO SECTION & SPLIT BACKGROUND
       ======================================================== */
    .hero-wrapper {
      position: relative;
      background: #eaf0f8;
      overflow: hidden;
      padding-bottom: 50px;
    }

    .hero-bg-cover {
      position: absolute;
      top: 0;
      right: 0;
      width: 45%;
      height: 480px;
      background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
      z-index: 1;
    }

    .hero-header-text {
      position: relative;
      z-index: 2;
      padding-top: 50px;
      padding-bottom: 30px;
      max-width: 600px;
    }
    .hero-header-text h1 {
      font-size: 44px;
      font-weight: 800;
      color: #ffffff;
      text-shadow: 0 2px 10px rgba(0, 30, 80, 0.4);
      margin-bottom: 14px;
    }
    .hero-header-text p {
      font-size: 14px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.92);
      text-shadow: 0 1px 6px rgba(0, 30, 80, 0.5);
      margin-bottom: 8px;
    }
    .hero-header-text .sub-statute {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.4;
    }

    .stay-guide-card {
      position: relative;
      z-index: 5;
      background: var(--text-white);
      box-shadow: 0 12px 36px rgba(0, 30, 70, 0.12);
      border-left: 10px solid var(--blue-btn);
      padding: 40px 48px;
      margin-top: 10px;
      display: flex;
      gap: 50px;
      align-items: center;
    }

    .guide-left { flex: 1.2; }
    .guide-left h2 {
      font-size: 26px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 28px;
    }

    .guide-step {
      padding-bottom: 16px;
      margin-bottom: 16px;
      border-bottom: 1px solid #edf2f7;
    }
    .guide-step:last-of-type {
      border-bottom: none;
      margin-bottom: 24px;
    }
    .guide-step h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 5px;
    }
    .guide-step p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.45;
    }

    .guide-action-btn {
      display: inline-block;
      background: var(--blue-btn);
      color: var(--text-white);
      font-size: 13.5px;
      font-weight: 700;
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 4px;
      transition: background 0.2s ease;
    }
    .guide-action-btn:hover { background: var(--blue-btn-hover); }

    .guide-right-img {
      flex: 1;
      border-radius: 4px;
      overflow: hidden;
      max-height: 340px;
    }
    .guide-right-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .tricolor-stripe {
      display: flex;
      height: 5px;
      width: 100%;
      margin: 40px 0 45px 0;
    }
    .stripe-red { background: #c6363c; flex: 1; }
    .stripe-white { background: #ffffff; flex: 1; }
    .stripe-blue { background: #15284b; flex: 1; }

    /* ========================================================
       3. INFO CARDS SECTION
       ======================================================== */
    .info-section { padding-bottom: 60px; }
    .info-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 32px;
      align-items: stretch;
    }

    .left-cards-stack {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .white-info-card {
      background: var(--text-white);
      border-left: 6px solid var(--blue-btn);
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
      display: flex;
      overflow: hidden;
      min-height: 160px;
    }

    .white-card-content {
      flex: 1;
      padding: 24px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .white-card-content h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .white-card-content p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 16px;
    }
    .learn-more-link {
      color: var(--blue-btn);
      font-size: 13px;
      font-weight: 700;
      text-decoration: underline;
      display: inline-block;
    }

    .white-card-image {
      width: 170px;
      min-height: 100%;
    }
    .white-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .navy-info-card {
      background-color: var(--navy-bg);
      color: var(--text-white);
      padding: 34px 36px;
      box-shadow: 0 6px 20px rgba(10, 25, 55, 0.2);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .navy-info-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .navy-info-card p {
      font-size: 13.5px;
      line-height: 1.6;
      opacity: 0.9;
      margin-bottom: 24px;
    }
    .navy-card-btn {
      background: var(--blue-btn);
      color: var(--text-white);
      border: none;
      padding: 13px 28px;
      font-size: 13.5px;
      font-weight: 700;
      border-radius: 4px;
      text-decoration: none;
      display: block;
      text-align: center;
      transition: background 0.2s ease;
    }
    .navy-card-btn:hover { background: var(--blue-btn-hover); }

    /* ========================================================
       4. eAPPLICATIONS SECTION
       ======================================================== */
    .eapps-section {
      background: linear-gradient(rgba(235, 240, 248, 0.88), rgba(235, 240, 248, 0.92)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=1400&auto=format&fit=crop') center/cover;
      padding: 70px 0;
      text-align: center;
    }

    .eapps-title {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 28px;
    }

    .eapps-card {
      background: var(--text-white);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      max-width: 650px;
      margin: 0 auto;
      padding: 36px 42px;
      text-align: left;
      border-radius: 6px;
    }
    .eapps-card-subtitle {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.45;
      margin-bottom: 16px;
    }
    .eapps-services-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .eapps-list { list-style: none; margin-bottom: 28px; }
    .eapps-list-item {
      padding: 8px 0;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .eapps-list-item::before {
      content: "";
      width: 4px;
      height: 16px;
      background-color: var(--blue-btn);
      display: inline-block;
      border-radius: 2px;
    }
    .eapps-list-item span.small-desc {
      display: block;
      font-size: 11px;
      font-weight: 400;
      color: #8898aa;
      margin-left: 16px;
    }

    .eapps-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .btn-visa-app {
      background: var(--blue-btn);
      color: var(--text-white);
      font-size: 14px;
      font-weight: 700;
      padding: 13px;
      border-radius: 4px;
      text-align: center;
      text-decoration: none;
      transition: background 0.2s ease;
    }
    .btn-visa-app:hover { background: var(--blue-btn-hover); }

    .btn-residence-app {
      background: #3988f7;
      color: var(--text-white);
      font-size: 14px;
      font-weight: 700;
      padding: 13px;
      border-radius: 4px;
      text-align: center;
      text-decoration: none;
      transition: background 0.2s ease;
    }
    .btn-residence-app:hover { background: #2376e8; }

    /* ========================================================
       5. FOOTER SECTION
       ======================================================== */
    .site-footer {
      background-color: #11203b;
      color: var(--text-white);
      padding: 40px 0;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .footer-links a {
      color: #a0aec0;
      font-size: 12.5px;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-links a:hover {
      color: var(--text-white);
      text-decoration: underline;
    }

    .footer-brand-side {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
    }
    .footer-logos {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .coat-emblem {
      width: 32px;
      height: 32px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy-bg);
      font-size: 16px;
    }
    .footer-copy {
      font-size: 11px;
      color: #718096;
    }

    /* ========================================================
       6. MOBILE DRAWER NAVIGATION
       ======================================================== */
    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.65);
      display: none;
      z-index: 2000;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 420px;
      height: 100vh;
      background-color: #17294d;
      z-index: 2100;
      display: flex;
      flex-direction: column;
      transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-drawer.open { right: 0; }

    .drawer-header, .drawer-sub-header {
      height: 60px;
      border-bottom: 1px solid var(--navy-border);
      display: flex;
      align-items: center;
      padding: 0 18px;
    }
    .drawer-header { justify-content: flex-end; }
    .drawer-sub-header { display: none; justify-content: space-between; }

    .close-drawer-btn, .sub-back-btn {
      background: none;
      border: none;
      color: var(--text-white);
      font-size: 22px;
      cursor: pointer;
    }
    .sub-title { color: var(--text-white); font-size: 16px; font-weight: 700; }

    .drawer-views-wrapper { position: relative; flex: 1; overflow-y: auto; }
    .drawer-view { padding: 8px 0 20px; }
    .mobile-nav-list, .mobile-sub-list { list-style: none; }
    .mobile-nav-item, .mobile-sub-item { border-bottom: 1px solid var(--navy-border); }
    .mobile-nav-link, .mobile-sub-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 22px;
      color: var(--text-white);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }
    .mobile-nav-link i, .mobile-sub-link i { color: #6e8cb5; font-size: 13px; }

    .mobile-cta-container {
      margin-top: 15px;
      display: flex;
      flex-direction: row;
      border-top: 1px solid var(--navy-border);
    }
    .mobile-cta-box { flex: 1; padding: 14px 16px; text-decoration: none; line-height: 1.25; }
    .mobile-cta-box .sub-label { font-size: 11px; margin-bottom: 2px; display: block; }
    .mobile-cta-box .main-label { font-size: 13px; font-weight: 700; }
    .mobile-cta-visa { background: var(--blue-btn); color: var(--text-white); }
    .mobile-cta-residence { background: var(--text-white); color: var(--navy-bg); }

    .mobile-lang-row {
      padding: 16px 22px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #6e8cb5;
      font-size: 15px;
    }

    .mobile-sub-view { display: none; }

    .chat-bubble {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 52px;
      height: 52px;
      background: var(--blue-btn);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 21px;
      box-shadow: 0 4px 16px rgba(45, 121, 230, 0.45);
      cursor: pointer;
      z-index: 3000;
    }

    @media (max-width: 1100px) {
      .main-navbar, .desktop-megamenu { display: none !important; }
      .header-cta-group { display: none; }
      .hamburger-btn { display: block; }
      .header-top { height: 64px; }
      .container-box { padding: 0 20px; }

      .hero-bg-cover { display: none; }
      .hero-header-text { max-width: 100%; }
      .hero-header-text h1 { font-size: 32px; }

      .stay-guide-card {
        flex-direction: column;
        padding: 30px 24px;
      }
      .guide-right-img { width: 100%; max-height: 250px; }

      .info-grid { grid-template-columns: 1fr; }
      .white-info-card { flex-direction: column; }
      .white-card-image { width: 100%; height: 180px; }

      .footer-inner { flex-direction: column; align-items: flex-start; }
      .footer-brand-side { align-items: flex-start; }
    }
