
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px;
    }

    /* Custom Premium Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
      height: 10px;
    }
    ::-webkit-scrollbar-track {
      background: var(--bg);
      border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    ::-webkit-scrollbar-thumb {
      background: rgba(40, 184, 112, 0.3);
      border-radius: 8px;
      border: 2px solid var(--bg);
      transition: background 0.3s;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: rgba(40, 184, 112, 0.6);
    }
    ::-webkit-scrollbar-corner {
      background: var(--bg);
    }


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --navy: #0d2d5e;
      --navy-deep: #071c3a;
      --navy-mid: #1a4a8a;
      --green: #28b870;
      --green-glow: #3de098;
      --bg: #04101f;
      --text: #eef3ff;
      --muted: #8ca8cc;
      --glass-bg: rgba(13, 29, 56, 0.45);
      --glass-border: rgba(40, 184, 112, 0.2);
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
      --font-en: 'DM Sans', sans-serif;
      --font-ar: 'Cairo', sans-serif;
      --font-heading-en: 'Montserrat', sans-serif;
    }

    @keyframes pulseGreenButton {

      0%,
      100% {
        box-shadow: 0 0 10px rgba(40, 184, 112, 0.2), 0 0 0 0px rgba(40, 184, 112, 0.2);
      }

      50% {
        box-shadow: 0 0 20px rgba(40, 184, 112, 0.6), 0 0 0 8px rgba(40, 184, 112, 0);
      }
    }

    /* Account Dropdown styling */
    .account-dropdown-wrapper {
      position: relative;
      display: inline-block;
    }

    .account-dropdown-menu {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      background: rgba(13, 29, 56, 0.95);
      border: 1px solid rgba(40, 184, 112, 0.25);
      border-radius: 16px;
      padding: 0.5rem;
      min-width: 180px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(40, 184, 112, 0.1);
      backdrop-filter: blur(12px);
      z-index: 1000;
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .account-dropdown-menu.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .dropdown-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.8rem 1rem;
      color: #eef3ff;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.2s;
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
    }

    .dropdown-item:hover {
      background: rgba(40, 184, 112, 0.15);
      color: #3de098;
    }

    [dir="rtl"] .account-dropdown-menu {
      right: auto;
      left: 0;
    }

    [dir="rtl"] .dropdown-item {
      text-align: right;
    }

    .dropdown-profile-header {
      padding: 0.8rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .dropdown-profile-header img {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      object-fit: cover;
      border: 1px solid var(--green);
    }

    .dropdown-profile-header i {
      font-size: 2.2rem;
      color: var(--muted);
    }

    .dropdown-profile-info {
      display: flex;
      flex-direction: column;
      min-width: 0;
      text-align: left;
    }

    [dir="rtl"] .dropdown-profile-info {
      text-align: right;
    }

    .profile-avatar-container:hover .avatar-hover-overlay {
      opacity: 1 !important;
    }

    .nav-avatar {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 6px;
      vertical-align: middle;
      border: 1px solid var(--green);
    }

    [dir="rtl"] .nav-avatar {
      margin-right: 0;
      margin-left: 6px;
    }

    /* Searchable Nationality Dropdown */
    .nationality-wrapper {
      position: relative;
      width: 100%;
    }

    .nationality-dropdown {
      position: absolute;
      top: calc(100% + 5px);
      left: 0;
      right: 0;
      background: rgba(13, 29, 56, 0.98);
      border: 1px solid rgba(40, 184, 112, 0.25);
      border-radius: 12px;
      max-height: 200px;
      overflow-y: auto;
      z-index: 1010;
      display: none;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(40, 184, 112, 0.1);
      backdrop-filter: blur(12px);
    }

    .nationality-dropdown.active {
      display: block;
    }

    .nationality-item {
      padding: 0.7rem 1.2rem;
      color: #eef3ff;
      cursor: pointer;
      font-size: 0.9rem;
      transition: all 0.2s;
      text-align: left;
    }

    [dir="rtl"] .nationality-item {
      text-align: right;
    }

    .nationality-item:hover {
      background: rgba(40, 184, 112, 0.15);
      color: #3de098;
    }

    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: var(--font-en);
      background: var(--bg);
      color: var(--text);
      overflow-wrap: break-word;
      word-wrap: break-word;
    }

    [dir="rtl"] body {
      font-family: var(--font-ar);
    }

    [dir="rtl"] h1,
    [dir="rtl"] h2,
    [dir="rtl"] h3,
    [dir="rtl"] h4,
    [dir="rtl"] .brand__title,
    [dir="rtl"] .hero-badge,
    [dir="rtl"] .section-label {
      font-family: var(--font-ar);
      letter-spacing: normal;
    }

    /* RTL specific overrides */
    [dir="rtl"] .dropdown-menu {
      left: auto;
      right: 50%;
      transform: translateX(50%) translateY(15px);
    }

    [dir="rtl"] .dropdown:hover>.dropdown-menu {
      transform: translateX(50%) translateY(5px);
    }

    [dir="rtl"] .dropdown-menu .dropdown-submenu>a::after {
      content: '\f0d9';
      /* left arrow instead of right arrow */
      right: auto;
      left: 1rem;
    }

    [dir="rtl"] .dropdown-submenu>.dropdown-menu {
      left: auto;
      right: 100%;
    }

    [dir="rtl"] .dropdown-submenu:hover>.dropdown-menu {
      transform: translateX(-5px) translateY(0);
    }

    [dir="rtl"] .branch-box ul li {
      padding-left: 0;
      padding-right: 1.2rem;
    }

    [dir="rtl"] .branch-box ul li::before {
      left: auto;
      right: 0;
    }

    [dir="rtl"] .brand {
      flex-direction: row;
    }

    /* Particles Container */
    #particles-hero {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: auto;
    }

    .page-wrapper {
      width: min(1200px, calc(100% - 2.5rem));
      margin: 0 auto;
      position: relative;
      z-index: 3;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      backdrop-filter: blur(20px) saturate(1.4);
      background: rgba(4, 16, 31, 0.85);
      border-bottom: 1px solid rgba(40, 184, 112, 0.1);
      transition: all 0.3s;
    }

    header.scrolled {
      background: rgba(4, 16, 31, 0.96);
      border-bottom-color: rgba(40, 184, 112, 0.3);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 0;
    }

    /* Left group: brand + nav controls */
    .nav-left-group {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    /* Hamburger icon (3 lines - professional) */
    .hamburger-icon {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 24px;
      height: 20px;
      cursor: pointer;
      padding: 2px 0;
      margin-left: 0.8rem;
      /* Move slightly more right for visual balance */
    }

    .hamburger-icon span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--muted);
      border-radius: 2px;
      transition: background 0.25s, transform 0.25s;
    }

    .hamburger-icon span:nth-child(2) {
      width: 75%;
    }

    .dropdown:hover .hamburger-icon span,
    .dropdown:focus-within .hamburger-icon span {
      background: var(--text);
    }

    .dropdown:hover .hamburger-icon span:nth-child(2) {
      width: 100%;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .brand-logo-img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      animation: logoGlow 3s ease-in-out infinite;
    }

    @keyframes logoGlow {

      0%,
      100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(40, 184, 112, 0.3));
        transform: scale(1);
      }

      50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(40, 184, 112, 0.8));
        transform: scale(1.02);
      }
    }

    .brand__title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.45rem;
      letter-spacing: 0.3em;
      font-weight: 900;
      color: var(--text);
      line-height: 1;
    }

    .brand__subtitle {
      font-size: 0.6rem;
      color: var(--green);
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-weight: 600;
    }

    nav ul {
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
      list-style: none;
      align-items: center;
    }

    nav a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--muted);
      position: relative;
      transition: color 0.25s;
      text-decoration: none;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--green);
      transition: width 0.3s;
    }

    nav a:hover {
      color: var(--text);
    }

    nav a:hover::after {
      width: 100%;
    }

    /* Dropdown Menu */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(15px);
      background: rgba(4, 16, 31, 0.95);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(40, 184, 112, 0.2);
      border-radius: 12px;
      padding: 0.5rem 0;
      min-width: 180px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .dropdown:hover>.dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(5px);
    }

    /* Prevent clipping on primary hamburger dropdown */
    .main-nav-menu {
      left: 0 !important;
      transform: translateY(15px) !important;
    }

    .dropdown:hover>.main-nav-menu {
      transform: translateY(5px) !important;
    }

    [dir="rtl"] .main-nav-menu {
      left: auto !important;
      right: 0 !important;
      transform: translateY(15px) !important;
    }

    [dir="rtl"] .dropdown:hover>.main-nav-menu {
      transform: translateY(5px) !important;
    }

    .dropdown-menu li {
      width: 100%;
    }

    .dropdown-menu a {
      display: block;
      padding: 0.7rem 1.5rem;
      font-size: 0.85rem;
      color: var(--text);
      transition: background 0.3s, color 0.3s;
      position: relative;
    }

    .dropdown-menu a::after {
      display: none;
    }

    .dropdown-menu a:hover {
      background: rgba(40, 184, 112, 0.15);
      color: var(--green);
    }

    /* Sub Dropdown Menu */
    .dropdown-submenu {
      position: relative;
    }

    .dropdown-menu .dropdown-submenu>a::after {
      display: block;
      content: '\f0da';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: 15px;
      left: auto;
      bottom: auto;
      top: 50%;
      transform: translateY(-50%);
      width: auto;
      height: auto;
      background: transparent;
      color: var(--muted);
      transition: color 0.3s;
    }

    .dropdown-menu .dropdown-submenu>a:hover::after {
      color: var(--green);
    }

    .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
      transform: translateX(15px) translateY(0);
      margin-left: 0;
      min-width: 250px;
    }

    .dropdown-submenu:hover>.dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(5px) translateY(0);
    }

    @media (min-width: 901px) {
      /* Services submenu opens RIGHT (default behavior - no override) */
    }

    /* Clinical Research Interactive Console Styles */
    .clinical-research-container {
      margin-top: 3rem;
      width: 100%;
    }

    .full-width-card {
      width: 100%;
      text-align: center;
    }

    .full-width-card .service-icon {
      margin: 0 auto 1.5rem auto;
    }

    .full-width-card>p {
      max-width: 800px;
      margin: 0 auto;
    }

    .clinical-console {
      display: flex;
      flex-direction: column;
      gap: 2.2rem;
      margin-top: 3rem;
      width: 100%;
      text-align: left;
    }

    .clinical-tabs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      width: 100%;
    }

    @media (max-width: 820px) {
      .clinical-tabs {
        grid-template-columns: 1fr;
      }
    }

    .clinical-tab-card {
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
      overflow: hidden;
    }

    .clinical-tab-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(40, 184, 112, 0.1) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .clinical-tab-card:hover {
      transform: translateY(-3px);
      border-color: rgba(40, 184, 112, 0.3);
      background: rgba(13, 29, 56, 0.6);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(40, 184, 112, 0.1);
    }

    .clinical-tab-card.active {
      background: rgba(13, 29, 56, 0.8);
      border-color: var(--green);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(40, 184, 112, 0.2);
    }

    .clinical-tab-card.active::before {
      opacity: 1;
    }

    .clinical-tab-card i {
      font-size: 1.8rem;
      color: var(--green);
      transition: transform 0.4s ease;
      filter: drop-shadow(0 0 4px rgba(40, 184, 112, 0.4));
    }

    .clinical-tab-card:hover i {
      transform: scale(1.1);
    }

    .clinical-tab-card.active i {
      transform: scale(1.1) rotate(5deg);
      color: #3de098;
    }

    .clinical-tab-card-info {
      flex: 1;
    }

    .clinical-tab-card-info h4 {
      font-size: 1rem;
      color: white;
      margin: 0 0 0.2rem 0;
      font-weight: 700;
    }

    .clinical-tab-card-info p {
      font-size: 0.78rem;
      color: var(--muted);
      margin: 0;
    }

    .clinical-display {
      background: rgba(13, 29, 56, 0.45);
      border: 1px solid rgba(40, 184, 112, 0.25);
      border-radius: 20px;
      padding: 2.5rem;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 3rem;
      align-items: center;
      min-height: 420px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 900px) {
      .clinical-display {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.8rem;
      }
    }

    .clinical-display-content {
      animation: tabFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }

    .clinical-display-content h3 {
      font-size: 1.4rem;
      color: white;
      margin-top: 0;
      margin-bottom: 1.2rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .clinical-display-content h3 i {
      color: var(--green);
    }

    .clinical-display-content ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.8rem;
    }

    @media (min-width: 600px) and (max-width: 900px) {
      .clinical-display-content ul {
        grid-template-columns: 1fr 1fr;
      }
    }

    .clinical-display-content ul li {
      position: relative;
      padding-left: 1.5rem;
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.4;
    }

    .clinical-display-content ul li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 2px;
      font-size: 0.8rem;
      color: var(--green);
      filter: drop-shadow(0 0 2px var(--green));
    }

    .clinical-display-visual {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 280px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      animation: tabFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }

    .clinical-display-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease, filter 0.8s ease;
      filter: brightness(0.85) contrast(1.05);
    }

    .clinical-display-visual:hover img {
      transform: scale(1.05);
      filter: brightness(0.95) contrast(1.1);
    }

    .clinical-display-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(4, 16, 31, 0.8) 0%, transparent 50%);
      pointer-events: none;
    }

    .clinical-visual-tag {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      background: rgba(4, 16, 31, 0.85);
      border: 1px solid rgba(40, 184, 112, 0.4);
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-size: 0.72rem;
      color: #3de098;
      font-weight: bold;
      letter-spacing: 1px;
      text-transform: uppercase;
      backdrop-filter: blur(4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .clinical-visual-tag i {
      animation: pulseGreen 1.5s infinite;
    }

    @keyframes pulseGreen {

      0%,
      100% {
        opacity: 0.6;
      }

      50% {
        opacity: 1;
      }
    }

    @keyframes tabFadeIn {
      from {
        opacity: 0;
        transform: translateY(15px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Services Command Console Styles */
    .services-console {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 2.5rem;
      margin-top: 3rem;
      text-align: left;
    }

    @media (max-width: 950px) {
      .services-console {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    .services-nav {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      max-height: 600px;
      overflow-y: auto;
      padding-right: 0.5rem;
    }

    /* Scrollbar styling for services sidebar */
    .services-nav::-webkit-scrollbar {
      width: 4px;
    }

    .services-nav::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.02);
      border-radius: 4px;
    }

    .services-nav::-webkit-scrollbar-thumb {
      background: rgba(40, 184, 112, 0.3);
      border-radius: 4px;
    }

    .services-nav::-webkit-scrollbar-thumb:hover {
      background: var(--green);
    }

    @media (max-width: 950px) {
      .services-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.8rem;
        max-height: none;
      }
    }

    .services-nav-card {
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 1.1rem 1.4rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    .services-nav-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(40, 184, 112, 0.1) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .services-nav-card:hover {
      transform: translateX(4px);
      border-color: rgba(40, 184, 112, 0.35);
      background: rgba(13, 29, 56, 0.6);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 10px rgba(40, 184, 112, 0.1);
    }

    @media (max-width: 950px) {
      .services-nav-card:hover {
        transform: translateY(-2px);
      }
    }

    .services-nav-card.active {
      background: rgba(13, 29, 56, 0.8);
      border-color: var(--green);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(40, 184, 112, 0.25);
    }

    .services-nav-card.active::before {
      opacity: 1;
    }

    .services-nav-card i {
      font-size: 1.4rem;
      color: var(--green);
      transition: transform 0.4s ease;
      filter: drop-shadow(0 0 4px rgba(40, 184, 112, 0.3));
    }

    .services-nav-card.active i {
      transform: scale(1.15) rotate(5deg);
      color: #3de098;
    }

    .services-nav-card span {
      font-size: 0.95rem;
      font-weight: 700;
      color: white;
      transition: color 0.3s;
    }

    .services-nav-card.active span {
      color: #3de098;
    }

    .services-display-panel {
      background: rgba(13, 29, 56, 0.4);
      border: 1px solid rgba(40, 184, 112, 0.25);
      border-radius: 24px;
      padding: 3rem 2.5rem;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 3.5rem;
      align-items: center;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(40, 184, 112, 0.1);
      position: relative;
      overflow: hidden;
      min-height: 520px;
    }

    @media (max-width: 1080px) {
      .services-display-panel {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.2rem;
      }
    }

    .services-panel-content {
      animation: panelFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
      display: flex;
      flex-direction: column;
    }

    .services-panel-content h3 {
      font-size: 1.7rem;
      color: white;
      margin-top: 0;
      margin-bottom: 1.2rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .services-panel-content h3 i {
      color: var(--green);
    }

    .services-panel-content p {
      font-size: 1rem;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 1.8rem;
    }

    .services-panel-content .bullets-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.9rem;
      margin-bottom: 2rem;
    }

    @media (max-width: 600px) {
      .services-panel-content .bullets-grid {
        grid-template-columns: 1fr;
      }
    }

    .services-panel-content .bullets-grid div {
      position: relative;
      padding-left: 1.5rem;
      font-size: 0.88rem;
      color: var(--text);
      line-height: 1.4;
      font-weight: 500;
    }

    .services-panel-content .bullets-grid div::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 1px;
      font-size: 0.8rem;
      color: var(--green);
      filter: drop-shadow(0 0 2px var(--green));
    }

    .services-panel-visual-box {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 340px;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
      animation: panelFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }

    @media (max-width: 1080px) {
      .services-panel-visual-box {
        min-height: 280px;
      }
    }

    .services-panel-visual-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease, filter 0.8s ease;
      filter: brightness(0.8) contrast(1.05);
    }

    .services-panel-visual-box:hover img {
      transform: scale(1.06);
      filter: brightness(0.9) contrast(1.1);
    }

    .services-panel-visual-box::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(4, 16, 31, 0.85) 0%, transparent 60%);
      pointer-events: none;
    }

    .services-panel-metric {
      position: absolute;
      bottom: 1.2rem;
      left: 1.2rem;
      background: rgba(4, 16, 31, 0.85);
      border: 1px solid rgba(40, 184, 112, 0.4);
      padding: 0.5rem 1rem;
      border-radius: 30px;
      font-size: 0.78rem;
      color: #3de098;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      backdrop-filter: blur(4px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .services-panel-metric i {
      color: #3de098;
      animation: pulseGreen 1.5s infinite;
    }

    /* Cyber Scanner Overlay Effects */
    .cyber-scanner {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(to right, transparent, var(--green), transparent);
      box-shadow: 0 0 12px var(--green);
      opacity: 0;
      pointer-events: none;
      z-index: 5;
    }

    .services-panel-visual-box.scanning .cyber-scanner {
      animation: cyberScan 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    }

    @keyframes cyberScan {
      0% {
        top: 0%;
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        top: 100%;
        opacity: 0;
      }
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.55;
      z-index: 0;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(90deg, rgba(4, 16, 31, 0.92) 40%, rgba(4, 16, 31, 0.3) 100%),
        linear-gradient(180deg, rgba(4, 16, 31, 0.5) 0%, transparent 30%, rgba(4, 16, 31, 0.8) 100%);
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(40, 184, 112, 0.12) 0%, transparent 70%);
      z-index: 2;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 780px;
      padding: 8rem 0 5rem;
      display: grid;
      gap: 1.6rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(40, 184, 112, 0.12);
      border: 1px solid rgba(40, 184, 112, 0.3);
      color: var(--green);
      padding: 0.45rem 1.1rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      width: fit-content;
    }

    .hero h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      font-weight: 900;
    }

    .hero h1 .accent {
      color: var(--green);
    }

    .hero-desc {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 600px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.9rem 2rem;
      border-radius: 999px;
      font-weight: 700;
      transition: transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
      border: none;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--green);
      color: #fff;
      box-shadow: 0 0 30px rgba(40, 184, 112, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 50px rgba(40, 184, 112, 0.55);
    }

    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1.5px solid rgba(255, 255, 255, 0.25);
    }

    .btn-outline:hover {
      transform: translateY(-3px);
      border-color: var(--green);
      color: var(--green);
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
      padding-top: 0.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-item {
      display: grid;
      gap: 0.15rem;
    }

    .stat-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--text);
    }

    .stat-num span {
      color: var(--green);
    }

    .stat-label {
      font-size: 0.75rem;
      color: var(--muted);
      letter-spacing: 0.08em;
    }

    /* Sections */
    .section {
      padding: 5rem 0;
      position: relative;
    }

    .who-we-are-box {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(13, 29, 56, 0.6), rgba(8, 22, 40, 0.8));
      border-radius: 32px;
      padding: 3rem 2.5rem;
      z-index: 1;
      border: 1px solid rgba(40, 184, 112, 0.2);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .nexus-arrows-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5rem;
      overflow: hidden;
    }

    .nexus-arrows-bg .arrow-left,
    .nexus-arrows-bg .arrow-right {
      width: 150px;
      height: 150px;
      border-top: 25px solid var(--green);
      border-right: 25px solid var(--green);
      border-radius: 10px;
    }

    .nexus-arrows-bg .arrow-left {
      animation: convergeLeft 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    }

    .nexus-arrows-bg .arrow-right {
      animation: convergeRight 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    }

    @keyframes convergeLeft {
      0% {
        transform: translateX(-150px) rotate(45deg) scale(0.8);
        opacity: 0;
      }

      100% {
        transform: translateX(50px) rotate(45deg) scale(1);
        opacity: 0.15;
        filter: drop-shadow(0 0 20px var(--green));
      }
    }

    @keyframes convergeRight {
      0% {
        transform: translateX(150px) rotate(-135deg) scale(0.8);
        opacity: 0;
      }

      100% {
        transform: translateX(-50px) rotate(-135deg) scale(1);
        opacity: 0.15;
        filter: drop-shadow(0 0 20px var(--green));
      }
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--green);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--green);
      border-radius: 2px;
    }

    .section h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 1.2rem;
    }

    .section-intro {
      color: var(--muted);
      margin-bottom: 2rem;
      max-width: 800px;
      line-height: 1.7;
    }

    /* Glassmorphism Cards */
    .card-glass {
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: 28px;
      padding: 2rem;
      transition: transform 0.4s ease, border-color 0.3s;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .card-glass:hover {
      transform: translateY(-6px);
      border-color: rgba(40, 184, 112, 0.5);
      box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.4);
    }

    .card-icon {
      font-size: 2.2rem;
      color: var(--green);
      margin-bottom: 1rem;
    }

    .card-glass h3 {
      font-size: 1.4rem;
      margin-bottom: 0.8rem;
      font-weight: 700;
    }

    .card-glass p {
      color: var(--muted);
      line-height: 1.7;
    }

    .benefit-box {
      background: rgba(4, 16, 31, 0.5);
      border: 1px solid rgba(40, 184, 112, 0.15);
      padding: 2rem 1.5rem;
      border-radius: 20px;
      text-align: center;
      transition: all 0.3s ease;
      flex: 1 1 300px;
      max-width: 350px;
    }

    .benefit-box:hover {
      transform: translateY(-5px);
      border-color: rgba(40, 184, 112, 0.4);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .benefit-box i {
      font-size: 2.2rem;
      color: var(--green);
      margin-bottom: 1.2rem;
    }

    .benefit-box h4 {
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 0.8rem;
    }

    .benefit-box p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.6;
      margin: 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
      display: grid;
      gap: 2rem;
    }

    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .service-icon {
      width: 3rem;
      height: 3rem;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(13, 45, 94, 0.8), rgba(26, 74, 138, 0.5));
      border: 1px solid rgba(40, 184, 112, 0.2);
      color: var(--green);
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }

    .list-bullet {
      list-style: none;
      padding-left: 0;
    }

    .list-bullet li {
      margin-bottom: 0.7rem;
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
    }

    .list-bullet li i {
      color: var(--green);
      margin-top: 0.2rem;
    }

    footer {
      padding: 3rem 0;
      border-top: 1px solid rgba(40, 184, 112, 0.1);
      background: linear-gradient(0deg, rgba(4, 16, 31, 1), transparent);
      text-align: center;
    }

    .back-to-top {
      position: fixed;
      right: 1.5rem;
      bottom: 1.5rem;
      width: 3rem;
      height: 3rem;
      background: rgba(40, 184, 112, 0.15);
      border: 1px solid rgba(40, 184, 112, 0.3);
      color: var(--green);
      border-radius: 50%;
      display: grid;
      place-items: center;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.25s;
      z-index: 99;
      backdrop-filter: blur(8px);
    }

    .back-to-top.visible {
      opacity: 1;
    }

    .back-to-top:hover {
      background: rgba(40, 184, 112, 0.3);
    }

    @media (max-width: 900px) {

      .grid-2,
      .grid-3,
      .grid-4 {
        grid-template-columns: 1fr;
      }

      .nav-inner {
        flex-direction: column;
        padding: 1rem;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      /* Mobile Navigation - Expand Downwards */
      nav ul {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
      }

      .dropdown-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        width: 220px;
        z-index: 1000;
      }

      .dropdown-submenu .dropdown-menu {
        position: static;
        /* This makes it open downwards, pushing sibling items */
        width: 100%;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Hide by default */
        background: rgba(40, 184, 112, 0.05);
        border: none;
        box-shadow: none;
        margin: 0;
      }

      .dropdown-submenu:hover>.dropdown-menu {
        display: flex;
        flex-direction: column;
      }

      .dropdown-menu .dropdown-submenu>a::after {
        content: '\f0d7';
        /* caret down */
        right: 1.5rem;
        left: auto;
        transform: translateY(-50%);
      }

      [dir="rtl"] .dropdown-menu .dropdown-submenu>a::after {
        left: 1.5rem;
        right: auto;
      }
    }

    /* Products Gallery */
    .product-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
      perspective: 1200px;
    }

    .product-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/5;
      border: 1px solid rgba(40, 184, 112, 0.2);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
      background: rgba(4, 16, 31, 0.6);
      transform-style: preserve-3d;
      will-change: transform;
    }

    .product-card:hover {
      border-color: rgba(40, 184, 112, 0.8);
      box-shadow: 0 25px 50px rgba(40, 184, 112, 0.25);
    }

    .product-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      transform: scale(1.05) translateZ(-10px);
      transform-style: preserve-3d;
    }

    .product-card:hover img {
      transform: scale(1.12) translateZ(-15px);
    }

    .product-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(4, 16, 31, 0.95), transparent 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2rem;
      opacity: 0;
      transition: opacity 0.4s ease;
      transform-style: preserve-3d;
      transform: translateZ(30px);
    }

    .product-card:hover .product-overlay {
      opacity: 1;
    }

    .product-overlay h4 {
      color: var(--green);
      font-size: 1.35rem;
      margin-bottom: 0.5rem;
      transform: translateY(15px) translateZ(40px);
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .product-overlay p {
      color: var(--text);
      font-size: 0.95rem;
      transform: translateY(15px) translateZ(30px);
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      transition-delay: 0.05s;
      text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    }

    .product-card:hover .product-overlay h4 {
      transform: translateY(0) translateZ(40px);
    }

    .product-card:hover .product-overlay p {
      transform: translateY(0) translateZ(30px);
    }

    /* Specular highlight / reflective glare overlay */
    .product-glare {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 65%);
      pointer-events: none;
      z-index: 5;
      mix-blend-mode: overlay;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .product-card:hover .product-glare {
      opacity: 1;
    }

    /* Product Modal */
    .product-modal {
      position: fixed;
      inset: 0;
      background: rgba(4, 16, 31, 0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .product-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .close-modal {
      position: absolute;
      top: 2rem;
      right: 2rem;
      width: 3.2rem;
      height: 3.2rem;
      background: var(--green);
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.6rem;
      cursor: pointer;
      border: 2px solid rgba(4, 16, 31, 0.9);
      transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
      z-index: 1010;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .close-modal:hover {
      background: #1fa060;
      transform: scale(1.1) rotate(90deg);
      box-shadow: 0 0 15px rgba(40, 184, 112, 0.6);
    }

    /* Modal 3D Scene Viewport */
    .modal-3d-scene {
      width: min(440px, 90vw);
      height: min(550px, 70vh);
      perspective: 1600px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: grab;
      user-select: none;
      -webkit-user-select: none;
      z-index: 1005;
    }

    .modal-3d-scene:active {
      cursor: grabbing;
    }

    .modal-3d-card {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transform: rotateX(0deg) rotateY(0deg);
      will-change: transform;
    }

    .modal-card-face {
      position: absolute;
      inset: 0;
      border-radius: 28px;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      overflow: hidden;
      border: 1.5px solid rgba(40, 184, 112, 0.35);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .modal-card-front {
      background: rgba(4, 16, 31, 0.98);
      z-index: 2;
      transform: rotateY(0deg);
    }

    .modal-card-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
    }

    .modal-card-back {
      background: linear-gradient(135deg, rgba(4, 20, 36, 0.98) 0%, rgba(10, 42, 28, 0.98) 100%);
      transform: rotateY(180deg);
      padding: 2.2rem;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: center;
      border: 2px solid rgba(40, 184, 112, 0.5);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .modal-back-content {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      transform-style: preserve-3d;
    }

    .logo-emblem {
      font-size: 2.5rem;
      color: var(--green);
      filter: drop-shadow(0 0 10px rgba(40, 184, 112, 0.5));
      animation: pulseEmblem 3s infinite ease-in-out;
      transform: translateZ(35px);
    }

    @keyframes pulseEmblem {

      0%,
      100% {
        transform: translateZ(35px) scale(1);
        opacity: 0.9;
      }

      50% {
        transform: translateZ(35px) scale(1.08);
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(40, 184, 112, 0.8));
      }
    }

    .brand-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      letter-spacing: 3px;
      font-size: 1.15rem;
      background: linear-gradient(135deg, #ffffff 30%, var(--green) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-top: 0.4rem;
      transform: translateZ(40px);
    }

    .modal-back-content .divider {
      width: 60px;
      height: 2px;
      background: var(--green);
      margin: 0.6rem 0;
      box-shadow: 0 0 8px var(--green);
      transform: translateZ(30px);
    }

    .product-meta-details {
      margin: 0.8rem 0;
      transform: translateZ(45px);
      width: 100%;
    }

    .product-meta-details h4 {
      font-size: 1.4rem;
      color: #fff;
      margin-bottom: 0.3rem;
      font-weight: 700;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .product-meta-details .category {
      font-size: 0.8rem;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .product-meta-details .desc {
      font-size: 0.88rem;
      color: var(--text);
      line-height: 1.5;
      max-height: 100px;
      overflow-y: auto;
      padding: 0 0.5rem;
    }

    .divider-sub {
      width: 80%;
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin: 0.6rem 0;
      transform: translateZ(25px);
    }

    .specs-grid {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
      transform: translateZ(35px);
    }

    .spec-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 0.5rem;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .spec-lbl {
      font-size: 0.65rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .spec-val {
      font-size: 0.8rem;
      color: #fff;
      font-weight: 600;
    }

    .footer-seal {
      font-size: 0.72rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 0.8rem;
      transform: translateZ(20px);
    }

    .footer-seal i {
      color: var(--green);
    }

    /* Glossy reflection on modal faces */
    .modal-glare {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 65%);
      pointer-events: none;
      z-index: 5;
      mix-blend-mode: overlay;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .modal-card-face:hover .modal-glare {
      opacity: 1;
    }

    /* Modal hint overlay */
    .modal-hint {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(4, 16, 31, 0.8);
      border: 1px solid rgba(40, 184, 112, 0.35);
      padding: 0.6rem 1.2rem;
      border-radius: 30px;
      font-size: 0.85rem;
      color: #fff;
      pointer-events: none;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
      animation: floatHint 2.5s infinite ease-in-out;
      z-index: 1008;
    }

    .modal-hint i {
      color: var(--green);
      font-size: 0.95rem;
      animation: pingIcon 1.5s infinite ease-in-out;
    }

    @keyframes floatHint {

      0%,
      100% {
        transform: translate(-50%, 0);
      }

      50% {
        transform: translate(-50%, -6px);
      }
    }

    @keyframes pingIcon {

      0%,
      100% {
        transform: scale(1);
        opacity: 0.8;
      }

      50% {
        transform: scale(1.25);
        opacity: 1;
      }
    }

    @media (max-width: 768px) {
      .close-modal {
        top: 1rem;
        right: 1rem;
        width: 2.6rem;
        height: 2.6rem;
        font-size: 1.3rem;
      }

      .modal-hint {
        font-size: 0.78rem;
        padding: 0.5rem 1rem;
        bottom: 1.5rem;
      }
    }

    /* Timeline Section */
    .timeline-container {
      position: relative;
      max-width: 1000px;
      margin: 4rem auto 0;
      padding: 2rem 0;
    }

    .timeline-container::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background: rgba(40, 184, 112, 0.15);
      transform: translateX(-50%);
    }

    .timeline-progress {
      position: absolute;
      top: 0;
      left: 50%;
      width: 4px;
      height: 0;
      background: var(--green);
      transform: translateX(-50%);
      box-shadow: 0 0 15px var(--green), 0 0 30px var(--green);
      z-index: 1;
    }

    .timeline-item {
      position: relative;
      margin-bottom: 3rem;
      width: 50%;
      padding: 0 3rem;
      opacity: 0;
    }

    .timeline-item:nth-child(odd) {
      left: 0;
      text-align: right;
      transform: translateX(-50px);
    }

    .timeline-item:nth-child(even) {
      left: 50%;
      text-align: left;
      transform: translateX(50px);
    }

    .timeline-item::after {
      content: '';
      position: absolute;
      top: 2rem;
      width: 20px;
      height: 20px;
      background: var(--bg);
      border: 4px solid var(--green);
      border-radius: 50%;
      z-index: 2;
      box-shadow: 0 0 10px rgba(40, 184, 112, 0.5);
      transition: background 0.3s;
    }

    .timeline-item.active::after {
      background: var(--green);
      box-shadow: 0 0 15px var(--green);
    }

    .timeline-item:nth-child(odd)::after {
      right: -10px;
    }

    .timeline-item:nth-child(even)::after {
      left: -10px;
    }

    .timeline-card {
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 2.2rem;
      position: relative;
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
    }

    .timeline-card:hover {
      transform: translateY(-6px) scale(1.02);
      border-color: rgba(40, 184, 112, 0.55);
      box-shadow: 0 15px 35px rgba(40, 184, 112, 0.15);
    }

    .timeline-step {
      font-family: 'Montserrat', sans-serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(40, 184, 112, 0.08);
      position: absolute;
      top: 0.8rem;
      right: 1.5rem;
      line-height: 1;
      pointer-events: none;
      user-select: none;
      transition: color 0.4s ease;
    }

    .timeline-item.active .timeline-step {
      color: rgba(40, 184, 112, 0.16);
    }

    .timeline-item:nth-child(even) .timeline-step {
      left: 1.5rem;
      right: auto;
    }

    .timeline-card-header {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      transition: gap 0.3s;
    }

    .timeline-item:nth-child(odd) .timeline-card-header {
      flex-direction: row-reverse;
    }

    .timeline-item:nth-child(even) .timeline-card-header {
      flex-direction: row;
    }

    .timeline-icon-box {
      position: relative;
      width: 64px;
      height: 64px;
      flex-shrink: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .timeline-icon {
      position: absolute;
      font-size: 1.5rem;
      color: var(--text);
      opacity: 0.45;
      transition: color 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    }

    .timeline-item.active .timeline-icon,
    .timeline-card:hover .timeline-icon {
      color: var(--green);
      opacity: 1;
      transform: scale(1.15);
      filter: drop-shadow(0 0 8px rgba(40, 184, 112, 0.4));
    }

    .progress-ring {
      position: absolute;
      top: 0;
      left: 0;
      width: 64px;
      height: 64px;
    }

    .progress-ring__circle-bg {
      stroke: rgba(255, 255, 255, 0.05);
    }

    .progress-ring__circle {
      stroke-dasharray: 164;
      stroke-dashoffset: 164;
      transform: rotate(-90deg);
      transform-origin: 32px 32px;
      transition: stroke-dashoffset 1.4s cubic-bezier(0.25, 1, 0.5, 1);
      filter: drop-shadow(0 0 3px var(--green));
    }

    .timeline-item.active .progress-ring__circle,
    .timeline-card.expanded .progress-ring__circle {
      stroke-dashoffset: 0;
    }

    .timeline-content-brief {
      flex-grow: 1;
    }

    .timeline-item:nth-child(odd) .timeline-content-brief {
      text-align: right;
    }

    .timeline-item:nth-child(even) .timeline-content-brief {
      text-align: left;
    }

    .timeline-content-brief h3 {
      color: var(--green);
      font-size: 1.35rem;
      margin-bottom: 0.6rem;
      font-weight: 700;
    }

    .timeline-content-brief p {
      color: var(--muted);
      line-height: 1.6;
      font-size: 0.95rem;
    }

    /* Details Drawer */
    .timeline-details-drawer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, margin-top 0.4s ease;
    }

    .timeline-item.active .timeline-details-drawer,
    .timeline-card.expanded .timeline-details-drawer {
      max-height: 300px;
      opacity: 1;
      margin-top: 1.2rem;
    }

    .timeline-divider {
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
      margin-bottom: 1rem;
    }

    .details-title {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--green);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .timeline-item:nth-child(odd) .details-title {
      justify-content: flex-end;
    }

    .timeline-item:nth-child(even) .details-title {
      justify-content: flex-start;
    }

    .timeline-milestones {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }

    .milestone-pill {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 0.6rem 0.8rem;
      font-size: 0.85rem;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }

    .timeline-item:nth-child(odd) .milestone-pill {
      flex-direction: row-reverse;
      text-align: right;
    }

    .timeline-item:nth-child(even) .milestone-pill {
      flex-direction: row;
      text-align: left;
    }

    .milestone-pill i {
      color: rgba(40, 184, 112, 0.3);
      font-size: 0.85rem;
      transition: color 0.4s ease, filter 0.4s ease;
    }

    .timeline-item.active .milestone-pill i,
    .timeline-card.expanded .milestone-pill i {
      color: var(--green);
      filter: drop-shadow(0 0 3px var(--green));
    }

    .milestone-pill:hover {
      transform: translateY(-2px);
      background: rgba(40, 184, 112, 0.06) !important;
      border-color: rgba(40, 184, 112, 0.25) !important;
    }

    /* RTL specific overrides for Timeline */
    [dir="rtl"] .timeline-item:nth-child(odd) .timeline-card-header {
      flex-direction: row;
    }

    [dir="rtl"] .timeline-item:nth-child(even) .timeline-card-header {
      flex-direction: row-reverse;
    }

    [dir="rtl"] .timeline-item:nth-child(odd) .timeline-content-brief {
      text-align: left;
    }

    [dir="rtl"] .timeline-item:nth-child(even) .timeline-content-brief {
      text-align: right;
    }

    [dir="rtl"] .timeline-item:nth-child(odd) .details-title {
      justify-content: flex-start;
    }

    [dir="rtl"] .timeline-item:nth-child(even) .details-title {
      justify-content: flex-end;
    }

    [dir="rtl"] .timeline-item:nth-child(odd) .milestone-pill {
      flex-direction: row;
      text-align: left;
    }

    [dir="rtl"] .timeline-item:nth-child(even) .milestone-pill {
      flex-direction: row-reverse;
      text-align: right;
    }

    @media (max-width: 768px) {
      .timeline-container::before {
        left: 20px;
      }

      .timeline-progress {
        left: 20px;
      }

      .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
      }

      .timeline-item:nth-child(odd),
      .timeline-item:nth-child(even) {
        left: 0;
        transform: translateX(-30px);
      }

      .timeline-item:nth-child(odd)::after,
      .timeline-item:nth-child(even)::after {
        left: 10px;
        right: auto;
      }

      .timeline-step {
        right: 1.5rem !important;
        left: auto !important;
      }

      /* Upgraded Timeline mobile adaptations */
      .timeline-item:nth-child(odd) .timeline-card-header,
      .timeline-item:nth-child(even) .timeline-card-header {
        flex-direction: row !important;
      }

      .timeline-content-brief {
        text-align: left !important;
      }

      .details-title {
        justify-content: flex-start !important;
      }

      .timeline-milestones {
        grid-template-columns: 1fr !important;
      }

      .milestone-pill {
        flex-direction: row !important;
        text-align: left !important;
      }

      /* RTL specific for Mobile */
      [dir="rtl"] .timeline-container::before {
        left: auto;
        right: 20px;
      }

      [dir="rtl"] .timeline-progress {
        left: auto;
        right: 20px;
      }

      [dir="rtl"] .timeline-item {
        padding-left: 0;
        padding-right: 60px;
        text-align: right !important;
      }

      [dir="rtl"] .timeline-item:nth-child(odd)::after,
      [dir="rtl"] .timeline-item:nth-child(even)::after {
        left: auto;
        right: 10px;
      }

      [dir="rtl"] .timeline-step {
        left: 1.5rem !important;
        right: auto !important;
      }

      [dir="rtl"] .timeline-item:nth-child(odd) .timeline-card-header,
      [dir="rtl"] .timeline-item:nth-child(even) .timeline-card-header {
        flex-direction: row-reverse !important;
      }

      [dir="rtl"] .timeline-content-brief {
        text-align: right !important;
      }

      [dir="rtl"] .details-title {
        justify-content: flex-end !important;
      }

      [dir="rtl"] .milestone-pill {
        flex-direction: row-reverse !important;
        text-align: right !important;
      }
    }

    /* Team Section */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 3rem;
      margin-top: 3rem;
    }

    .team-card {
      background: rgba(4, 16, 31, 0.6);
      border: 1px solid rgba(40, 184, 112, 0.2);
      border-radius: 24px;
      padding: 2.5rem 1.5rem;
      text-align: center;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .team-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: linear-gradient(to bottom, rgba(40, 184, 112, 0.1), transparent);
      z-index: 0;
    }

    .team-card:hover {
      transform: translateY(-10px);
      border-color: rgba(40, 184, 112, 0.6);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .team-img-wrapper {
      width: 150px;
      height: 150px;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      padding: 5px;
      background: linear-gradient(135deg, var(--green), transparent);
      position: relative;
      z-index: 1;
    }

    .team-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid var(--bg);
      transition: transform 0.4s ease;
    }

    .team-card:hover .team-img {
      transform: scale(1.05);
    }

    .team-info {
      position: relative;
      z-index: 1;
    }

    .team-name {
      font-size: 1.4rem;
      color: #fff;
      margin-bottom: 0.3rem;
      font-weight: 600;
    }

    .team-role {
      color: var(--green);
      font-size: 0.95rem;
      margin-bottom: 1rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .team-desc {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      text-align: justify;
    }

    .team-social {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    .team-social a {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      color: white;
      font-size: 1.1rem;
      transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .team-social a:hover {
      background: var(--green);
      color: #fff;
      transform: translateY(-3px);
    }

    /* Event Planner Wizard */
    .planner-section-full {
      width: 100%;
      min-height: 700px;
      margin: 5rem 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.02);
    }

    .planner-visual-side {
      position: relative;
      overflow: hidden;
      background: #000;
      height: 100%;
    }

    .planner-visual-side img {
      width: 150%;
      /* Wider for more dramatic scanning */
      height: 100%;
      object-fit: cover;
      opacity: 0.9;
      animation: horizontalScan 20s infinite alternate ease-in-out;
    }

    @keyframes horizontalScan {
      0% {
        object-position: 0% 50%;
      }

      100% {
        object-position: 100% 50%;
      }
    }

    .planner-wizard-side {
      padding: 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: linear-gradient(135deg, rgba(13, 29, 56, 0.9), rgba(13, 29, 56, 0.7));
    }

    .planner-wizard-side>div {
      width: 100%;
      max-width: 500px;
      /* Keep wizard readable */
    }

    @keyframes kenBurns {
      0% {
        transform: scale(1);
      }

      100% {
        transform: scale(1.05);
      }
    }

    @keyframes raySweep {
      0% {
        transform: translateX(-30%) translateY(-30%);
      }

      100% {
        transform: translateX(30%) translateY(30%);
      }
    }

    /* Floating Cinematic Dust Particles */
    .planner-particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      filter: blur(1px);
      animation: floatParticle 15s infinite linear;
    }

    @keyframes floatParticle {
      0% {
        transform: translateY(110%) translateX(0) scale(1);
        opacity: 0;
      }

      20% {
        opacity: 0.5;
      }

      80% {
        opacity: 0.5;
      }

      100% {
        transform: translateY(-10%) translateX(100px) scale(0.5);
        opacity: 0;
      }
    }

    [dir="rtl"] .planner-visual {
      border-left: none;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .planner-steps-nav {
      display: flex;
      justify-content: space-between;
      margin-bottom: 3rem;
      position: relative;
    }

    .planner-steps-nav::before {
      content: '';
      position: absolute;
      top: 15px;
      left: 0;
      right: 0;
      height: 2px;
      background: rgba(255, 255, 255, 0.1);
      z-index: 0;
    }

    .step-indicator {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--navy-deep);
      border: 2px solid rgba(255, 255, 255, 0.1);
      display: grid;
      place-items: center;
      font-size: 0.8rem;
      font-weight: 700;
      z-index: 1;
      transition: all 0.3s ease;
      color: var(--muted);
    }

    .step-indicator.active {
      background: var(--green);
      border-color: var(--green);
      color: #fff;
      box-shadow: 0 0 15px var(--green);
    }

    .step-indicator.completed {
      background: var(--green);
      border-color: var(--green);
      color: #fff;
    }

    .planner-step-content {
      display: none;
      animation: fadeIn 0.5s ease;
      flex: 1;
    }

    .planner-step-content.active {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .planner-options {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .option-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      border-radius: 16px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .option-card:hover,
    .option-card.selected {
      background: rgba(40, 184, 112, 0.1);
      border-color: var(--green);
      transform: translateY(-5px);
    }

    .option-card i {
      font-size: 1.5rem;
      color: var(--green);
      margin-bottom: 1rem;
    }

    .planner-footer {
      display: flex;
      justify-content: space-between;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* FAQ Section */
    .faq-container {
      max-width: 800px;
      margin: 3rem auto 0;
    }

    .faq-item {
      margin-bottom: 1rem;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(13, 29, 56, 0.3);
    }

    .faq-question {
      padding: 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      transition: background 0.3s;
    }

    .faq-question:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      color: var(--muted);
      line-height: 1.7;
    }

    .faq-item.active .faq-answer {
      padding: 1rem 1.5rem 1.5rem;
      max-height: 300px;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
      color: var(--green);
    }

    /* Map Section */
    .map-wrapper {
      position: relative;
      background: rgba(13, 29, 56, 0.3);
      border-radius: 32px;
      padding: 3rem;
      margin-top: 3rem;
      border: 1px solid rgba(40, 184, 112, 0.1);
      overflow: hidden;
    }

    .egypt-map-svg {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      display: block;
      filter: drop-shadow(0 0 20px rgba(40, 184, 112, 0.15));
    }

    .map-pin {
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .map-pin:hover {
      filter: drop-shadow(0 0 8px var(--green));
    }

    /* Blog Section */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
      margin-top: 3rem;
    }

    .blog-card {
      border-radius: 24px;
      overflow: hidden;
      background: rgba(13, 29, 56, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.4s ease;
    }

    .blog-card:hover {
      transform: translateY(-10px);
      border-color: var(--green);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .blog-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-content {
      padding: 2rem;
    }

    .blog-tag {
      display: inline-block;
      padding: 0.3rem 0.8rem;
      background: rgba(40, 184, 112, 0.1);
      color: var(--green);
      border-radius: 99px;
      font-size: 0.75rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .blog-content h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    .blog-content p {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .blog-link {
      color: var(--green);
      text-decoration: none;
      font-weight: 700;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .blog-link i {
      font-size: 0.8rem;
      transition: transform 0.3s;
    }

    .blog-link:hover i {
      transform: translateX(5px);
    }

    /* Premium Footer */
    footer {
      background: rgba(13, 29, 56, 0.6);
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 5rem 0 2rem;
      margin-top: 5rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .footer-brand .brand {
      margin-bottom: 1.5rem;
    }

    .footer-brand p {
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.95rem;
      max-width: 320px;
    }

    .footer-title {
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 2rem;
      position: relative;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 30px;
      height: 2px;
      background: var(--green);
    }

    [dir="rtl"] .footer-title::after {
      left: auto;
      right: 0;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 1rem;
    }

    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      transition: all 0.3s;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-links a:hover {
      color: var(--green);
      padding-inline-start: 5px;
    }

    .footer-contact-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .footer-contact-item i {
      color: var(--green);
      font-size: 1.1rem;
      margin-top: 0.2rem;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: grid;
      place-items: center;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s;
    }

    .social-icon:hover {
      background: var(--green);
      border-color: var(--green);
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(40, 184, 112, 0.3);
    }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      color: var(--muted);
      font-size: 0.85rem;
    }

    /* WhatsApp Widget */
    .whatsapp-widget-container {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 15px;
      pointer-events: none;
    }

    [dir="rtl"] .whatsapp-widget-container {
      right: auto;
      left: 30px;
      align-items: flex-start;
    }

    .whatsapp-trigger-btn {
      width: 60px;
      height: 60px;
      background: #25d366;
      color: #fff;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 2.1rem;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
      cursor: pointer;
      pointer-events: auto;
      transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      animation: pulse-green 2s infinite;
      position: relative;
    }

    .whatsapp-trigger-btn:hover {
      transform: scale(1.08) translateY(-3px);
      background: #22c05b;
    }

    .whatsapp-trigger-btn.active {
      transform: rotate(135deg) scale(0.9);
      background: #ff3b30;
      box-shadow: 0 10px 25px rgba(255, 59, 48, 0.35);
      animation: none;
    }

    .whatsapp-trigger-btn.active i::before {
      content: "\f00d";
      /* Cross icon from FontAwesome */
    }

    .trigger-badge {
      position: absolute;
      top: -3px;
      right: -3px;
      background: #ff3b30;
      color: white;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      font-size: 0.72rem;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
      animation: bounce-badge 2s infinite;
    }

    [dir="rtl"] .trigger-badge {
      right: auto;
      left: -3px;
    }

    .whatsapp-chat-window {
      width: 360px;
      max-width: calc(100vw - 60px);
      border-radius: 20px;
      background: rgba(13, 29, 56, 0.88);
      backdrop-filter: blur(25px) saturate(1.5);
      border: 1px solid rgba(40, 184, 112, 0.25);
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      opacity: 0;
      transform: translateY(25px) scale(0.95);
      transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
      pointer-events: auto;
      visibility: hidden;
    }

    .whatsapp-chat-window.active {
      opacity: 1;
      transform: translateY(0) scale(1);
      visibility: visible;
    }

    .chat-header {
      background: linear-gradient(135deg, rgba(13, 45, 94, 0.95), rgba(4, 16, 31, 0.95));
      padding: 1.1rem 1.3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(40, 184, 112, 0.15);
    }

    .chat-header-info {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .chat-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid var(--green);
      background: rgba(255, 255, 255, 0.08);
      padding: 2px;
      object-fit: contain;
    }

    .chat-header-info h4 {
      font-size: 0.92rem;
      font-weight: 700;
      color: white;
      margin: 0;
      font-family: var(--font-heading-en);
    }

    [dir="rtl"] .chat-header-info h4 {
      font-family: var(--font-ar);
    }

    .chat-status {
      font-size: 0.72rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 2px;
    }

    .status-dot {
      width: 7px;
      height: 7px;
      background-color: var(--green);
      border-radius: 50%;
      display: inline-block;
      animation: pulse-status 1.6s infinite;
    }

    .chat-close {
      font-size: 1.4rem;
      color: var(--muted);
      cursor: pointer;
      transition: color 0.2s;
      padding: 0 4px;
      line-height: 1;
    }

    .chat-close:hover {
      color: #ff3b30;
    }

    .chat-body {
      padding: 1.3rem;
      background: radial-gradient(circle at 50% 50%, rgba(13, 29, 56, 0.45), rgba(4, 10, 20, 0.55));
      max-height: 250px;
      overflow-y: auto;
    }

    .chat-bubble {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 0.9rem 1rem;
      border-radius: 0 16px 16px 16px;
      max-width: 90%;
      margin-bottom: 0.5rem;
    }

    [dir="rtl"] .chat-bubble {
      border-radius: 16px 0 16px 16px;
    }

    .chat-bubble p {
      font-size: 0.85rem;
      color: var(--text);
      line-height: 1.45;
      margin: 0;
    }

    .chat-bubble.user-msg {
      background: rgba(40, 184, 112, 0.15);
      border: 1px solid rgba(40, 184, 112, 0.35);
      border-radius: 16px 16px 0 16px;
      margin-left: auto;
      margin-right: 0;
    }

    [dir="rtl"] .chat-bubble.user-msg {
      border-radius: 16px 16px 16px 0;
      margin-right: auto;
      margin-left: 0;
    }

    .chat-bubble.typing-msg {
      padding: 0.6rem 1rem;
      color: var(--muted);
      font-style: italic;
    }

    .chat-chips-container {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
      margin-bottom: 5px;
    }

    .chat-chip {
      background: rgba(40, 184, 112, 0.12);
      border: 1px solid rgba(40, 184, 112, 0.3);
      color: var(--green-glow);
      border-radius: 14px;
      padding: 6px 12px;
      font-size: 11px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.2s;
      outline: none;
    }

    .chat-chip:hover {
      background: rgba(40, 184, 112, 0.22);
      transform: translateY(-1px);
    }

    .chat-footer {
      padding: 1.1rem;
      background: rgba(4, 16, 31, 0.9);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .chat-footer textarea {
      width: 100%;
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      padding: 0.75rem;
      color: #fff;
      font-family: inherit;
      font-size: 0.85rem;
      resize: none;
      height: 68px;
      outline: none;
      transition: all 0.3s;
    }

    .chat-footer textarea:focus {
      border-color: var(--green);
      background: rgba(0, 0, 0, 0.5);
    }

    .chat-send-btn {
      width: 100%;
      padding: 0.78rem;
      background: linear-gradient(135deg, var(--green), #1fa060);
      color: white;
      border-radius: 12px;
      border: none;
      font-weight: 700;
      font-size: 0.88rem;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(40, 184, 112, 0.2);
    }

    .chat-send-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(40, 184, 112, 0.3);
    }

    .chat-send-btn:active {
      transform: translateY(0);
    }

    @keyframes bounce-badge {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-4px);
      }
    }

    @keyframes pulse-status {
      0% {
        opacity: 0.4;
      }

      50% {
        opacity: 1;
      }

      100% {
        opacity: 0.4;
      }
    }

    @keyframes pulse-green {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
      }

      70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    @media (max-width: 992px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
      }

      .planner-section-full {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .planner-visual-side {
        height: 400px;
      }

      .planner-wizard-side {
        padding: 3rem 1.5rem;
      }
    }

    @media (max-width: 576px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    /* Auth & Survey Modals */
    .auth-modal,
    .survey-modal {
      position: fixed;
      inset: 0;
      background: rgba(4, 16, 31, 0.95);
      backdrop-filter: blur(12px);
      z-index: 1050;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }

    .auth-modal.active,
    .survey-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .auth-box,
    .survey-box {
      background: rgba(13, 29, 56, 0.7);
      border: 1px solid rgba(40, 184, 112, 0.3);
      border-radius: 24px;
      padding: 3rem 2.5rem;
      width: 100%;
      max-width: 450px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      transform: scale(0.95) translateY(20px);
      transition: all 0.4s ease;
      position: relative;
    }

    .survey-box {
      max-width: 600px;
    }

    .auth-modal.active .auth-box,
    .survey-modal.active .survey-box {
      transform: scale(1) translateY(0);
    }

    .modal-close-btn {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      color: rgba(255, 255, 255, 0.5);
      font-size: 1.5rem;
      cursor: pointer;
      transition: color 0.3s;
    }

    [dir="rtl"] .modal-close-btn {
      right: auto;
      left: 1.5rem;
    }

    .modal-close-btn:hover {
      color: var(--green);
    }

    .auth-tabs {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 1rem;
    }

    .auth-tab {
      color: var(--muted);
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      position: relative;
      transition: color 0.3s;
    }

    .auth-tab.active {
      color: var(--green);
    }

    .auth-tab.active::after {
      content: '';
      position: absolute;
      bottom: -17px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--green);
      border-radius: 2px;
    }

    .auth-form {
      display: none;
      flex-direction: column;
      gap: 1.2rem;
      animation: fadeIn 0.4s ease;
    }

    .auth-form.active {
      display: flex;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-size: 0.85rem;
      color: var(--muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .password-wrapper {
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .password-wrapper .form-input {
      padding-right: 3rem;
    }

    [dir="rtl"] .password-wrapper .form-input {
      padding-right: 1.2rem;
      padding-left: 3rem;
    }

    .toggle-password-btn {
      position: absolute;
      right: 1.2rem;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--muted);
      cursor: pointer;
      font-size: 1.1rem;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: color 0.2s;
    }

    [dir="rtl"] .toggle-password-btn {
      right: auto;
      left: 1.2rem;
    }

    .toggle-password-btn:hover {
      color: var(--green);
    }

    .form-input {
      width: 100%;
      box-sizing: border-box;
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 0.9rem 1.2rem;
      border-radius: 12px;
      color: white;
      transition: all 0.3s;
    }

    select.form-input {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M7 10l5 5 5-5z'/></svg>");
      background-repeat: no-repeat;
      background-position: right 1.2rem center;
      background-size: 1.5rem;
      padding-right: 3rem !important;
    }

    [dir="rtl"] select.form-input {
      background-position: left 1.2rem center;
      padding-right: 1.2rem !important;
      padding-left: 3rem !important;
    }

    .form-input:focus {
      outline: none;
      border-color: var(--green);
      box-shadow: 0 0 10px rgba(40, 184, 112, 0.2);
    }

    .auth-submit,
    .survey-submit {
      background: linear-gradient(135deg, var(--green), #1fa060);
      color: white;
      border: none;
      padding: 1rem;
      border-radius: 12px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      margin-top: 1rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .auth-submit:hover,
    .survey-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(40, 184, 112, 0.3);
    }

    .file-upload-wrapper {
      position: relative;
      background: rgba(40, 184, 112, 0.05);
      border: 2px dashed rgba(40, 184, 112, 0.3);
      border-radius: 16px;
      padding: 3rem 2rem;
      text-align: center;
      transition: all 0.3s;
      cursor: pointer;
      margin-top: 1.5rem;
    }

    .file-upload-wrapper:hover {
      border-color: var(--green);
      background: rgba(40, 184, 112, 0.1);
    }

    .file-upload-wrapper input[type="file"] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      width: 100%;
      height: 100%;
    }

    .upload-icon {
      font-size: 2.5rem;
      color: var(--green);
      margin-bottom: 1rem;
    }

    .survey-type-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .stype-card {
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      border-radius: 16px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s;
    }

    .stype-card.selected {
      border-color: var(--green);
      background: rgba(40, 184, 112, 0.15);
    }

    .stype-card i {
      font-size: 1.8rem;
      color: var(--green);
      margin-bottom: 0.8rem;
    }

    .stype-card-title {
      font-weight: 700;
      color: white;
    }

    /* Premium Choice Portal (Gateway Modal) Styles */
    .gateway-box {
      background: rgba(13, 29, 56, 0.75);
      border: 1px solid rgba(40, 184, 112, 0.4);
      border-radius: 24px;
      padding: 3rem 2.5rem;
      width: 100%;
      max-width: 680px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 30px rgba(40, 184, 112, 0.15);
      transform: scale(0.95) translateY(20px);
      transition: all 0.4s ease;
      position: relative;
      backdrop-filter: blur(16px);
    }

    .survey-modal.active .gateway-box {
      transform: scale(1) translateY(0);
    }

    .gateway-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    @media (max-width: 640px) {
      .gateway-cards {
        grid-template-columns: 1fr;
      }
    }

    .gateway-card {
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 2.2rem 1.8rem;
      text-align: center;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .gateway-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(40, 184, 112, 0.15) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .gateway-card:hover {
      border-color: var(--green);
      background: rgba(13, 29, 56, 0.9);
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(40, 184, 112, 0.25);
    }

    .gateway-card:hover::before {
      opacity: 1;
    }

    .gateway-card i {
      font-size: 2.6rem;
      color: var(--green);
      margin-bottom: 1.2rem;
      transition: transform 0.4s ease;
      filter: drop-shadow(0 0 8px rgba(40, 184, 112, 0.4));
    }

    .gateway-card:hover i {
      transform: scale(1.15) rotate(5deg);
    }

    .gateway-card h4 {
      font-size: 1.3rem;
      color: white;
      margin-bottom: 0.6rem;
      font-weight: 700;
    }

    .gateway-card p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.4;
      margin: 0;
    }

    /* Premium Glassmorphic Toast Notifications */
    #nexus-toast-container {
      position: fixed;
      top: 2rem;
      right: 2rem;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      pointer-events: none;
      max-width: 400px;
      width: calc(100% - 4rem);
    }

    [dir="rtl"] #nexus-toast-container {
      right: auto;
      left: 2rem;
    }

    .nexus-toast {
      pointer-events: auto;
      background: rgba(13, 29, 56, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(40, 184, 112, 0.4);
      border-radius: 16px;
      padding: 1.2rem 1.5rem;
      color: white;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(40, 184, 112, 0.15);
      display: flex;
      align-items: center;
      gap: 1rem;
      transform: translateY(-20px);
      opacity: 0;
      animation: toastSlideIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
      transition: all 0.4s ease;
    }

    .nexus-toast.warning {
      border-color: rgba(212, 168, 67, 0.5);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 168, 67, 0.15);
    }

    .nexus-toast i {
      font-size: 1.5rem;
      color: var(--green);
    }

    .nexus-toast.warning i {
      color: #f0c060;
    }

    .nexus-toast-content {
      flex: 1;
      font-size: 0.9rem;
      font-weight: 500;
      line-height: 1.4;
    }

    .nexus-toast-close {
      cursor: pointer;
      color: rgba(255, 255, 255, 0.4);
      font-size: 1.1rem;
      transition: color 0.2s;
    }

    .nexus-toast-close:hover {
      color: white;
    }

    @keyframes toastSlideIn {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .nexus-toast.fade-out {
      transform: translateY(20px);
      opacity: 0;
    }

    /* Process Tab Buttons */
    .process-tab-btn {
      background: rgba(4, 16, 31, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--text-light);
      padding: 1rem 2rem;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.4s ease;
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .process-tab-btn:hover {
      background: rgba(40, 184, 112, 0.1);
      border-color: rgba(40, 184, 112, 0.4);
      transform: translateY(-2px);
    }

    .process-tab-btn.active {
      background: rgba(40, 184, 112, 0.15);
      border-color: var(--green);
      color: var(--green);
      box-shadow: 0 8px 25px rgba(40, 184, 112, 0.25);
    }

    .process-tab-btn i {
      font-size: 1.2rem;
    }
  


              .crossfade-top {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                animation: fadeInOut 8s infinite ease-in-out;
              }

              .crossfade-bottom {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
              }

              @keyframes fadeInOut {

                0%,
                10% {
                  opacity: 1;
                }

                45%,
                55% {
                  opacity: 0;
                }

                90%,
                100% {
                  opacity: 1;
                }
              }
            


          .top-services-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
          }

          .top-tab {
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            color: var(--text-light);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
          }

          .top-tab:hover {
            background: rgba(40, 184, 112, 0.1);
            border-color: var(--green);
            transform: translateY(-2px);
          }

          .top-tab.active {
            background: var(--green);
            color: #111;
            box-shadow: 0 4px 15px rgba(40, 184, 112, 0.4);
          }

          .top-category-content {
            display: none;
            animation: fadeIn 0.5s ease forwards;
          }

          .top-category-content.active {
            display: block;
          }
        


                .contact-input {
                  flex: 1;
                  padding: 0.8rem 1rem;
                  border-radius: 8px;
                  border: 1px solid rgba(255, 255, 255, 0.15);
                  background: rgba(0, 0, 0, 0.25);
                  color: #fff;
                  outline: none;
                  font-family: inherit;
                  font-size: 0.95rem;
                  transition: all 0.3s ease;
                }

                .contact-input::placeholder {
                  color: rgba(255, 255, 255, 0.4);
                }

                .contact-input:focus {
                  border-color: var(--green);
                  box-shadow: 0 0 8px rgba(40, 184, 112, 0.3);
                  background: rgba(0, 0, 0, 0.4);
                }
              


        @keyframes successPulse {

          0%,
          100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(40, 184, 112, 0.25);
          }

          50% {
            transform: scale(1.04);
            box-shadow: 0 0 0 10px rgba(40, 184, 112, 0);
          }
        }
      


    #toast-container {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 999999;
    }

    .toast {
      background-color: #28a745;
      color: white;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      margin-bottom: 10px;
      font-family: sans-serif;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: slideIn 0.5s ease-out, fadeOut 0.5s ease-in 2.5s forwards;
      min-width: 280px;
      max-width: 380px;
    }

    @keyframes slideIn {
      from {
        transform: translateX(100%);
        opacity: 0;
      }

      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes fadeOut {
      from {
        opacity: 1;
      }

      to {
        opacity: 0;
      }
    }

    .toast-icon {
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .toast-body {
      flex: 1;
    }

    .toast-title {
      font-weight: 700;
      font-size: 0.92rem;
      margin-bottom: 3px;
    }

    .toast-msg {
      font-size: 0.8rem;
      opacity: 0.9;
      line-height: 1.45;
    }

    .toast-close {
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.1rem;
      cursor: pointer;
      padding: 0;
      line-height: 1;
      flex-shrink: 0;
      align-self: flex-start;
      transition: color 0.2s;
    }

    .toast-close:hover {
      color: #fff;
    }
  


    #plannerModal {
      display: none;
    }

    #plannerModal.open {
      display: block;
    }

    .pl-modal-inner {
      background: transparent;
      width: 100%;
      color: var(--text);
      font-family: var(--font-en);
    }

    #plannerCloseBtn {
      display: none;
    }

    .pl-modal-inner .pl-hdr {
      display: none;
    }

    .pl-modal-inner .pl-logo-word {
      display: none;
    }

    .pl-modal-inner .pl-logo-tag {
      display: none;
    }

    .pl-modal-inner .pl-lang-btn {
      display: none;
    }

    .pl-modal-inner .pl-prog {
      background: rgba(13, 29, 56, 0.5);
      border: 1px solid rgba(40, 184, 112, 0.15);
      border-radius: 16px;
      padding: 20px 32px;
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
    }

    .pl-modal-inner .pl-steps {
      display: flex;
      position: relative;
    }

    .pl-modal-inner .pl-steps::before {
      content: '';
      position: absolute;
      top: 16px;
      left: 0;
      right: 0;
      height: 1px;
      background: rgba(40, 184, 112, 0.2);
    }

    .pl-modal-inner .pl-si {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      position: relative;
      z-index: 1;
    }

    .pl-modal-inner .pl-dot {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(40, 184, 112, 0.3);
      background: rgba(13, 29, 56, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.35);
      transition: all 0.3s;
      font-weight: 600;
    }

    .pl-modal-inner .pl-si.active .pl-dot {
      background: var(--green);
      border-color: var(--green);
      color: white;
      box-shadow: 0 0 12px rgba(40, 184, 112, 0.5);
    }

    .pl-modal-inner .pl-si.done .pl-dot {
      background: rgba(40, 184, 112, 0.3);
      border-color: var(--green);
      color: var(--green);
    }

    .pl-modal-inner .pl-slbl {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 0.08em;
      text-align: center;
    }

    .pl-modal-inner .pl-si.active .pl-slbl {
      color: var(--green-glow);
    }

    .pl-modal-inner .pl-si.done .pl-slbl {
      color: rgba(255, 255, 255, 0.6);
    }

    .pl-modal-inner .pl-main {
      width: 100%;
      padding: 0;
    }

    .pl-modal-inner .pl-panel {
      display: none;
    }

    .pl-modal-inner .pl-panel.active {
      display: block;
    }

    .pl-modal-inner .pl-card {
      background: rgba(13, 29, 56, 0.45);
      border: 1px solid rgba(40, 184, 112, 0.15);
      border-radius: 16px;
      padding: 28px;
      margin-bottom: 16px;
      backdrop-filter: blur(10px);
    }

    .pl-modal-inner .pl-card-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pl-modal-inner .pl-sec-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.12em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .pl-modal-inner .pl-g2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .pl-modal-inner .pl-g3 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 14px;
    }

    .pl-modal-inner .pl-g4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-bottom: 18px;
    }

    .pl-modal-inner .pl-field {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .pl-modal-inner .pl-lbl {
      font-size: 11px;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.06em;
    }

    .pl-modal-inner .pl-inp,
    .pl-modal-inner .pl-sel {
      box-sizing: border-box;
      font-family: var(--font-en);
      font-size: 14px;
      color: var(--text);
      background: rgba(13, 29, 56, 0.6);
      border: 1px solid rgba(40, 184, 112, 0.2);
      border-radius: 10px;
      padding: 9px 13px;
      width: 100%;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    /* Force identical height for single-line inputs and select elements */
    .pl-modal-inner input.pl-inp,
    .pl-modal-inner .pl-sel {
      height: 42px;
    }

    .pl-modal-inner textarea.pl-inp {
      height: auto;
    }

    .pl-modal-inner .pl-inp:focus,
    .pl-modal-inner .pl-sel:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(40, 184, 112, 0.15);
    }

    .pl-modal-inner .pl-inp::placeholder {
      color: rgba(140, 168, 204, 0.5);
    }

    .pl-modal-inner .pl-sel {
      cursor: pointer;
    }

    .pl-modal-inner .pl-sel option {
      background: #0d2d5e;
      color: var(--text);
    }

    .pl-modal-inner .pl-autocomplete-container {
      position: relative;
    }

    .pl-modal-inner .pl-autocomplete-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #0d2d5e;
      border: 1px solid var(--green);
      border-radius: 10px;
      margin-top: 4px;
      max-height: 200px;
      overflow-y: auto;
      z-index: 9999;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .pl-modal-inner .pl-autocomplete-item {
      padding: 10px 15px;
      color: var(--text);
      cursor: pointer;
      font-size: 13px;
      transition: background 0.2s;
      text-align: left;
    }

    .pl-modal-inner.rtl .pl-autocomplete-item {
      text-align: right;
    }

    .pl-modal-inner .pl-autocomplete-item:hover,
    .pl-modal-inner .pl-autocomplete-item.active {
      background: rgba(40, 184, 112, 0.25);
    }

    .pl-modal-inner .pl-autocomplete-no-results {
      padding: 10px 15px;
      color: var(--muted);
      font-size: 12px;
      text-align: center;
    }

    .pl-modal-inner .pl-met {
      background: rgba(13, 29, 56, 0.6);
      border-radius: 10px;
      padding: 14px;
      border: 1px solid rgba(40, 184, 112, 0.2);
    }

    .pl-modal-inner .pl-met-label {
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.1em;
      margin-bottom: 5px;
    }

    .pl-modal-inner .pl-met-val {
      font-family: 'Montserrat', sans-serif;
      font-size: 24px;
      font-weight: 600;
    }

    .pl-modal-inner .pl-mv-g {
      color: var(--green-glow);
    }

    .pl-modal-inner .pl-mv-gold {
      color: #f0c060;
    }

    .pl-modal-inner .pl-mv-ink {
      color: var(--text);
    }

    .pl-modal-inner .pl-svc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 10px;
      margin-bottom: 18px;
    }

    .pl-modal-inner .pl-svc {
      background: rgba(13, 29, 56, 0.5);
      border: 1px solid rgba(40, 184, 112, 0.15);
      border-radius: 10px;
      padding: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .pl-modal-inner .pl-svc:hover {
      border-color: rgba(40, 184, 112, 0.5);
      background: rgba(13, 29, 56, 0.7);
      transform: translateY(-2px);
    }

    .pl-modal-inner .pl-svc.on {
      border-color: var(--green);
      background: rgba(40, 184, 112, 0.12);
      box-shadow: 0 0 12px rgba(40, 184, 112, 0.2);
    }

    .pl-modal-inner .pl-svc-icon {
      font-size: 20px;
      margin-bottom: 8px;
      color: var(--muted);
    }

    .pl-modal-inner .pl-svc.on .pl-svc-icon {
      color: var(--green-glow);
    }

    .pl-modal-inner .pl-svc-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 2px;
    }

    .pl-modal-inner .pl-svc-sub {
      font-size: 11px;
      color: var(--muted);
    }

    .pl-modal-inner .pl-svc-inp {
      display: none;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid rgba(40, 184, 112, 0.2);
    }

    .pl-modal-inner .pl-svc.on .pl-svc-inp {
      display: block;
    }

    .pl-modal-inner .pl-cline {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 9px 0;
      border-bottom: 1px solid rgba(40, 184, 112, 0.1);
      font-size: 13px;
    }

    .pl-modal-inner .pl-cline:last-child {
      border-bottom: none;
    }

    .pl-modal-inner .pl-cn {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
    }

    .pl-modal-inner .pl-ca {
      font-weight: 500;
      color: var(--text);
    }

    .pl-modal-inner .pl-chip {
      font-size: 10px;
      font-weight: 500;
      padding: 2px 9px;
      border-radius: 20px;
      letter-spacing: 0.04em;
    }

    .pl-modal-inner .pl-cg {
      background: rgba(40, 184, 112, 0.2);
      color: var(--green-glow);
    }

    .pl-modal-inner .pl-ca2 {
      background: rgba(240, 192, 96, 0.2);
      color: #f0c060;
    }

    .pl-modal-inner .pl-cp {
      background: rgba(100, 120, 220, 0.2);
      color: #a0b0ff;
    }

    .pl-modal-inner .pl-cc {
      background: rgba(220, 80, 80, 0.2);
      color: #ff9090;
    }

    .pl-modal-inner .pl-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0 2px;
      margin-top: 4px;
    }

    .pl-modal-inner .pl-total-lbl {
      font-size: 13px;
      color: var(--muted);
    }

    .pl-modal-inner .pl-total-val {
      font-family: 'Montserrat', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--green-glow);
      text-shadow: 0 0 15px rgba(40, 184, 112, 0.4);
    }

    .pl-modal-inner .pl-sched-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(40, 184, 112, 0.1);
    }

    .pl-modal-inner .pl-sched-time {
      font-size: 12px;
      font-weight: 500;
      color: var(--green);
      min-width: 52px;
    }

    .pl-modal-inner .pl-sched-name {
      flex: 1;
      font-size: 14px;
      color: var(--text);
    }

    .pl-modal-inner .pl-sched-dur {
      font-size: 11px;
      color: var(--muted);
      min-width: 50px;
      text-align: right;
    }

    .pl-modal-inner .pl-rm {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--muted);
      font-size: 16px;
      line-height: 1;
      padding: 2px 6px;
      transition: color 0.2s;
    }

    .pl-modal-inner .pl-rm:hover {
      color: #ff6b6b;
    }

    .pl-modal-inner .pl-add-row {
      display: flex;
      gap: 8px;
      align-items: flex-end;
      flex-wrap: wrap;
      margin-top: 14px;
    }

    .pl-modal-inner .pl-add-row .pl-field {
      flex: 1;
      min-width: 110px;
    }

    .pl-modal-inner .pl-btn {
      font-family: var(--font-en);
      cursor: pointer;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 500;
      padding: 10px 22px;
      transition: all 0.2s;
      letter-spacing: 0.03em;
    }

    .pl-modal-inner .pl-btn-p {
      background: var(--green);
      color: white;
      border: none;
      box-shadow: 0 4px 15px rgba(40, 184, 112, 0.3);
    }

    .pl-modal-inner .pl-btn-p:hover {
      background: var(--green-glow);
      box-shadow: 0 4px 20px rgba(40, 184, 112, 0.5);
      transform: translateY(-1px);
    }

    .pl-modal-inner .pl-btn-o {
      background: transparent;
      color: var(--text);
      border: 1px solid rgba(40, 184, 112, 0.3);
    }

    .pl-modal-inner .pl-btn-o:hover {
      background: rgba(40, 184, 112, 0.08);
      border-color: var(--green);
    }

    .pl-modal-inner .pl-btn-gold {
      background: linear-gradient(135deg, #d4a843, #f0c060);
      color: white;
      border: none;
      box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
    }

    .pl-modal-inner .pl-btn-gold:hover {
      box-shadow: 0 4px 20px rgba(212, 168, 67, 0.5);
      transform: translateY(-1px);
    }

    .pl-modal-inner .pl-btn-dk {
      background: rgba(13, 29, 56, 0.8);
      color: var(--text);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pl-modal-inner .pl-btn-dk:hover {
      background: rgba(26, 74, 138, 0.6);
    }

    .pl-modal-inner .pl-btn-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .pl-modal-inner .pl-rpt-hdr {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(40, 184, 112, 0.15);
      margin-bottom: 20px;
    }

    .pl-modal-inner .pl-rpt-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--text);
    }

    .pl-modal-inner .pl-rpt-meta {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
      letter-spacing: 0.05em;
    }

    .pl-modal-inner .pl-rpt-bblock {
      text-align: right;
    }

    .pl-modal-inner .pl-rpt-blbl {
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.1em;
      margin-bottom: 4px;
    }

    .pl-modal-inner .pl-rpt-bval {
      font-family: 'Montserrat', sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--green-glow);
      text-shadow: 0 0 20px rgba(40, 184, 112, 0.4);
    }

    .pl-modal-inner .pl-nbadge {
      display: inline-block;
      background: rgba(40, 184, 112, 0.15);
      color: var(--green-glow);
      border: 1px solid rgba(40, 184, 112, 0.3);
      font-size: 9px;
      letter-spacing: 0.2em;
      padding: 3px 10px;
      border-radius: 20px;
      font-weight: 500;
      margin-top: 6px;
    }

    .pl-modal-inner .pl-div {
      height: 1px;
      background: rgba(40, 184, 112, 0.15);
      margin: 18px 0;
    }

    .pl-modal-inner .pl-tip {
      font-size: 12px;
      color: var(--muted);
      background: rgba(40, 184, 112, 0.08);
      border-radius: 10px;
      padding: 10px 14px;
      margin-top: 12px;
      border-left: 3px solid var(--green);
    }

    .pl-modal-inner .rtl .pl-tip {
      border-left: none;
      border-right: 3px solid var(--green);
    }

    .pl-modal-inner .rtl .pl-rpt-bblock {
      text-align: left;
    }

    .pl-modal-inner .rtl .pl-total-row .pl-total-val {
      text-align: left;
    }

    #pl-modal-bg {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(4, 16, 31, 0.8);
      backdrop-filter: blur(8px);
      z-index: 100002;
      align-items: center;
      justify-content: center;
    }

    #pl-modal-bg.open {
      display: flex;
    }

    #pl-modal-inner {
      background: rgba(13, 29, 56, 0.95);
      border: 1px solid rgba(40, 184, 112, 0.25);
      border-radius: 16px;
      padding: 32px;
      width: 90%;
      max-width: 540px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      color: var(--text);
      font-family: var(--font-en);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(40, 184, 112, 0.1);
    }

    #pl-modal-inner h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 22px;
      margin-bottom: 18px;
      color: var(--text);
    }

    #pl-modal-footer {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    #pl-close-modal-btn {
      position: absolute;
      top: 16px;
      right: 16px;
      background: none;
      border: none;
      font-size: 22px;
      cursor: pointer;
      color: var(--muted);
      transition: color 0.2s;
    }

    #pl-close-modal-btn:hover {
      color: var(--text);
    }

    @media(max-width:600px) {
      #plannerModalInner .pl-main {
        padding: 20px 14px 40px;
      }

      #plannerModalInner .pl-g2,
      #plannerModalInner .pl-g3,
      #plannerModalInner .pl-g4 {
        grid-template-columns: 1fr;
      }

      #plannerModalInner .pl-svc-grid {
        grid-template-columns: 1fr 1fr;
      }

      #plannerModalInner .pl-rpt-hdr {
        flex-direction: column;
        gap: 12px;
      }
    }

    /* Unified Planner Switcher Tabs */
    .planner-tab-btn {
      transition: all 0.3s ease;
    }

    .planner-tab-btn:hover {
      background: rgba(40, 184, 112, 0.15) !important;
      border-color: var(--green) !important;
      color: var(--green-glow) !important;
      box-shadow: 0 0 15px rgba(40, 184, 112, 0.2);
    }

    .planner-tab-btn.active {
      background: rgba(40, 184, 112, 0.2) !important;
      border-color: var(--green) !important;
      color: var(--green-glow) !important;
      box-shadow: 0 0 20px rgba(40, 184, 112, 0.3) !important;
    }

    /* Option & Concierge Cards for Medical Tourism */
    .pl-opt-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 1.25rem;
      margin-top: 1rem;
    }

    .pl-opt-card {
      background: rgba(13, 29, 56, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 1.5rem;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
      transition: all 0.3s ease;
    }

    .pl-opt-card:hover {
      border-color: rgba(40, 184, 112, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .pl-opt-card.selected {
      background: rgba(40, 184, 112, 0.08);
      border-color: var(--green);
      box-shadow: 0 0 15px rgba(40, 184, 112, 0.2);
    }

    .pl-opt-icon {
      font-size: 2.2rem;
      line-height: 1;
      height: 48px;
    }

    .pl-opt-title {
      font-size: 14px;
      font-weight: 700;
      color: white;
    }

    .pl-opt-desc {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* Medical Timeline HUD Metrics Card */
    .pl-hud-card {
      background: linear-gradient(135deg, rgba(13, 29, 56, 0.8), rgba(7, 20, 42, 0.95));
      border: 1px solid rgba(40, 184, 112, 0.2);
      border-radius: 20px;
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 20px;
      margin-bottom: 2rem;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }

    .pl-hud-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .pl-hud-label {
      font-size: 10px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .pl-hud-val {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: white;
    }

    .pl-hud-val.g {
      color: var(--green-glow);
    }

    .pl-hud-val.gold {
      color: var(--gold-glow);
      text-shadow: 0 0 12px rgba(212, 168, 67, 0.35);
    }

    /* Medical Timeline Canvas Wrapper */
    .canvas-wrapper {
      position: relative;
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(4, 16, 31, 0.9);
      margin-bottom: 1.5rem;
    }

    #timelineCanvas {
      display: block;
      width: 100%;
      height: auto;
      max-height: 480px;
    }

    /* Summary list for Medical Tourism */
    .pl-summary-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .pl-summary-lbl {
      font-size: 13px;
      color: var(--muted);
    }

    .pl-summary-val {
      font-size: 14px;
      font-weight: 700;
      color: white;
    }

    .pl-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0 4px;
      margin-top: 8px;
    }

    .pl-total-lbl {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: white;
    }

    .pl-total-val {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.85rem;
      font-weight: 800;
      color: var(--gold-glow);
      text-shadow: 0 0 15px rgba(212, 168, 67, 0.4);
    }

    /* Wizard navigation button layouts */
    .wizard-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 2rem;
    }

    .med-btn-row {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-top: 20px;
    }
  