
    :root {
      --main-color: #fc7417;
      --main-color-dark: #e0640e;
      --main-color-light: #fff1e6;
      --second-color: #2073f8;
      --second-color-light: #eaf2ff;
      --light-color: #f2f7fc;
      --main-grey: #f1f2f3;
      --black-color: #1a2b49;
      --black-color-soft: #2d3f5e;
      --white-color: #fff;
      --para-color: #63687a;
      --line-color: #e3e7ef;
      scroll-behavior: smooth;
      --font-family: "Poppins", sans-serif;
      --font-hand: "Satisfy", cursive;
      --box-shadow: rgba(14, 63, 126, .04) 0 0 0 1px, rgba(42, 51, 69, .04) 0 1px 1px -.5px, rgba(42, 51, 70, .04) 0 3px 3px -1.5px, rgba(42, 51, 70, .04) 0 6px 6px -3px, rgba(14, 63, 126, .04) 0 12px 12px -6px, rgba(14, 63, 126, .04) 0 24px 24px -12px;
      --box-shadow-soft: rgba(26, 43, 73, .10) 0 6px 28px -6px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 10px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box
    }

    body {
      font-family: var(--font-family);
      color: var(--black-color);
      background: var(--white-color);
      line-height: 1.65;
      overflow-x: hidden
    }

    img {
      max-width: 100%;
      display: block
    }

    a {
      text-decoration: none;
      color: inherit
    }

    ul {
      list-style: none;
      margin: 0;
      padding: 0
    }

    button {
      font-family: var(--font-family);
      cursor: pointer
    }



    :focus-visible {
      outline: 2px solid var(--second-color);
      outline-offset: 3px;
      border-radius: 4px
    }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1)
    }

    .reveal.in-view {
      opacity: 1;
      transform: none
    }

    .reveal-stagger>* {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1)
    }

    .reveal-stagger.in-view>* {
      opacity: 1;
      transform: none
    }

    .reveal-stagger.in-view>*:nth-child(1) {
      transition-delay: .02s
    }

    .reveal-stagger.in-view>*:nth-child(2) {
      transition-delay: .10s
    }

    .reveal-stagger.in-view>*:nth-child(3) {
      transition-delay: .18s
    }

    .reveal-stagger.in-view>*:nth-child(4) {
      transition-delay: .26s
    }

    .reveal-stagger.in-view>*:nth-child(5) {
      transition-delay: .34s
    }

    .reveal-stagger.in-view>*:nth-child(6) {
      transition-delay: .42s
    }

    /* TOPBAR — unified to site's light-grey topbar, not black */
    .topbar {
      background: var(--main-grey);
      font-size: 13px;
      color: var(--black-color-soft)
    }

    .topbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 38px
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 20px
    }

    .topbar-left span,
    .topbar-right a,
    .topbar-left a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      color: var(--black-color-soft)
    }

    .topbar i {
      font-size: 12px
    }

    .topbar a:hover {
      color: var(--main-color)
    }

    .tb-div {
      width: 1px;
      height: 16px;
      background: var(--line-color)
    }

    /* HEADER */
    .main-header {
      background: #fff;
      border-bottom: 1px solid var(--line-color);
      position: sticky;
      top: 0;
      z-index: 200;
      transition: box-shadow .3s ease
    }

    .main-header.scrolled {
      box-shadow: 0 4px 24px -8px rgba(26, 43, 73, .14)
    }

    .main-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 74px;
      gap: 24px
    }

    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 1;
      flex-shrink: 0
    }

    .logo .lm {
      width: 46px;
      height: 22px;
      margin-bottom: 2px
    }

    .logo .lt {
      font-family: var(--font-hand);
      font-size: 22px;
      color: var(--black-color)
    }

    .logo .ls {
      font-size: 8px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--main-color);
      font-weight: 700;
      margin-top: 1px
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 26px;
      flex: 1;
      justify-content: center
    }

    .main-nav a {
      font-size: 14.5px;
      font-weight: 500;
      color: var(--black-color);
      position: relative;
      padding: 6px 0;
      white-space: nowrap
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: var(--main-color);
      transition: width .25s ease;
      border-radius: 2px
    }

    .main-nav a:hover::after,
    .main-nav a.active::after {
      width: 100%
    }

    .main-nav a.active {
      color: var(--main-color);
      font-weight: 600
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 20px;
      color: var(--black-color);
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center
    }

    /* BUTTONS */
    .btn-primary-et {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--main-color);
      color: #fff;
      font-weight: 600;
      font-size: 14.5px;
      padding: 12px 24px;
      border-radius: var(--radius-sm);
      transition: all .2s ease;
      border: none
    }

    .btn-primary-et:hover {
      background: var(--main-color-dark);
      transform: translateY(-2px);
      color: #fff;
      box-shadow: 0 8px 18px -4px rgba(252, 116, 23, .45)
    }

    .btn-blue-et {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--second-color);
      color: #fff;
      font-weight: 600;
      font-size: 14.5px;
      padding: 12px 24px;
      border-radius: var(--radius-sm);
      transition: all .2s ease;
      border: none
    }

    .btn-blue-et:hover {
      background: #1a5fd6;
      transform: translateY(-2px);
      color: #fff
    }

    .btn-ghost-et {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(255, 255, 255, .12);
      border: 1.5px solid rgba(255, 255, 255, .35);
      color: #fff;
      font-weight: 600;
      font-size: 14.5px;
      padding: 12px 24px;
      border-radius: var(--radius-sm);
      transition: all .2s ease
    }

    .btn-ghost-et:hover {
      background: rgba(255, 255, 255, .22);
      color: #fff
    }

    .btn-outline-et {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid var(--line-color);
      color: var(--black-color);
      font-weight: 600;
      font-size: 14px;
      padding: 10px 18px;
      border-radius: var(--radius-sm);
      transition: all .2s ease;
      background: none
    }

    .btn-outline-et:hover {
      border-color: var(--main-color);
      color: var(--main-color)
    }

    .btn-pill-et {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--main-grey);
      color: var(--second-color);
      font-weight: 700;
      font-size: 12.5px;
      letter-spacing: .3px;
      padding: 9px 18px;
      border-radius: 100px;
      border: none;
      transition: all .2s ease
    }

    .btn-pill-et:hover {
      background: var(--second-color-light)
    }

    .btn-req-et {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--second-color-light);
      color: var(--second-color);
      font-weight: 700;
      font-size: 13.5px;
      padding: 10px 18px;
      border-radius: var(--radius-sm);
      border: none;
      transition: all .2s ease;
      white-space: nowrap
    }

    .btn-req-et:hover {
      background: var(--second-color);
      color: #fff
    }

    /* SECTION */
    section {
      position: relative
    }

    .section-pad {
      padding: 60px  0
    }

    .section-head {
      max-width: 660px;
      margin-bottom: 46px
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--main-color);
      margin-bottom: 12px
    }

    .eyebrow::before {
      content: "";
      width: 16px;
      height: 2px;
      background: var(--main-color);
      display: inline-block;
      flex-shrink: 0
    }

    .section-head.center .eyebrow {
      justify-content: center
    }

    .section-head h2 {
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -.5px;
      color: var(--black-color);
      margin-bottom: 12px;
      line-height: 1.22
    }

    .section-head p {
      font-size: 15.5px;
      color: var(--para-color)
    }

    .bg-lt {
      background: var(--light-color)
    }

    .bg-gr {
      background: var(--main-grey)
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 590px;
      display: flex;
      align-items: center;
      /* background: var(--black-color); */
      overflow: hidden
    }
    .hero .container {
     overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-top: 20px;
    }
    .hero-bg {
      position: absolute;
      inset: 0
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .88
    }

    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(26, 43, 73, .93) 10%, rgba(26, 43, 73, .62) 50%, rgba(26, 43, 73, .26) 100%)
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 90px 0 50px
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--main-color);
      margin-bottom: 18px
    }

    .hero-eyebrow::before {
      content: "";
      width: 22px;
      height: 2px;
      background: var(--main-color);
      border-radius: 2px
    }

    .hero-content h1 {
      color: #fff;
      font-size: 48px;
      font-weight: 800;
      line-height: 1.14;
      letter-spacing: -.6px;
      max-width: 680px;
      margin-bottom: 18px
    }

    .hero-content h1 .accent {
      color: var(--main-color)
    }

    .hero-content p {
      color: rgba(255, 255, 255, .78);
      font-size: 16px;
      max-width: 520px;
      margin-bottom: 32px;
      line-height: 1.7
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 32px
    }

    .hero-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      padding-bottom: 26px
    }

    .hero-tabs a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13.5px;
      font-weight: 600;
      color: rgba(255, 255, 255, .82);
      padding: 9px 17px;
      border-radius: 100px;
      transition: all .22s ease;
      border: 1px solid transparent
    }

    .hero-tabs a i {
      color: var(--main-color);
      font-size: 12px
    }

    .hero-tabs a.active {
      background: rgba(255,255,255,.12);
      color: var(--main-color);
      border-color: rgba(252, 116, 23, .35)
    }

    .hero-tabs a:hover:not(.active) {
      background: rgba(255, 255, 255, .1);
      border-color: rgba(255, 255, 255, .15)
    }

    .hero-stats {
      display: flex;
      gap: 0;
      border-top: 1px solid rgba(255, 255, 255, .12);
      padding-top: 24px;
      flex-wrap: wrap
    }

    .hs-item {
      padding: 0 32px 0 0
    }

    .hs-item+.hs-item {
      border-left: 1px solid rgba(255, 255, 255, .12);
      padding-left: 32px
    }

    .hs-item strong {
      display: block;
      color: #fff;
      font-size: 30px;
      font-weight: 800;
      line-height: 1
    }

    .hs-item span {
      color: rgba(255, 255, 255, .55);
      font-size: 12px;
      margin-top: 4px;
      display: block
    }

    /* SEARCH BAR */
    .search-bar-wrap {
      background: #fff;
      padding: 16px 0;
      border-bottom: 1px solid var(--line-color);
      box-shadow: 0 4px 16px -6px rgba(26, 43, 73, .08)
    }

    .search-pill {
      display: flex;
      align-items: stretch;
      background: #fff;
      border: 1.5px solid var(--line-color);
      border-radius: 14px;
      box-shadow: var(--box-shadow);
      overflow: hidden
    }

    .sp-field {
      flex: 1;
      padding: 12px 22px;
      border-right: 1px solid var(--line-color);
      min-width: 0
    }

    .sp-field:last-of-type {
      border-right: none
    }

    .sp-field label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: var(--para-color);
      margin-bottom: 3px
    }

    .sp-val {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--black-color);
      display: flex;
      align-items: center;
      gap: 8px
    }

    .sp-val i {
      color: var(--main-color);
      font-size: 12px
    }

    .sp-btn {
      background: var(--second-color);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      padding: 0 36px;
      display: flex;
      align-items: center;
      gap: 8px;
      border: none;
      white-space: nowrap;
      transition: background .2s ease
    }

    .sp-btn:hover {
      background: #1a5fd6
    }

    /* DESTINATION TABS */
    .dest-tabs-bar {
      background: #fff;
      border-bottom: 1px solid var(--line-color);
      padding: 0
    }

    .dest-tabs-inner {
      display: flex;
      align-items: center;
      gap: 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch
    }

    .dest-tabs-inner::-webkit-scrollbar {
      display: none
    }

    .dest-tab {
      font-size: 14px;
      font-weight: 600;
      color: var(--para-color);
      padding: 16px 22px;
      border-bottom: 2.5px solid transparent;
      white-space: nowrap;
      transition: all .2s ease;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: none;
      border-left: none;
      border-right: none;
      border-top: none
    }

    .dest-tab i {
      font-size: 13px
    }

    .dest-tab.active {
      color: var(--main-color);
      border-bottom-color: var(--main-color)
    }

    .dest-tab:hover:not(.active) {
      color: var(--black-color);
      background: var(--main-grey)
    }

    .dest-tab-all {
      background: var(--second-color);
      color: #fff;
      border-radius: 6px;
      padding: 8px 16px;
      margin-left: auto;
      font-size: 12.5px;
      border: none;
      white-space: nowrap;
      align-self: center;
      margin-right: 4px;
      transition: background .2s ease;
      font-family: var(--font-family);
      cursor: pointer
    }

    .dest-tab-all:hover {
      background: #1a5fd6;
      color: #fff
    }

    /* TOUR CARDS */
    .tours-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px
    }

    .tour-card {
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--box-shadow);
      transition: all .3s ease;
      display: flex;
      flex-direction: column;
      height: 100%
    }

    .tour-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow-soft)
    }

    .tc-img {
      position: relative;
      height: 200px;
      overflow: hidden
    }

    .tc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease
    }

    .tour-card:hover .tc-img img {
      transform: scale(1.07)
    }

    .tc-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .4px;
      padding: 4px 10px;
      border-radius: 100px
    }

    .tc-badge.sale {
      background: var(--main-color);
      color: #fff
    }

    .tc-badge.new {
      background: var(--second-color);
      color: #fff
    }

    .tc-badge.top {
      background: #16a34a;
      color: #fff
    }

    .tc-wish {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: var(--para-color);
      transition: all .2s ease;
      cursor: pointer;
      border: none
    }

    .tc-wish:hover {
      background: #fff;
      color: var(--main-color);
      transform: scale(1.1)
    }

    .tc-body {
      padding: 16px 18px 20px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .tc-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 8px
    }

    .tc-meta-i {
      font-size: 12px;
      color: var(--para-color);
      display: flex;
      align-items: center;
      gap: 5px
    }

    .tc-meta-i i {
      color: var(--main-color);
      font-size: 11px
    }

    .tc-body h4 {
      font-size: 15px;
      font-weight: 700;
      line-height: 1.4;
      color: var(--black-color);
      margin-bottom: 10px;
      flex: 1
    }

    .tc-body h4:hover {
      color: var(--second-color)
    }

    .tc-rating {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px
    }

    .tc-stars {
      color: var(--main-color);
      font-size: 11px
    }

    .tc-rv {
      font-size: 12px;
      font-weight: 700;
      color: var(--black-color)
    }

    .tc-rc {
      font-size: 11.5px;
      color: var(--para-color)
    }

    .tc-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--line-color);
      padding-top: 12px;
      margin-top: auto
    }

    .tc-price-from {
      font-size: 11px;
      color: var(--para-color);
      display: block
    }

    .tc-price-val {
      font-size: 18px;
      font-weight: 800;
      color: var(--main-color)
    }

    .tc-price-val small {
      font-size: 12px;
      font-weight: 500;
      color: var(--para-color)
    }

    .tc-book {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--second-color-light);
      color: var(--second-color);
      font-weight: 700;
      font-size: 12.5px;
      padding: 8px 14px;
      border-radius: 8px;
      transition: all .2s ease;
      border: none
    }

    .tc-book:hover {
      background: var(--second-color);
      color: #fff
    }

    /* ABOUT */
    .about-grid {
      display: flex;
      align-items: center;
      gap: 60px
    }

    .about-visual {
      flex: 0 0 44%;
      position: relative
    }

    .about-img-main {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--box-shadow-soft);
      position: relative
    }

    .about-img-main img {
      width: 100%;
      height: 430px;
      object-fit: cover
    }

    .about-img-mini {
      position: absolute;
      top: -24px;
      right: -24px;
      width: 175px;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 14px 30px -8px rgba(0, 0, 0, .22)
    }

    .about-img-mini img {
      width: 100%;
      height: 140px;
      object-fit: cover
    }

    .about-badge {
      position: absolute;
      bottom: -22px;
      right: -22px;
      background: #fff;
      border-radius: var(--radius-md);
      box-shadow: 0 16px 32px -10px rgba(0, 0, 0, .18);
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 14px;
      max-width: 250px
    }

    .ab-icon {
      width: 46px;
      height: 46px;
      background: var(--main-color);
      color: #fff;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0
    }

    .ab-text strong {
      display: block;
      font-size: 20px;
      font-weight: 800;
      color: var(--black-color);
      line-height: 1.2
    }

    .ab-text span {
      font-size: 12px;
      color: var(--para-color)
    }

    .about-text {
      flex: 1
    }

    .feat-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px
    }

    .feat-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--black-color-soft)
    }

    .feat-item i {
      color: var(--second-color);
      font-size: 12px;
      width: 20px
    }

    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 28px
    }

    .info-tile {
      background: #fff;
      border: 1.5px solid var(--line-color);
      border-radius: var(--radius-md);
      padding: 18px 18px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      transition: all .25s ease
    }

    .info-tile:hover {
      box-shadow: var(--box-shadow-soft);
      transform: translateY(-3px);
      border-color: transparent
    }

    .it-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--main-color-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      color: var(--main-color);
      flex-shrink: 0
    }

    .info-tile h4 {
      font-size: 14.5px;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--black-color)
    }

    .info-tile p {
      font-size: 13px;
      color: var(--para-color);
      margin: 0
    }

    /* MICE */
    .blob-wrap {
      background: linear-gradient(138deg, #2073f8 0%, #1146b8 45%, #0c2668 100%);
      border-radius: 36px;
      overflow: hidden;
      padding: 64px 52px;
      position: relative
    }

    .blob-shape {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden
    }

    .blob-shape svg {
      position: absolute
    }

    .blob-t {
      width: 420px;
      height: 420px;
      top: -160px;
      right: -60px;
      opacity: .28
    }

    .blob-b {
      width: 360px;
      height: 360px;
      bottom: -120px;
      left: -80px;
      opacity: .18
    }

    .mice-inner {
      position: relative;
      z-index: 2
    }

    .mice-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 38px;
      gap: 24px;
      flex-wrap: wrap
    }

    .mice-top .eyebrow {
      color: rgba(255, 255, 255, .7)
    }

    .mice-top .eyebrow::before {
      background: rgba(255, 255, 255, .7)
    }

    .mice-top h2 {
      color: #fff;
      font-size: 32px;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 10px;
      letter-spacing: -.4px
    }

    .mice-top p {
      color: rgba(255, 255, 255, .7);
      font-size: 15px;
      margin: 0;
      max-width: 420px
    }

    .mice-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr 1fr;
      gap: 24px;
      align-items: stretch
    }

    /* MICE CARD — hover icon/image swap (matches reference screenshot) */
    .mice-card {
      background: rgba(255, 255, 255, .97);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      box-shadow: 0 20px 42px -16px rgba(12, 38, 104, .4);
      display: flex;
      flex-direction: column;
      transition: transform .3s ease, box-shadow .3s ease;
      position: relative;
      overflow: hidden
    }

    .mice-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 28px 52px -16px rgba(12, 38, 104, .5)
    }

    .mc-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: var(--second-color-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      color: var(--second-color);
      margin-bottom: 16px;
      flex-shrink: 0;
      transition: all .35s cubic-bezier(.22,.61,.36,1);
      position: relative;
      z-index: 3
    }

    .mice-card:hover .mc-icon {
      background: var(--second-color);
      color: #fff;
      transform: scale(1.18);
      box-shadow: 0 10px 22px -6px rgba(32,115,248,.5)
    }

    .mice-card h4 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--black-color);
      position: relative;
      z-index: 3
    }

    .mice-card p {
      font-size: 13.5px;
      color: var(--para-color);
      line-height: 1.6;
      flex: 1;
      position: relative;
      z-index: 3;
      transition: opacity .3s ease
    }

    .mc-feats {
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 7px;
      position: relative;
      z-index: 3;
      transition: opacity .3s ease
    }

    .mc-feats li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--black-color-soft)
    }

    .mc-feats li i {
      color: var(--second-color);
      font-size: 11px;
      width: 14px
    }

    /* Large line-art illustration shown by default, fills card body */
    .mc-illus {
      position: absolute;
      right: -10px;
      bottom: -6px;
      width: 78%;
      max-width: 220px;
      opacity: .55;
      transition: all .4s cubic-bezier(.22,.61,.36,1);
      z-index: 1;
      pointer-events: none
    }

    .mice-card:hover .mc-illus {
      opacity: 0;
      transform: scale(.7) translate(10px, 10px)
    }

    /* Photo hidden by default, reveals + fills on hover */
    .mc-photo-reveal {
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: 0;
      transition: opacity .4s ease;
      border-radius: var(--radius-lg);
      overflow: hidden
    }

    .mc-photo-reveal img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.08);
      transition: transform .5s ease
    }

    .mc-photo-reveal::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(12,38,104,.92) 0%, rgba(12,38,104,.55) 45%, rgba(12,38,104,.25) 100%)
    }

    .mice-card:hover .mc-photo-reveal {
      opacity: 1
    }

    .mice-card:hover .mc-photo-reveal img {
      transform: scale(1)
    }

    .mice-card:hover p,
    .mice-card:hover .mc-feats {
      color: rgba(255, 255, 255, .85)
    }

    .mice-card:hover h4,
    .mice-card:hover p,
    .mice-card:hover .mc-feats li {
      color: #fff
    }

    .mice-card:hover .mc-feats li i {
      color: var(--main-color)
    }

    .mice-cta {
      display: flex;
      gap: 14px;
      margin-top: 38px;
      flex-wrap: wrap
    }

    /* EVENT GALLERY — exact ribbon/ticket pattern match */
    .eg-section {
      border-radius: 36px;
      padding: 64px 0 56px;
      margin-top: 56px;
      position: relative;
      overflow: hidden
    }

    .eg-bg {
      position: absolute;
      inset: 0;
      z-index: 0
    }

    .eg-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: blur(1px) brightness(.55)
    }

    .eg-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26,43,73,.88) 0%, rgba(26,43,73,.78) 50%, rgba(26,43,73,.92) 100%)
    }

    .eg-ribbon {
      position: absolute;
      top: 0;
      width: 64px;
      height: 96px;
      z-index: 3;
      filter: drop-shadow(0 6px 14px rgba(0,0,0,.35))
    }

    .eg-ribbon.left { left: 28px }
    .eg-ribbon.right { right: 28px }

    .eg-head {
      text-align: center;
      position: relative;
      z-index: 2;
      margin-bottom: 36px;
      padding: 0 24px
    }

    .eg-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--main-color);
      margin-bottom: 14px;
      justify-content: center
    }

    .eg-eyebrow .eg-dot {
      width: 18px;
      height: 18px;
      border: 1.5px solid var(--main-color);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 9px
    }

    .eg-head h3 {
      color: #fff;
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 14px;
      letter-spacing: -.3px
    }

    .eg-zigzag {
      display: inline-block
    }

    .eg-swiper {
      padding: 16px 0 55px;
      position: relative;
      z-index: 2
    }

    .eg-swiper .swiper-slide {
      opacity: .32;
      transform: scale(.84);
      transition: all .45s ease;
      filter: brightness(.7)
    }

    .eg-swiper .swiper-slide-active {
      opacity: 1;
      transform: scale(1);
      filter: brightness(1)
    }

    .eg-frame {
      position: relative;
      overflow: hidden;
      height: 360px;
      cursor: pointer;
      background: #050810
    }

    .eg-swiper .swiper-slide-active .eg-frame {
      border: 6px solid #fff;
      box-shadow: 0 24px 55px -14px rgba(0, 0, 0, .55)
    }

    .eg-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .eg-date {
      position: absolute;
      bottom: 16px;
      left: 16px;
      text-align: center;
      z-index: 2;
      filter: drop-shadow(0 4px 10px rgba(0,0,0,.35))
    }

    .eg-date .em {
      background: #fff;
      color: var(--black-color);
      font-size: 10.5px;
      font-weight: 800;
      padding: 4px 16px;
      letter-spacing: .5px;
      text-transform: uppercase;
      display: block;
      text-align: center
    }

    .eg-date .ey {
      position: relative;
      background: var(--main-color);
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      padding: 6px 18px 6px 14px;
      display: block;
      text-align: center;
      clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%)
    }

    .eg-swiper .swiper-pagination {
      position: relative;
      margin-top: 6px
    }

    .eg-swiper .swiper-pagination-bullet {
      background: rgba(255, 255, 255, .35);
      width: 9px;
      height: 9px;
      opacity: 1;
      transition: all .25s ease;
      margin: 0 5px !important
    }

    .eg-swiper .swiper-pagination-bullet-active {
      background: var(--main-color);
      transform: scale(1.25)
    }

    /* LUXURY */
    .luxury-section {
      background: linear-gradient(120deg, #fdf3ec 0%, #f2f7fc 60%, #fff 100%);
      border-radius: 36px;
      padding: 64px 52px;
      position: relative;
      overflow: hidden
    }

    .luxury-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 42px;
      gap: 24px;
      flex-wrap: wrap
    }

    .luxury-top h3 {
      font-size: 30px;
      font-weight: 800;
      color: var(--black-color);
      line-height: 1.3;
      margin-bottom: 10px;
      letter-spacing: -.4px
    }

    .luxury-top p {
      font-size: 15px;
      color: var(--para-color);
      max-width: 500px;
      margin: 0
    }

    .lx-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px
    }

    .lx-card {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 26px 22px;
      box-shadow: var(--box-shadow);
      transition: all .3s ease;
      position: relative;
      overflow: hidden
    }

    .lx-card::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--main-color);
      transform: scaleX(0);
      transition: transform .3s ease
    }

    .lx-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow-soft)
    }

    .lx-card:hover::before {
      transform: scaleX(1)
    }

    .lx-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--main-color-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--main-color);
      margin-bottom: 18px;
      transition: all .25s ease
    }

    .lx-card:hover .lx-icon {
      background: var(--main-color);
      color: #fff
    }

    .lx-card h4 {
      font-size: 15.5px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--black-color)
    }

    .lx-card p {
      font-size: 13.5px;
      color: var(--para-color);
      margin: 0;
      line-height: 1.6
    }

    .lx-big {
     grid-column: span 2;
    display: flex;
    grid-row: span 2;
    gap: 28px;
    background: var(--black-color);
    color: #fff;
    height: 100%;
    flex-direction: column;
    }

    .lx-big::before {
      background: var(--main-color)
    }

    .lx-big .lx-icon {
      background: rgba(252, 116, 23, .2);
      color: var(--main-color)
    }

    .lx-big:hover .lx-icon {
      background: var(--main-color);
      color: #fff
    }

    .lx-big h4 {
      color: #fff;
      font-size: 18px
    }

    .lx-big p {
      color: rgba(255, 255, 255, .65)
    }

    .lx-big-img {
      flex: 0 0 180px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      height: 140px;
      flex-shrink: 0
    }

    .lx-big-img img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    /* GROUND */
    .ground-band {
      position: relative;
      border-radius: 36px;
      overflow: hidden;
      padding: 64px 52px 56px
    }

    .ground-bg {
      position: absolute;
      inset: 0
    }

    .ground-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .ground-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(125deg, rgba(20, 35, 75, .95) 0%, rgba(28, 58, 128, .88) 100%)
    }

    .ground-inner {
      position: relative;
      z-index: 2
    }

    .ground-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 36px;
      gap: 24px;
      flex-wrap: wrap
    }

    .ground-top .eyebrow {
      color: var(--main-color)
    }

    .ground-top .eyebrow::before {
      background: var(--main-color)
    }

    .ground-top h2 {
      color: #fff;
      font-size: 32px;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 10px;
      letter-spacing: -.4px
    }

    .ground-top p {
      color: rgba(255, 255, 255, .68);
      font-size: 15px;
      margin: 0;
      max-width: 420px
    }

    .ground-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px
    }

    .ground-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 240px;
      cursor: pointer
    }

    .ground-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease
    }

    .ground-card:hover img {
      transform: scale(1.08)
    }

    .ground-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 18, 42, .95) 10%, rgba(10, 18, 42, .05) 65%);
      transition: background .3s ease
    }

    .ground-card:hover::after {
      background: linear-gradient(to top, rgba(10, 18, 42, .98) 20%, rgba(10, 18, 42, .2) 70%)
    }

    .gc-inner {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      text-align: center;
      z-index: 2
    }

    .gc-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--main-color);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      font-size: 14px;
      transition: transform .3s ease, box-shadow .3s ease
    }

    .ground-card:hover .gc-arrow {
      transform: rotate(45deg);
      box-shadow: 0 0 0 8px rgba(252, 116, 23, .25)
    }

    .gc-inner span {
      color: #fff;
      font-weight: 700;
      font-size: 14.5px;
      display: block
    }

    .gc-inner small {
      color: rgba(255, 255, 255, .6);
      font-size: 12px;
      margin-top: 4px;
      display: block
    }

    .ground-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      margin-top: 28px
    }

    .gs-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      text-align: center;
      transition: all .25s ease
    }

    .gs-card:hover {
      background: rgba(255, 255, 255, .12)
    }

    .gs-card strong {
      display: block;
      font-size: 28px;
      font-weight: 800;
      color: var(--main-color);
      line-height: 1.1
    }

    .gs-card span {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .6);
      margin-top: 4px;
      display: block
    }

    /* WHY */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px
    }

    .why-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 28px 26px;
      box-shadow: var(--box-shadow);
      transition: all .3s ease;
      position: relative;
      overflow: hidden
    }

    .why-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: var(--main-color);
      border-radius: 0 0 4px 4px;
      transition: height .3s ease
    }

    .why-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow-soft)
    }

    .why-card:hover::after {
      height: 100%
    }

    .wc-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 16px
    }

    .wc-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--main-color-light);
      color: var(--main-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: all .25s ease
    }

    .why-card:hover .wc-icon {
      background: var(--main-color);
      color: #fff
    }

    .wc-num {
      font-size: 42px;
      font-weight: 800;
      color: var(--line-color);
      line-height: 1;
      font-style: italic
    }

    .why-card h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--black-color)
    }

    .why-card p {
      font-size: 13.5px;
      color: var(--para-color);
      margin: 0;
      line-height: 1.65
    }

    /* TESTIMONIALS */
    .testi-wave {
      background: var(--black-color);
      border-radius: 36px;
      padding: 56px 48px;
      position: relative;
      overflow: hidden
    }

    .testi-wave::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 560px 340px at 100% 100%, rgba(252, 116, 23, .15), transparent 65%);
      pointer-events: none
    }

    .testi-wave::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 200px;
      background: radial-gradient(ellipse 500px 240px at 20% 0%, rgba(32, 115, 248, .1), transparent 70%);
      pointer-events: none
    }

    .testi-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 34px;
      flex-wrap: wrap;
      gap: 18px;
      position: relative;
      z-index: 2
    }

    .testi-top .eyebrow {
      color: var(--main-color)
    }

    .testi-top .eyebrow::before {
      background: var(--main-color)
    }

    .testi-top h3 {
      color: #fff;
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 8px;
      letter-spacing: -.3px
    }

    .testi-top p {
      color: rgba(255, 255, 255, .6);
      font-size: 14px;
      margin: 0
    }

    .testi-nav {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0
    }

    .testi-nav button {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, .25);
      background: transparent;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s ease;
      cursor: pointer
    }

    .testi-nav button:hover {
      background: var(--main-color);
      border-color: var(--main-color)
    }

    .testi-counter {
      font-size: 13px;
      color: rgba(255, 255, 255, .6);
      background: rgba(255, 255, 255, .07);
      padding: 8px 14px;
      border-radius: 100px
    }

    .testi-counter .cur {
      color: var(--main-color);
      font-weight: 800
    }

    .testi-swiper-w {
      position: relative;
      z-index: 2
    }

    .testi-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 28px 26px;
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column
    }

    .testi-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 44px 44px 0 0;
      border-color: var(--main-color) transparent transparent transparent;
      border-radius: var(--radius-lg) 0 0 0
    }

    .tc-head {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line-color);
      margin-bottom: 16px
    }

    .tc-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid var(--line-color)
    }

    .tc-stars {
      color: var(--main-color);
      font-size: 12px;
      letter-spacing: 1px
    }

    .tc-score {
      font-size: 11.5px;
      color: var(--para-color);
      margin-top: 3px
    }

    .tc-score b {
      color: var(--black-color)
    }

    .quote-text {
      font-size: 14px;
      color: var(--black-color-soft);
      font-style: italic;
      margin-bottom: 16px;
      line-height: 1.7;
      flex: 1
    }

    .tc-person strong {
      display: block;
      font-size: 14px;
      font-weight: 700
    }

    .tc-person span {
      font-size: 12.5px;
      color: var(--para-color)
    }

    .tc-qi {
      position: absolute;
      bottom: 14px;
      right: 22px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--black-color);
      color: var(--main-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px
    }

    /* FAQ */
    .faq-layout {
      display: flex;
      gap: 48px;
      align-items: flex-start
    }

    .faq-left {
      flex: 1.4
    }

    .faq-right {
      flex: 1;
      position: sticky;
      top: 100px
    }

    .faq-right img {
      width: 100%;
      border-radius: var(--radius-lg);
      height: 480px;
      object-fit: cover;
      box-shadow: var(--box-shadow-soft)
    }
