    /* ==========================================================================
       Brand Design System
       ========================================================================== */
    body[data-brand="ED"] {
      --primary-color: #005dad;
      --primary-hover: #0088ff;
      --light-bg: #e6f3ff;
      --btn-hover-bg: #0088ff;
      --arrow-hover-color: #0088ff;
      --check-color: #005dad;
      --badge-text: 0.75rem;

      /* Hero tokens */
      --secondary-color: #FFD633;
      --dark-color: #073b70;
      --brand-gradient: linear-gradient(135deg, #073b70 0%, #005DAD 100%);

      /* Layout Rules */
      --user-image-height: auto;
      --user-image-margin-top: 20px;
      --user-img-width: 70px;
      --user-profession-margin: 0px;
    }

    /* Brand OP: Orange Theme (styles-3.html) */
body[data-brand="OP"] {
  --primary-color: #ff6600;
  --primary-hover: #ff8d41;
  --light-bg: #ffe0cb;
  --btn-hover-bg: #ff8d41;
  --arrow-hover-color: #ff8d41;
  --check-color: #ff6600;
  --badge-text: 0.75rem;

  /* Hero (redesign) tokens */
  --secondary-color: #ff6600;
  --dark-color: #1a1a1a;
  --brand-gradient: linear-gradient(135deg, #000000 0%, #7e7e7e 100%);

  /* Brand-specific Layout Rules */
  --user-image-height: 150px;
  --user-image-margin-top: 0px;
  --user-img-width: 100px;
  --user-profession-margin: 14px 0 40px;
}

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

/* Brand GV: Green Theme (styles-4.html) */
body[data-brand="GV"] {
  --primary-color: #215C00;
  --primary-hover: #66C431;
  --light-bg: #eaffde;
  --btn-hover-bg: #eaffde;
  --arrow-hover-color: #66C431;
  --check-color: #215C00;
  --badge-text: 0.75rem;

  /* Hero (redesign) tokens */
  --secondary-color: #66C431;
  --dark-color: #102e00;
  --brand-gradient: linear-gradient(135deg, #102e00 0%, #215C00 100%);

  /* Brand-specific Layout Rules */
  --user-image-height: 150px;
  --user-image-margin-top: 0px;
  --user-img-width: 100px;
  --user-profession-margin: 14px 0 40px;
}


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

    /* ==========================================================================
       Core Layout & Base Elements
       ========================================================================== */
    body {
      font-family: Rubik, sans-serif;
      background-color: #f5f5f5;
      color: #333;
      font-size: 16px;
    }

    a { 
      color: var(--primary-color) !important; 
    }

    a:hover {
      color: var(--primary-hover);
      transition: 0.3s ease-in-out;
      text-decoration: none;
    }

    h2 { 
      font-weight: 600; 
      margin: 0px 0px 20px 0px !important; 
      font-size: 24px; 
    }

    h3 { 
      font-weight: 600; 
      font-size: 24px; 
      margin-top: 0px;
    }

    @media (max-width: 768px) {
      a { text-align: center; font-size: 14px; }
    }

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* ==========================================================================
       Hero Section
       ========================================================================== */
    html { scroll-behavior: smooth; }

    #scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
      z-index: 1200;
      transition: width 0.1s linear;
      border-radius: 0 2px 2px 0;
    }

    #scroll-top-btn {
      position: fixed;
      bottom: 2rem; right: 2rem;
      z-index: 800;
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--primary-color);
      color: #fff;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(0,93,173,0.35);
      opacity: 0;
      transform: translateY(16px) scale(0.85);
      transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
      pointer-events: none;
    }
    #scroll-top-btn.btn-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
    #scroll-top-btn:hover { background: var(--dark-color); box-shadow: 0 12px 32px rgba(0,93,173,0.45); }

    #hero {
      width: 100%;
      position: relative;
      padding: 7rem 0 calc(52px + 3rem);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--brand-gradient);
    }
    @media (min-width: 768px) { #hero { padding: 9rem 0 calc(52px + 4rem); } }
    @media (min-width: 1024px) { #hero { padding: 10rem 0 calc(52px + 5rem); } }

    #hero-parallax-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0.2;
      background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
      background-size: cover;
      background-position: center;
      mix-blend-mode: overlay;
      transform-origin: center center;
      will-change: transform;
    }
    .hero-grain {
      position: absolute; inset: 0; z-index: 0;
      opacity: 0.04;
      background-image: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22200%22 height=%22200%22><filter id=%22n%22><feTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%224%22 stitchTiles=%22stitch%22/></filter><rect width=%22200%22 height=%22200%22 filter=%22url(%23n)%22 opacity=%221%22/></svg>');
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 1400px;
      margin: 0;
      padding: 0 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
      text-align: left;
    }
    @media (min-width: 1024px) { .hero-inner { padding: 0 3rem; } }
    .hero-eyebrow {
      display: inline-block;
      margin: 0;
      padding: 0.65rem 1rem;
      border-radius: 999px;
      background: var(--secondary-color);
      backdrop-filter: blur(8px);
      color: #fff;
      font-size: var(--badge-text);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }
    .hero-title {
      margin: 0;
      font-size: 4.5rem;
      font-weight: 600;
      color: var(--secondary-color);
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.25rem;
      }
    }

    .hero-content {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1),
                  transform 0.9s cubic-bezier(0.4,0,0.2,1);
    }
    .hero-content.hero-visible { opacity: 1; transform: translateY(0); }
    .hero-content:nth-child(1) { transition-delay: 0.1s; }
    .hero-content:nth-child(2) { transition-delay: 0.25s; }

    @keyframes badge-shimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    .badge-shimmer {
      background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.35) 40%, rgba(255,255,255,0.15) 60%, rgba(255,255,255,0.15) 100%);
      background-size: 200% auto;
      animation: badge-shimmer 3s linear infinite;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-content {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
      .badge-shimmer { animation: none; }
    }

    /* ==========================================================================
       Sticky Nav Bar & Global Tab Systems
       ========================================================================= */
    .sticky-bar {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      background-color: #fff;
      z-index: 1000;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .sticky-tab-btn {
      background-color: #fff;
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
      padding: 10px 40px;
      border-radius: 35px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .sticky-tab-btn:hover {
      background-color: var(--light-bg);
    }

    .sticky-tab-btn.active {
      background-color: var(--primary-color);
      color: #fff;
    }

    .main-tab-content {
      display: none;
      animation: fadeInTab 0.4s ease-in-out;
    }

    .main-tab-content.active {
      display: block;
    }

    @media (max-width: 768px) {
      .sticky-tab-btn { padding: 10px 20px; font-size: 14px; }
    }

    /* ==========================================================================
       Editorial Content & Article Elements
       ========================================================================== */
    section.content { padding: 0.5%; }
    section.content h2, section.content h3 { font-weight: 500; }
    section.content strong { font-weight: 600; }
    section.content a { color: var(--primary-color); text-decoration: none; }

    .articleFULL {
      background: #fff;
      border-radius: 8px;
      box-shadow: rgba(0,0,0,0.2) 0 1px 1px 0;
      overflow: hidden;
      box-sizing: border-box;
      padding: 20px;
      margin: 20px 0px;
    }
    .articleFULL-transparent { overflow: hidden; box-sizing: border-box; padding: 20px; margin: 20px auto; }
    .articleFULL-bg { overflow: hidden; box-sizing: border-box; padding: 20px; text-align: center; margin: 40px 0px; }
    .articleFULL ul { margin-left: 15px; list-style: inherit; }
    .articleFULL strong { font-weight: 700; }
    .articleFULL p { margin: 0 0 10px; }
    .articleFULL h3 { margin-top: 0px; font-size: 24px !important; }

    @media (max-width: 768px) {
      .articleFULL img { height: 100%; width: 100%; }
    }

    /* ==========================================================================
       Icons & Features Blocks
       ========================================================================== */
    .fa-check {
      color: var(--primary-color);
      font-weight: 700;
      margin-right: 5px;
    }

    .cards-icon { display: flex; justify-content: space-between; width: auto; margin: 20px 0px; }
    .card-icon {
      background-color: #fff;
      flex: 1;
      align-items: center;
      text-align: center;
      padding: 10px;
      margin: 10px;
      color: #5a5a5a;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border: 1px solid #d9d9d9;
      border-radius: 8px; 
    }
    .card-icon h4 { color: var(--dark-color); margin: 15px 0px; font-weight: 600; height: 40px; font-size: 19px !important; }
    .card-icon p { font-size: 16px; }

    @media (max-width: 768px) {
      .cards-icon {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }
      .card-icon { flex: 0 0 80%; margin: 10px; scroll-snap-align: start; }
    }

    /* ==========================================================================
       Tips Section
       ========================================================================== */
    .tips-section { display: flex; align-items: center; justify-content: center; gap: 20px; max-width: 1200px; margin: 0 auto; }
    .tips-section:nth-child(odd) { flex-direction: row; }
    .tips-section:nth-child(even) { flex-direction: row-reverse; }
    .text-content { flex: 1; }
    .image-content { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px;}
    .image-content {color: #006288; font-weight: 700; font-size: 24px;}
    .image-content img { max-width: 400px; height: auto; }

    @media (max-width: 768px) {
      .tips-section:nth-child(even), .tips-section:nth-child(odd) { flex-direction: column; }
      .image-content img { max-width: 300px; margin-bottom: 30px; }
    }

    /* ==========================================================================
       City Cards Component
       ========================================================================== */
    .card-city-container { display: flex; gap: 20px; margin-top: 40px; }
    .card-city {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      scroll-snap-align: start;
      transition: all 0.3s ease;
      padding: 12px;
      background-color: var(--light-bg);
      gap: 15px;
    }

    .card-city h4 {
      font-size: 18px;
    }

    @media (max-width: 768px) {
      .card-city-container { display: flex; gap: 20px; padding: 20px; overflow-x: auto; scroll-snap-type: x mandatory; }
      .card-city { flex: 0 0 80%; }
    }

    /* ==========================================================================
       Structured Intros & Icon Colors
       ========================================================================== */
    .page-intro { display: flex; align-items: center; justify-content: space-between; gap: 50px; }

    @media (max-width: 768px) { .page-intro { flex-direction: column; align-items: center; gap: 50px; } }

    .fa-solid { color: #ffd415; }
    .fa-plane, .fa-smile, .fa-message, .fa-handshake, .fa-calendar { color: var(--primary-color); }

    /* ==========================================================================
       Accordion Component
       ========================================================================== */
    .accordion { overflow: hidden; }
    .tab__label {
      display: flex;
      border: 1px solid #d9d9d9;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      margin: 10px 0px;
      justify-content: space-between; 
      padding: 1rem; 
      border-radius: 8px; 
      font-weight: 400; 
      color: #3d3d3d;
    }
    .tab__label::after {
      content: "\276F";
      width: 1em;
      height: 1em;
      text-align: center;
      transform: rotate(90deg);
      transition: all 0.35s;
      color: var(--primary-color);
    }
    .tab input:checked + .tab__label::after { transform: rotate(270deg); }
    .tab__content p { margin: 0; padding: 1rem; }

    .tab input:not(:checked) + .tab__label:hover::after { animation: accordion-bounce .5s infinite; }

    .tab { position: relative; }
    .tab input { position: absolute; opacity: 0; z-index: -1; }
    .tab__content { max-height: 0; overflow: hidden; transition: all 0.35s; }
    .tab input:checked ~ .tab__content { max-height: 30rem; }

    .tp-widget-reviews-filter-label { display: none !important; }

    /* ==========================================================================
       Animations 
       ========================================================================== */
    @keyframes accordion-bounce {
      25% { transform: rotate(90deg) translate(.25rem); }
      75% { transform: rotate(90deg) translate(-.25rem); }
    }

    @keyframes fadeInTab {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .slider-wrapper { overflow: hidden; max-width: 1200px; margin: 0 50px 35px; padding: 20px 0px; height: 420px; }
  .card-list .card-item {
    height: 380px;
    color: #333;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    backdrop-filter: blur(30px);
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    transition: all 0.3s ease;
  }

  .card-list .card-item:hover { transform: translateY(-5px); box-shadow: 0 8px 12px rgba(0, 0, 0, 0.311); }
  .user-name { font-weight: 700; }
  .user-image { width: 100%; margin-top: 20px; object-fit: fill; overflow: hidden; display: flex; align-items: center; transition: all 0.3s ease-in-out; }
  .user-image img { width: 70px; height: auto; margin: 0 auto; transition: all 0.4s ease; }
  .card-list .card-item:hover .user-image { transform: scale(1.1); }
  .card-list .card-item .user-profession { font-size: 14px; color: #333; font-weight: 400; padding: 0px 10px; }

  .slider-wrapper .swiper-pagination-bullet { background: #005dad; height: 13px; width: 13px; opacity: 0.5; }
  .slider-wrapper .swiper-pagination-bullet-active { opacity: 1; }
  .slider-wrapper .swiper-slide-button { color: #005dad; margin-top: -55px; transition: all 0.3s ease-in-out; }
  .slider-wrapper .swiper-slide-button:hover { color: #0088ff; }
  @media (max-width: 768px) {
    .slider-wrapper { margin: 0 10px 40px; }
    .slider-wrapper .swiper-slide-button { display: none; }
  }

  .swiper-button-next::after, .swiper-button-prev::after {
    content: '\276F'; display: inline-block; width: 24px; height: 24px; background-size: contain; color: #005DAD;
  }
  .swiper-button-prev::after { content: '\276E'; }

 .rating { display: flex; gap: 10px; color: #005DAD; margin: 0 auto; padding: 20px 0px; }
  .user-info { display: flex; justify-content: space-between; align-items: center; padding: 0px 10px; }
  .fa-solid { color: #ffd415; }
  .fa-chevron-down, .fa-plane, .fa-smile, .fa-message, .fa-handshake, .fa-calendar { color: #005DAD; }