.faq-right {
    width: 600px; /* عدل المقاس حسب احتياجك */
    aspect-ratio: 1.25;
}

.faq-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* Mask */
    -webkit-mask-image: url("../img/mask-shape.png");
    mask-image: url("../img/mask-shape.png");

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-position: center;
    mask-position: center;

    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
    .faq-item {
      border: 1.5px solid var(--line-color);
      border-radius: var(--radius-md);
      margin-bottom: 12px;
      transition: border-color .25s ease, box-shadow .25s ease
    }

    .faq-item.open {
      border-color: var(--main-color);
      box-shadow: 0 4px 14px -4px rgba(252, 116, 23, .15)
    }

    .faq-q-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      text-align: left;
      font-size: 15px;
      font-weight: 600;
      color: var(--black-color);
      background: none;
      border: none;
      cursor: pointer
    }

    .faq-item.open .faq-q-btn {
      color: var(--main-color)
    }

    .faq-tog {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1.5px solid var(--line-color);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-left: 16px;
      transition: all .25s ease;
      font-size: 12px;
      color: var(--black-color);
      background: none
    }

    .faq-item.open .faq-tog {
      background: var(--main-color);
      border-color: var(--main-color);
      color: #fff;
      transform: rotate(45deg)
    }

    .faq-ans {
      max-height: 0;
      overflow: hidden;
      transition: max-height .38s cubic-bezier(.4, 0, .2, 1)
    }

    .faq-item.open .faq-ans {
      max-height: 260px
    }

    .faq-ans p {
      font-size: 14px;
      color: var(--para-color);
      padding: 0 22px 22px;
      margin: 0;
      line-height: 1.7
    }

    /* CONTACT */
    .contact-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--box-shadow-soft);
      display: grid;
      grid-template-columns: .85fr 1.15fr
    }

    .contact-info-s {
      background: var(--black-color);
      color: #fff;
      padding: 48px 44px;
      position: relative;
      overflow: hidden
    }

    .contact-info-s::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 440px 340px at 100% 0%, rgba(252, 116, 23, .16), transparent 60%);
      pointer-events: none
    }

    .cis-inner {
      position: relative;
      z-index: 2
    }

    .cis-inner h3 {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 10px
    }

    .cis-inner>p {
      font-size: 14px;
      color: rgba(255, 255, 255, .6);
      margin-bottom: 34px;
      max-width: 320px;
      line-height: 1.65
    }

    .c-line {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px
    }

    .cl-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255, 255, 255, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 13px;
      color: var(--main-color);
      border: 1px solid rgba(255, 255, 255, .08)
    }

    .cl-text strong {
      display: block;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 3px
    }

    .cl-text span,
    .cl-text a {
      font-size: 13px;
      color: rgba(255, 255, 255, .6);
      display: block;
      transition: color .2s ease
    }

    .cl-text a:hover {
      color: var(--main-color)
    }

    .cis-social {
      display: flex;
      gap: 10px;
      margin-top: 30px
    }

    .cis-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .1);
      color: rgba(255, 255, 255, .7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      transition: all .2s ease
    }

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

    .contact-form-s {
      background: #fff;
      padding: 48px 44px
    }

    .contact-form-s h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 6px
    }

    .contact-form-s>p {
      font-size: 13.5px;
      color: var(--para-color);
      margin-bottom: 26px
    }

    .form-label-et {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .6px;
      color: var(--black-color-soft);
      margin-bottom: 8px;
      display: block
    }

    .form-ctrl-et {
      font-family: var(--font-family);
      border: 1.5px solid var(--line-color);
      border-radius: var(--radius-sm);
      padding: 12px 15px;
      font-size: 14px;
      width: 100%;
      transition: all .22s ease;
      background: #fff;
      color: var(--black-color)
    }

    .form-ctrl-et:focus {
      border-color: var(--second-color);
      box-shadow: 0 0 0 3px rgba(32, 115, 248, .10);
      outline: none
    }

    .form-ctrl-et::placeholder {
      color: #bec2ce
    }

    /* BLOG */
    .blog-swiper {
      padding: 12px 4px 52px
    }

    .blog-card {
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--box-shadow);
      transition: all .3s ease;
      height: 100%;
      display: flex;
      flex-direction: column
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow-soft)
    }

    .bc-img {
      position: relative;
      height: 208px;
      overflow: hidden
    }

    .bc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease
    }

    .blog-card:hover .bc-img img {
      transform: scale(1.06)
    }

    .bc-cat {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--second-color);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .4px;
      padding: 4px 12px;
      border-radius: 100px;
      z-index: 2
    }

    .bc-body {
      padding: 20px 22px 24px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .bc-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 12px;
      color: var(--para-color);
      margin-bottom: 10px
    }

    .bc-meta span {
      display: flex;
      align-items: center;
      gap: 5px
    }

    .bc-meta i {
      font-size: 11px;
      color: var(--main-color)
    }

    .bc-body h4 {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.42;
      color: var(--black-color);
      margin-bottom: 10px;
      flex: 1
    }

    .bc-body h4:hover {
      color: var(--second-color)
    }

    .bc-body p {
      font-size: 13px;
      color: var(--para-color);
      margin-bottom: 16px
    }

    .bc-read {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--second-color);
      display: inline-flex;
      align-items: center;
      gap: 7px;
      text-transform: uppercase;
      letter-spacing: .4px;
      transition: gap .2s ease
    }

    .bc-read:hover {
      gap: 10px;
      color: var(--main-color)
    }

    .blog-swiper .swiper-slide-active .blog-card {
      box-shadow: var(--box-shadow-soft)
    }

    .blog-swiper .swiper-slide-active .bc-img {
      height: 280px
    }

    .blog-nav-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 22px
    }

    .blog-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      box-shadow: var(--box-shadow);
      border: 1.5px solid var(--line-color);
      color: var(--black-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: all .22s ease;
      cursor: pointer
    }

    .blog-nav-btn:hover {
      background: var(--main-color);
      color: #fff;
      border-color: var(--main-color)
    }

    /* NEWSLETTER */
    .nl-band {
      background: var(--second-color);
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      display: grid;
      grid-template-columns: .35fr .65fr;
      min-height: 210px
    }

    .nl-img {
      position: relative;
      background: var(--main-color);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow: hidden;
      border-radius: 0 100% 100% 0/0 60% 60% 0
    }

    .nl-img img {
      max-height: 170px;
      position: relative;
      z-index: 2
    }

    .nl-text {
      padding: 38px 50px;
      position: relative
    }

    .nl-text h3 {
      color: #fff;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 8px
    }

    .nl-text p {
      color: rgba(255, 255, 255, .8);
      font-size: 14px;
      margin-bottom: 22px;
      max-width: 460px
    }

    .nl-form {
      display: flex;
      max-width: 460px;
      border: 1.5px solid rgba(255, 255, 255, .4);
      border-radius: 100px;
      overflow: hidden
    }

    .nl-form input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 13px 20px;
      color: #fff;
      font-size: 14px;
      font-family: var(--font-family)
    }

    .nl-form input::placeholder {
      color: rgba(255, 255, 255, .65)
    }

    .nl-form input:focus {
      outline: none
    }

    .nl-form button {
      background: var(--main-color);
      color: #fff;
      font-weight: 700;
      font-size: 12.5px;
      letter-spacing: .4px;
      padding: 0 28px;
      border: none;
      cursor: pointer;
      font-family: var(--font-family);
      transition: background .2s ease;
      white-space: nowrap
    }

    .nl-form button:hover {
      background: var(--main-color-dark)
    }

    /* PARTNERS */
    .partners-strip {
      background: var(--main-grey);
      padding: 36px 0
    }

    .partner-chip {
      background: #fff;
      border-radius: var(--radius-sm);
      box-shadow: var(--box-shadow);
      padding: 14px 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      height: 64px;
      font-weight: 700;
      color: var(--black-color-soft);
      font-size: 13.5px;
      transition: all .25s ease
    }

    .partner-chip:hover {
      transform: translateY(-3px);
      box-shadow: var(--box-shadow-soft)
    }

    .partner-chip i {
      font-size: 16px
    }

    /* CTA BAND */
    .cta-band {
      background: linear-gradient(125deg, var(--black-color) 0%, #152244 100%);
      border-radius: var(--radius-lg);
      padding: 52px 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 36px;
      position: relative;
      overflow: hidden;
      flex-wrap: wrap
    }

    .cta-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 480px 300px at 90% 50%, rgba(252, 116, 23, .22), transparent 70%);
      pointer-events: none
    }

    .cta-text {
      position: relative;
      z-index: 1
    }

    .cta-text h3 {
      color: #fff;
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 8px;
      letter-spacing: -.3px
    }

    .cta-text p {
      color: rgba(255, 255, 255, .62);
      font-size: 15px;
      margin: 0
    }

    .cta-actions {
      display: flex;
      gap: 14px;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
      flex-wrap: wrap
    }

    /* FOOTER */
    footer {
      background: var(--main-grey);
      padding-top: 56px
    }

    .footer-logo-box {
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 14px 22px;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 18px;
      box-shadow: var(--box-shadow)
    }

    .footer-logo-box .lt {
      font-family: var(--font-hand);
      font-size: 24px;
      color: var(--black-color);
      margin-top: 4px
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--para-color);
      margin: 0 0 20px;
      max-width: 310px;
      line-height: 1.7
    }

    .social-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap
    }

    .social-links a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--line-color);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--black-color-soft);
      font-size: 13px;
      transition: all .22s ease
    }

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

    .footer-col h5 {
      font-size: 15px;
      font-weight: 700;
      color: var(--black-color);
      margin-bottom: 20px
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .footer-col a {
      font-size: 14px;
      color: var(--para-color);
      transition: color .2s ease;
      display: flex;
      align-items: center;
      gap: 7px
    }

    .footer-col a i {
      font-size: 11px;
      color: var(--main-color)
    }

    .footer-col a:hover {
      color: var(--main-color)
    }

    .f-cline {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 13px;
      font-size: 13.5px;
      color: var(--para-color)
    }

    .f-cline i {
      color: var(--main-color);
      margin-top: 2px;
      width: 14px
    }

    .pay-row {
      display: flex;
      gap: 7px;
      margin-top: 16px;
      flex-wrap: wrap
    }

    .pay-chip {
      background: #fff;
      border: 1px solid var(--line-color);
      border-radius: 6px;
      padding: 6px 11px;
      font-size: 11px;
      font-weight: 800
    }

    .footer-bottom {
      border-top: 1px solid var(--line-color);
      padding: 20px 0;
      margin-top: 40px
    }

    .footer-bottom p {
      font-size: 13.5px;
      color: var(--para-color);
      margin: 0
    }

    .footer-bottom p a {
      color: var(--second-color);
      font-weight: 600
    }

    .f-legal {
      display: flex;
      gap: 22px;
      flex-wrap: wrap
    }

    .f-legal a {
      font-size: 13.5px;
      color: var(--para-color);
      transition: color .2s ease
    }

    .f-legal a:hover {
      color: var(--main-color)
    }

    /* FABs */
    .wa-fab {
      position: fixed;
      bottom: 28px;
      left: 28px;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 24px;
      box-shadow: 0 8px 22px -4px rgba(37, 211, 102, .55);
      z-index: 150;
      transition: transform .2s ease
    }

    .wa-fab:hover {
      transform: scale(1.1) rotate(-5deg);
      color: #fff
    }

    .btt {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #fff;
      border: 1.5px solid var(--main-color);
      color: var(--black-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      box-shadow: var(--box-shadow-soft);
      z-index: 150;
      transition: all .22s ease;
      opacity: 0;
      pointer-events: none;
      cursor: pointer
    }

    .btt.show {
      opacity: 1;
      pointer-events: auto
    }

    .btt:hover {
      background: var(--main-color);
      color: #fff
    }

    /* RESPONSIVE */
    @media(max-width:1200px) {
      .tours-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .mice-grid {
        grid-template-columns: 1fr 1fr
      }

      .mice-grid .mice-card:last-child {
        grid-column: span 2
      }

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

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

      .lx-big {
        grid-column: span 2
      }

      .why-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:992px) {
      .about-grid {
        flex-direction: column
      }

      .about-visual {
        max-width: 520px;
        flex: unset
      }

      .contact-card {
        grid-template-columns: 1fr
      }

      .nl-band {
        grid-template-columns: 1fr
      }

      .nl-img {
        display: none
      }

      .faq-layout {
        flex-direction: column
      }

      .faq-right {
        position: static;
        width: 100%
      }

      .faq-right img {
        height: 280px
      }

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

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

    @media(max-width:768px) {
      .topbar .container {
        display: none
      }

      .main-nav {
        display: none
      }

      .nav-toggle {
        display: flex
      }

      .hero-content h1 {
        font-size: 32px
      }

      .hs-item+.hs-item {
        border-left: none;
        padding-left: 0
      }

      .blob-wrap,
      .luxury-section,
      .ground-band,
      .testi-wave,
      .eg-section {
        padding: 40px 24px;
        border-radius: 22px
      }

      .mice-grid {
        grid-template-columns: 1fr
      }

      .mice-grid .mice-card:last-child {
        grid-column: auto
      }

      .lx-grid {
        grid-template-columns: 1fr
      }

      .lx-big {
        grid-column: auto;
        flex-direction: column
      }

      .lx-big-img {
        flex: unset;
        width: 100%;
        height: 160px
      }

      .ground-cards {
        grid-template-columns: 1fr 1fr
      }

      .why-grid {
        grid-template-columns: 1fr
      }

      .cta-band {
        flex-direction: column;
        text-align: center;
        padding: 38px 26px
      }

      .cta-actions {
        justify-content: center
      }

      .section-head h2 {
        font-size: 26px
      }

      .search-pill {
        border-radius: var(--radius-md);
        flex-wrap: wrap
      }

      .sp-field {
        border-right: none;
        border-bottom: 1px solid var(--line-color);
        flex: 1 1 45%
      }

      .sp-btn {
        flex: 1 1 100%;
        padding: 14px;
        justify-content: center
      }

      .tours-grid {
        grid-template-columns: 1fr
      }

      .info-grid {
        grid-template-columns: 1fr
      }

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

      .eg-ribbon { width: 44px; height: 68px; }
      .eg-ribbon.left { left: 10px }
      .eg-ribbon.right { right: 10px }
    }

    @media(max-width:480px) {
      .hero-content h1 {
        font-size: 26px
      }

      .hero-cta {
        flex-direction: column
      }

      .ground-cards {
        grid-template-columns: 1fr
      }
    }

