/* ==========================================================================
   REPKART — Premium Travel Website
   Design tokens: Primary #0E6BA8 · Secondary #57C6F5 · Accent #D4A64A
                  Dark #062A42 · Background #F8FBFD
   Type: Manrope (display) + Poppins (body/UI)
   ========================================================================== */

:root {
   --primary: #0E6BA8;
   --primary-dark: #0A5486;
   --secondary: #57C6F5;
   --accent: #D4A64A;
   --accent-light: #E6C583;
   --dark: #062A42;
   --bg: #F8FBFD;
   --white: #FFFFFF;
   --ink: #0B3350;
   --ink-soft: #4A6B84;
   --line: rgba(6, 42, 66, 0.09);

   --grad-brand: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
   --grad-gold: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
   --grad-dark: linear-gradient(180deg, rgba(6, 42, 66, 0.15) 0%, rgba(6, 42, 66, 0.92) 78%);

   --shadow-sm: 0 2px 10px rgba(6, 42, 66, 0.06);
   --shadow-md: 0 12px 32px rgba(6, 42, 66, 0.10);
   --shadow-lg: 0 24px 60px rgba(6, 42, 66, 0.16);
   --shadow-gold: 0 10px 28px rgba(212, 166, 74, 0.30);

   --radius-sm: 12px;
   --radius-md: 20px;
   --radius-lg: 32px;

   --font-display: 'Manrope', sans-serif;
   --font-body: 'Poppins', sans-serif;

   --container: 1220px;
   --header-h: 84px;
}

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

html {
   scroll-behavior: smooth;
   scroll-padding-top: 90px;
   overflow-x: hidden;
   width: 100%;
}

body {
   font-family: var(--font-body);
   color: var(--ink);
   background: var(--bg);
   overflow-x: hidden;
   width: 100%;
   line-height: 1.65;
   -webkit-font-smoothing: antialiased;
}

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

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

ul {
   list-style: none;
}

button {
   font-family: inherit;
   cursor: pointer;
   border: none;
   background: none;
   color: inherit;
}

input,
select,
textarea {
   font-family: inherit;
   font-size: 0.95rem;
}

h1,
h2,
h3,
h4 {
   font-family: var(--font-display);
   color: var(--dark);
   font-weight: 800;
   line-height: 1.14;
   letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: reduce) {
   * {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
   }
}

:focus-visible {
   outline: 2.5px solid var(--accent);
   outline-offset: 3px;
   border-radius: 4px;
}

.container {
   width: 100%;
   max-width: var(--container);
   margin: 0 auto;
   padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 9px;
   font-family: var(--font-body);
   font-weight: 600;
   font-size: 0.96rem;
   padding: 15px 28px;
   border-radius: 100px;
   white-space: nowrap;
   transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, background .35s, color .35s;
}

.btn svg {
   transition: transform .3s;
}

.btn:hover svg {
   transform: translateX(3px);
}

.btn-primary {
   background: var(--grad-brand);
   color: #fff;
   box-shadow: var(--shadow-md);
}

.btn-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 18px 34px rgba(14, 107, 168, 0.28);
}

.btn-accent {
   background: var(--grad-gold);
   color: var(--dark);
   box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
   transform: translateY(-3px);
   box-shadow: 0 16px 30px rgba(212, 166, 74, 0.4);
}

.btn-ghost {
   background: rgba(255, 255, 255, 0.12);
   color: #fff;
   border: 1.5px solid rgba(255, 255, 255, 0.55);
   backdrop-filter: blur(6px);
}

.btn-ghost:hover {
   background: rgba(255, 255, 255, 0.22);
   transform: translateY(-3px);
}

.btn-outline {
   border: 1.6px solid var(--primary);
   color: var(--primary);
}

.btn-outline:hover {
   background: var(--primary);
   color: #fff;
   transform: translateY(-2px);
}

.btn-sm {
   padding: 10px 20px;
   font-size: 0.86rem;
}

.btn-lg {
   padding: 17px 32px;
   font-size: 1rem;
}

.btn-block {
   width: 100%;
}

.btn-link {
   font-weight: 600;
   color: var(--primary);
   display: inline-flex;
   align-items: center;
   gap: 6px;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
   opacity: 0;
   transform: translateY(28px);
   transition: opacity .8s cubic-bezier(.2, .7, .3, 1), transform .8s cubic-bezier(.2, .7, .3, 1);
}

.reveal.in-view {
   opacity: 1;
   transform: translateY(0);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
   position: fixed;
   top: 0;
   left: 0;
   height: 3px;
   width: 0%;
   background: var(--grad-gold);
   z-index: 9999;
   transition: width .1s linear;
}

/* ---------- Preloader ---------- */
.preloader {
   position: fixed;
   inset: 0;
   background: var(--dark);
   z-index: 99999;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: opacity .6s ease, visibility .6s ease;
}

.preloader.hide {
   opacity: 0;
   visibility: hidden;
}

.preloader-mark {
   animation: spin-pulse 1.4s ease-in-out infinite;
}

@keyframes spin-pulse {

   0%,
   100% {
      transform: scale(1) rotate(0deg);
   }

   50% {
      transform: scale(1.15) rotate(180deg);
   }
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   padding: 16px 0;
   background: linear-gradient(180deg, rgba(4, 24, 44, 0.88) 0%, rgba(4, 24, 44, 0.42) 68%, rgba(4, 24, 44, 0) 100%);
   transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}

.site-header.scrolled {
   background: rgba(4, 24, 44, 0.82);
   backdrop-filter: blur(12px) saturate(130%);
   box-shadow: 0 8px 26px rgba(4, 20, 36, 0.32);
   padding: 12px 0;
}

.nav-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
}

.brand {
   display: flex;
   align-items: center;
   gap: 10px;
}

.brand-logo {
   height: 46px;
   width: auto;
   object-fit: contain;
}

.main-nav {
   display: flex;
   align-items: center;
   gap: 30px;
}

.main-nav a {
   font-size: 0.95rem;
   font-weight: 500;
   position: relative;
   padding: 4px 0;
   transition: color .3s;
}

.site-header .main-nav a {
   color: rgba(255, 255, 255, 0.92);
}

.main-nav a::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -7px;
   width: 0;
   height: 2px;
   background: var(--accent);
   transition: width .3s ease;
}

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

.main-nav a:hover {
   color: var(--accent);
}

.nav-cta {
   display: flex;
   align-items: center;
   gap: 18px;
}

.nav-trip-btn {
   padding: 11px 22px;
   border-radius: 12px;
   font-weight: 700;
}

.nav-toggle {
   display: none;
   flex-direction: column;
   gap: 5px;
   width: 26px;
}

.nav-toggle span {
   height: 2px;
   width: 100%;
   background: #fff;
   border-radius: 2px;
   transition: .3s;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: flex-end;
   overflow: hidden;
   padding-bottom: 24px;
}

.hero-media {
   position: absolute;
   inset: 0;
   z-index: 0;
}

.hero-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transform: scale(1.04);
   animation: hero-zoom 16s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
   from {
      transform: scale(1.06);
   }

   to {
      transform: scale(1);
   }
}

.hero-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(104deg, rgba(5, 22, 42, 0.85) 0%, rgba(6, 30, 56, 0.54) 45%, rgba(5, 24, 44, 0.24) 100%), linear-gradient(180deg, rgba(6, 42, 66, 0.22) 0%, rgba(6, 42, 66, 0.68) 100%);
}

.hero-noise {
   position: absolute;
   inset: 0;
   opacity: 0.035;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
   position: relative;
   z-index: 2;
   padding-top: calc(var(--header-h) + 22px);
   width: 100%;
}

.hero-layout {
   display: grid;
   grid-template-columns: 1.1fr 0.58fr;
   gap: 38px;
   align-items: center;
   margin-bottom: 18px;
}

.hero-layout-single {
   grid-template-columns: 1fr;
   justify-items: center;
   text-align: center;
}

.hero-layout-single .hero-copy {
   max-width: 760px;
}

.hero-layout-single .hero-actions {
   justify-content: center;
}

.hero-copy {
   max-width: 690px;
}

.hero-kicker {
   display: inline-block;
   color: var(--accent);
   font-size: 0.9rem;
   letter-spacing: 0.17em;
   font-weight: 600;
   margin-bottom: 16px;
}

.eyebrow {
   display: inline-block;
   font-size: 0.8rem;
   font-weight: 600;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--accent);
   margin-bottom: 16px;
}

.eyebrow.center {
   display: block;
   text-align: center;
}

.eyebrow.light {
   color: var(--secondary);
}

.hero-title {
   font-size: clamp(2.6rem, 6vw, 4.6rem);
   color: #fff;
   margin-bottom: 22px;
}

.grad-text {
   background: var(--grad-gold);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
}

.hero-sub {
   font-size: 1.12rem;
   color: rgba(255, 255, 255, 0.88);
   max-width: 620px;
   margin-bottom: 34px;
}

.hero-actions {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-bottom: 52px;
}

.planner-card {
   border-radius: 24px;
   padding: 28px 22px 20px;
   background: rgba(12, 38, 64, 0.74);
   border: 1px solid rgba(255, 255, 255, 0.22);
   box-shadow: 0 24px 54px rgba(4, 20, 36, 0.35);
   backdrop-filter: blur(9px);
   -webkit-backdrop-filter: blur(9px);
}

.planner-card h3 {
   color: #fff;
   font-size: 2rem;
   margin-bottom: 18px;
   font-weight: 700;
}

.planner-form {
   display: flex;
   flex-direction: column;
   gap: 14px;
}

.planner-form label {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.planner-form label span {
   font-size: 0.78rem;
   color: rgba(255, 255, 255, 0.78);
   letter-spacing: 0.02em;
}

.planner-form input,
.planner-form select {
   width: 100%;
   border-radius: 12px;
   border: 1px solid rgba(255, 255, 255, 0.24);
   background: rgba(13, 39, 66, 0.56);
   color: #fff;
   padding: 12px 14px;
}

.planner-form input::placeholder {
   color: rgba(255, 255, 255, 0.6);
}

.planner-form .btn {
   margin-top: 6px;
}

.planner-contact-fields {
   display: none;
   flex-direction: column;
   gap: 14px;
   margin-top: 4px;
}

.planner-contact-fields.open {
   display: flex;
}

.planner-note {
   font-size: 0.82rem;
   color: rgba(255, 255, 255, 0.72);
   text-align: center;
   margin-top: 6px;
}

.planner-note.is-error {
   color: #ffd2d2;
}

.planner-note.is-success {
   color: #b6ffd9;
}

.hero-services {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 0;
   padding: 14px 16px;
   border-radius: 18px;
   margin-bottom: 18px;
}

.hero-service-item {
   display: grid;
   grid-template-columns: 24px 1fr;
   column-gap: 10px;
   row-gap: 1px;
   align-items: center;
   padding: 8px 14px;
   border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-service-item:last-child {
   border-right: 0;
}

.hero-item-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 30px;
   height: 30px;
   font-size: 1.18rem;
   color: var(--accent);
   grid-row: 1 / 3;
   align-self: center;
}

.hero-service-item strong {
   display: block;
   color: #fff;
   font-size: 0.8rem;
   font-weight: 600;
   line-height: 1.2;
}

.hero-service-item span {
   display: block;
   color: rgba(255, 255, 255, 0.76);
   font-size: 0.84rem;
}

.hero-metrics {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 14px;
   margin-bottom: 10px;
}

.hero-metric {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 12px 14px;
   border-radius: 14px;
   background: rgba(6, 28, 50, 0.56);
   border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metric-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 34px;
   height: 34px;
   font-size: 1.3rem;
   color: var(--accent);
   flex: 0 0 auto;
}

.hero-metric span {
   color: var(--accent);
   font-family: var(--font-display);
   font-size: 2rem;
   font-weight: 800;
   line-height: 1;
}

.hero-metric small {
   color: #fff;
   font-size: 0.8rem;
}

.hero-scroll-hint {
   position: absolute;
   right: 22px;
   bottom: 8px;
   color: #fff;
   font-size: 0.96rem;
   opacity: 0.92;
}

.glass {
   background: rgba(255, 255, 255, 0.14);
   border: 1px solid rgba(255, 255, 255, 0.28);
   backdrop-filter: blur(18px) saturate(150%);
   -webkit-backdrop-filter: blur(18px) saturate(150%);
}



/* ==========================================================================
   ENQUIRY WIDGET
   ========================================================================== */
.enquiry-wrap {
   position: relative;
   z-index: 5;
   margin-top: -56px;
}

.enquiry-card {
   display: flex;
   flex-wrap: wrap;
   align-items: end;
   gap: 18px;
   background: rgba(255, 255, 255, 0.75);
   border: 1px solid rgba(255, 255, 255, 0.6);
   border-radius: var(--radius-md);
   padding: 26px 30px;
   box-shadow: var(--shadow-lg);
}

.enquiry-field {
   flex: 1 1 160px;
   display: flex;
   flex-direction: column;
   gap: 7px;
}

.enquiry-field label {
   font-size: 0.74rem;
   font-weight: 600;
   letter-spacing: 0.05em;
   text-transform: uppercase;
   color: var(--ink-soft);
}

.enquiry-field input,
.enquiry-field select {
   border: 1.5px solid var(--line);
   border-radius: 10px;
   padding: 11px 12px;
   background: #fff;
   color: var(--ink);
   transition: border-color .25s, box-shadow .25s;
}

.enquiry-field input:focus,
.enquiry-field select:focus {
   border-color: var(--secondary);
   box-shadow: 0 0 0 4px rgba(87, 198, 245, 0.18);
}

.enquiry-submit {
   flex: 0 0 auto;
   height: 47px;
}

/* ==========================================================================
   SHARED SECTION STYLES
   ========================================================================== */
.section {
   padding: 110px 0;
   position: relative;
}

.section-title {
   font-size: clamp(1.9rem, 3.4vw, 2.7rem);
   margin-bottom: 18px;
}

.section-title.center {
   text-align: center;
   max-width: 760px;
   margin-left: auto;
   margin-right: auto;
}

.section-title.light {
   color: #fff;
}

.section-sub {
   color: var(--ink-soft);
   font-size: 1.03rem;
   max-width: 620px;
}

.section-sub.center {
   margin: 0 auto 56px;
   text-align: center;
}

.lead {
   font-size: 1.08rem;
   color: var(--ink-soft);
   margin-bottom: 20px;
}

.section-divider {
   display: block;
   width: 100%;
   height: 70px;
   margin-top: -2px;
}

.section-divider.flip {
   transform: scaleY(-1) translateY(0);
   margin-top: 0;
   margin-bottom: -2px;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
   background:
      radial-gradient(circle at 0% 10%, rgba(14, 107, 168, 0.08), transparent 40%),
      radial-gradient(circle at 100% 100%, rgba(212, 166, 74, 0.09), transparent 35%),
      #f7fbff;
   padding-top: 110px;
}

.about-shell {
   border-radius: 34px;
   padding: 42px 34px 30px;
   background: rgba(255, 255, 255, 0.82);
   box-shadow: 0 20px 55px rgba(6, 42, 66, 0.1);
   border: 1px solid rgba(14, 107, 168, 0.08);
}

.about-grid {
   display: grid;
   grid-template-columns: 1.08fr 0.92fr;
   gap: 42px;
   align-items: center;
}

.about-label {
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 0.12em;
   color: var(--accent);
   margin-bottom: 8px;
}

.about-title {
   font-size: clamp(2rem, 4.4vw, 3.5rem);
   line-height: 1.07;
   margin-bottom: 14px;
}

.about-intro {
   color: var(--ink-soft);
   max-width: 640px;
   margin-bottom: 22px;
}

.about-feature-grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 12px;
   margin-bottom: 18px;
}

.about-feature-card {
   background: #fff;
   border: 1px solid rgba(6, 42, 66, 0.08);
   border-radius: 16px;
   padding: 16px 12px;
   box-shadow: 0 10px 24px rgba(6, 42, 66, 0.06);
}

.about-feature-card i {
   color: var(--accent);
   font-size: 1.35rem;
   margin-bottom: 10px;
}

.about-feature-card h3 {
   font-size: 0.95rem;
   line-height: 1.25;
   margin-bottom: 8px;
}

.about-feature-card p {
   font-size: 0.8rem;
   color: var(--ink-soft);
}

.about-cta {
   display: flex;
   align-items: center;
   gap: 12px;
   flex-wrap: wrap;
}

.about-media {
   position: relative;
}

.about-media-main {
   border-radius: 36px;
   overflow: hidden;
   box-shadow: var(--shadow-lg);
   aspect-ratio: 4/4.2;
   border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-media-main img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .6s ease;
}

.about-media:hover .about-media-main img {
   transform: scale(1.05);
}

.about-achievement {
   position: absolute;
   left: -26px;
   top: 22px;
   width: 160px;
   height: 160px;
   border-radius: 50%;
   padding: 20px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   background: linear-gradient(180deg, #0a2d50, #06223d);
   border: 4px solid var(--accent);
   box-shadow: 0 16px 34px rgba(6, 42, 66, 0.28);
   color: #fff;
}

.about-achievement strong {
   font-family: var(--font-display);
   font-size: 2.8rem;
   line-height: 1;
   color: var(--accent);
}

.about-achievement span {
   font-size: 0.85rem;
   font-weight: 600;
   margin-top: 6px;
}

.about-stamp {
   position: absolute;
   right: -16px;
   bottom: 20px;
   width: 94px;
   height: 94px;
   border-radius: 50%;
   border: 2px dashed rgba(14, 107, 168, 0.6);
   color: rgba(14, 107, 168, 0.82);
   font-size: 0.76rem;
   font-weight: 700;
   letter-spacing: 0.05em;
   line-height: 1.15;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   background: rgba(255, 255, 255, 0.82);
}

.about-metrics {
   margin: 28px auto 26px;
   border-radius: 999px;
   background: #fff;
   border: 1px solid rgba(6, 42, 66, 0.08);
   box-shadow: 0 12px 26px rgba(6, 42, 66, 0.08);
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   overflow: hidden;
}

.about-metric-item {
   padding: 17px 14px;
   display: grid;
   grid-template-columns: 30px auto;
   column-gap: 10px;
   row-gap: 2px;
   align-items: center;
   border-right: 1px solid rgba(6, 42, 66, 0.1);
}

.about-metric-item:last-child {
   border-right: 0;
}

.about-metric-item i {
   color: var(--accent);
   font-size: 1.3rem;
   grid-row: 1 / 3;
}

.about-metric-item strong {
   font-family: var(--font-display);
   color: var(--dark);
   font-size: 2.2rem;
   line-height: 1;
}

.about-metric-item span {
   color: var(--ink-soft);
   font-size: 0.9rem;
   font-weight: 600;
}

.about-journey {
   text-align: center;
   padding: 10px 4px 0;
}

.about-journey-label {
   font-size: 0.78rem;
   letter-spacing: 0.12em;
   font-weight: 700;
   color: var(--accent);
   margin-bottom: 7px;
}

.about-journey h3 {
   font-size: clamp(1.8rem, 3.2vw, 2.9rem);
   margin-bottom: 34px;
}

.about-journey-track {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 16px;
   position: relative;
}

.about-journey-track::before {
   content: '';
   position: absolute;
   top: 30px;
   left: 6%;
   right: 6%;
   height: 2px;
   background: linear-gradient(90deg, rgba(14, 107, 168, 0.35), rgba(212, 166, 74, 0.85), rgba(14, 107, 168, 0.35));
}

.about-step {
   position: relative;
   z-index: 1;
   padding: 0 6px;
}

.about-step-icon {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   margin: 0 auto 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: #082746;
   color: var(--accent);
   border: 3px solid #fff;
   box-shadow: 0 8px 22px rgba(6, 42, 66, 0.18);
}

.about-step h4 {
   font-family: var(--font-display);
   font-size: 2rem;
   color: var(--dark);
   line-height: 1;
   margin-bottom: 6px;
}

.about-step strong {
   display: block;
   color: var(--dark);
   font-size: 1rem;
   margin-bottom: 6px;
}

.about-step p {
   color: var(--ink-soft);
   font-size: 0.85rem;
}

/* ==========================================================================
   WHY REPKART CARDS
   ========================================================================== */
.why {
   background: var(--bg);
}

.why-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
   gap: 24px;
}

.why-card {
   background: #fff;
   border-radius: var(--radius-md);
   padding: 32px 26px;
   box-shadow: var(--shadow-sm);
   border: 1px solid var(--line);
   transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s, border-color .4s;
}

.why-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-lg);
   border-color: transparent;
}

.why-icon {
   width: 56px;
   height: 56px;
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(135deg, rgba(14, 107, 168, 0.10), rgba(212, 166, 74, 0.14));
   color: var(--primary);
   margin-bottom: 18px;
   transition: .4s;
}

.why-card:hover .why-icon {
   background: var(--grad-brand);
   color: #fff;
   transform: rotate(-6deg) scale(1.06);
}

.why-card h3 {
   font-size: 1.1rem;
   margin-bottom: 10px;
}

.why-card p {
   font-size: 0.92rem;
   color: var(--ink-soft);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
   background: var(--white);
}

.section-head-split {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   gap: 40px;
   margin-bottom: 52px;
   flex-wrap: wrap;
}

.section-head-split .section-title {
   margin-bottom: 0;
}

.section-sub-right {
   color: var(--ink-soft);
   font-size: 0.96rem;
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 28px;
}

.service-card {
   border-radius: var(--radius-md);
   overflow: hidden;
   background: #fff;
   box-shadow: var(--shadow-sm);
   border: 1px solid var(--line);
   transition: transform .4s, box-shadow .4s;
}

.service-card:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow-lg);
}

.service-media {
   aspect-ratio: 16/10;
   overflow: hidden;
}

.service-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .6s ease;
}

.service-card:hover .service-media img {
   transform: scale(1.08);
}

.service-body {
   padding: 24px 24px 26px;
}

.service-body h3 {
   font-size: 1.12rem;
   margin-bottom: 8px;
}

.service-body p {
   font-size: 0.9rem;
   color: var(--ink-soft);
   margin-bottom: 16px;
}

.service-link {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-weight: 600;
   color: var(--primary);
   font-size: 0.88rem;
}

.service-link svg {
   transition: transform .3s;
}

.service-link:hover svg {
   transform: translateX(4px);
}

/* ==========================================================================
   PACKAGES
   ========================================================================== */
.packages {
   background: var(--bg);
}

.packages-scroller {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 26px;
}

.package-card {
   background: #fff;
   border-radius: var(--radius-md);
   overflow: hidden;
   box-shadow: var(--shadow-sm);
   border: 1px solid var(--line);
   transition: transform .4s, box-shadow .4s;
}

.package-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-lg);
}

.package-media {
   position: relative;
   aspect-ratio: 4/3;
   overflow: hidden;
}

.package-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .6s;
}

.package-card:hover .package-media img {
   transform: scale(1.1);
}

.package-tag {
   position: absolute;
   top: 14px;
   left: 14px;
   background: var(--grad-gold);
   color: var(--dark);
   font-size: 0.7rem;
   font-weight: 700;
   padding: 6px 12px;
   border-radius: 100px;
   letter-spacing: .03em;
}

.package-body {
   padding: 22px;
}

.package-body h3 {
   font-size: 1.08rem;
   margin-bottom: 4px;
}

.package-meta {
   font-size: 0.82rem;
   color: var(--ink-soft);
   margin-bottom: 14px;
}

.package-highlights {
   display: flex;
   flex-direction: column;
   gap: 6px;
   margin-bottom: 18px;
}

.package-highlights li {
   font-size: 0.85rem;
   color: var(--ink);
   padding-left: 18px;
   position: relative;
}

.package-highlights li::before {
   content: '✓';
   position: absolute;
   left: 0;
   color: var(--accent);
   font-weight: 700;
}

.package-foot {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding-top: 14px;
   border-top: 1px solid var(--line);
}

.package-price {
   font-size: 0.82rem;
   color: var(--ink-soft);
}

.package-price strong {
   color: var(--primary);
   font-size: 1rem;
}

.packages-note {
   text-align: center;
   margin-top: 36px;
   font-size: 0.85rem;
   color: var(--ink-soft);
}

.services-note {
   text-align: center;
   max-width: 760px;
   margin: 44px auto 0;
   font-size: 0.92rem;
   color: var(--ink-soft);
   line-height: 1.7;
}

.testimonials-note {
   text-align: center;
   margin-top: 24px;
   font-size: 0.78rem;
   color: var(--ink-soft);
   opacity: 0.7;
}

/* ==========================================================================
   DESTINATIONS
   ========================================================================== */
.destinations {
   background: var(--white);
}

.destinations-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   grid-auto-rows: 220px;
   gap: 20px;
}

.destination-card {
   position: relative;
   grid-column: span 1;
   grid-row: span 1;
   border-radius: var(--radius-md);
   overflow: hidden;
   display: block;
}

.destination-card.large {
   grid-column: span 2;
   grid-row: span 2;
}

.destination-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.destination-card:hover img {
   transform: scale(1.12);
}

.destination-overlay {
   position: absolute;
   inset: 0;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 22px;
   background: linear-gradient(180deg, rgba(6, 42, 66, 0) 40%, rgba(6, 42, 66, 0.85) 100%);
}

.destination-overlay h3 {
   color: #fff;
   font-size: 1.3rem;
   margin-bottom: 4px;
}

.destination-overlay p {
   color: rgba(255, 255, 255, 0.85);
   font-size: 0.86rem;
}

.destination-card.large .destination-overlay h3 {
   font-size: 1.7rem;
}

/* ==========================================================================
   WORLD MAP
   ========================================================================== */
.world-map {
   background: var(--bg);
}

.map-wrap {
   border-radius: var(--radius-lg);
   padding: 14px;
   background: linear-gradient(160deg, rgba(14, 107, 168, 0.06), rgba(212, 166, 74, 0.06));
   border: 1px solid var(--line);
   box-shadow: var(--shadow-sm);
}

.world-map-canvas {
   height: 480px;
   width: 100%;
   border-radius: calc(var(--radius-lg) - 8px);
   overflow: hidden;
   border: 1px solid rgba(6, 42, 66, 0.08);
}

.rk-map-marker {
   width: 18px;
   height: 18px;
   border-radius: 50%;
   background: var(--accent);
   border: 2px solid #fff;
   box-shadow: 0 0 0 6px rgba(212, 166, 74, 0.25), 0 6px 14px rgba(6, 42, 66, 0.24);
}

.world-map-canvas .leaflet-popup-content-wrapper {
   border-radius: 12px;
   box-shadow: 0 10px 24px rgba(6, 42, 66, 0.16);
}

.world-map-canvas .leaflet-popup-content {
   font-family: var(--font-body);
   font-size: 0.88rem;
   color: var(--ink);
   margin: 10px 12px;
}

.world-map-canvas .leaflet-tooltip.rk-map-label {
   background: rgba(6, 42, 66, 0.92);
   border: 0;
   border-radius: 10px;
   color: #fff;
   font-family: var(--font-body);
   font-size: 0.75rem;
   font-weight: 500;
   letter-spacing: 0.01em;
   padding: 6px 10px;
   box-shadow: 0 8px 18px rgba(6, 42, 66, 0.2);
}

.world-map-canvas .rk-map-tooltip-link {
   color: #fff;
   text-decoration: none;
   display: block;
   line-height: 1.2;
}

.world-map-canvas .rk-map-tooltip-link strong {
   display: block;
   font-weight: 700;
}

.world-map-canvas .rk-map-tooltip-link span {
   display: block;
   font-size: 0.68rem;
   opacity: 0.92;
}

.world-map-canvas .rk-map-tooltip-link:hover strong {
   text-decoration: underline;
}

.world-map-canvas .leaflet-tooltip-top.rk-map-label:before {
   border-top-color: rgba(6, 42, 66, 0.92);
}

.world-map-canvas .leaflet-control-zoom a {
   color: var(--primary);
}

.world-map-canvas .leaflet-control-attribution {
   font-size: 10px;
}

@media (max-width:860px) {
   .world-map-canvas {
      height: 390px;
   }
}

/* ==========================================================================
   HOW IT WORKS — TIMELINE
   ========================================================================== */
.how {
   background: var(--white);
}

.timeline {
   position: relative;
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 24px;
   margin-top: 20px;
}

.timeline-line {
   position: absolute;
   top: 26px;
   left: 10%;
   right: 10%;
   height: 2px;
   background: repeating-linear-gradient(90deg, var(--accent) 0 10px, transparent 10px 18px);
   z-index: 0;
}

.timeline-step {
   position: relative;
   z-index: 1;
   text-align: center;
   padding: 0 8px;
}

.timeline-dot {
   width: 54px;
   height: 54px;
   border-radius: 50%;
   margin: 0 auto 18px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--grad-brand);
   color: #fff;
   font-family: var(--font-display);
   font-weight: 800;
   font-size: 1.15rem;
   box-shadow: var(--shadow-md);
   transition: transform .35s;
}

.timeline-step:hover .timeline-dot {
   transform: scale(1.12) translateY(-4px);
}

.timeline-step h3 {
   font-size: 1.02rem;
   margin-bottom: 8px;
}

.timeline-step p {
   font-size: 0.85rem;
   color: var(--ink-soft);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.choose-us {
   background: var(--bg);
}

.choose-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   gap: 22px;
   margin-bottom: 46px;
}

.choose-item {
   text-align: center;
   padding: 30px 16px;
   background: #fff;
   border-radius: var(--radius-md);
   border: 1px solid var(--line);
   transition: transform .35s, box-shadow .35s;
}

.choose-item:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow-md);
}

.choose-item svg {
   color: var(--accent);
   margin-bottom: 14px;
}

.choose-item h4 {
   font-size: 0.92rem;
   font-weight: 600;
   color: var(--dark);
}

.trust-badges {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 14px;
}

.badge-pill {
   font-size: 0.8rem;
   font-weight: 600;
   color: var(--primary);
   background: rgba(14, 107, 168, 0.08);
   border: 1px solid rgba(14, 107, 168, 0.18);
   padding: 9px 18px;
   border-radius: 100px;
}

/* ==========================================================================
   OFFERS
   ========================================================================== */
.offers {
   background: var(--dark);
   position: relative;
   overflow: hidden;
}

.offers::before {
   content: '';
   position: absolute;
   top: -120px;
   right: -120px;
   width: 400px;
   height: 400px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(212, 166, 74, 0.18), transparent 70%);
}

.offers-inner {
   display: grid;
   grid-template-columns: 0.9fr 1.1fr;
   gap: 56px;
   align-items: center;
}

.offers-media {
   border-radius: var(--radius-lg);
   overflow: hidden;
   box-shadow: var(--shadow-lg);
   aspect-ratio: 4/3;
}

.offers-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.offers-copy .section-title {
   color: #fff;
}

.offers-copy p {
   color: rgba(255, 255, 255, 0.78);
   margin-bottom: 26px;
}

.offer-countdown {
   display: flex;
   gap: 14px;
   margin-bottom: 28px;
}

.cd-block {
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.14);
   border-radius: 14px;
   padding: 14px 18px;
   text-align: center;
   min-width: 70px;
}

.cd-block span {
   display: block;
   font-family: var(--font-display);
   font-size: 1.5rem;
   font-weight: 800;
   color: var(--accent);
}

.cd-block small {
   font-size: 0.68rem;
   color: rgba(255, 255, 255, 0.7);
   letter-spacing: 0.06em;
   text-transform: uppercase;
}

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.partners {
   background: var(--white);
}

.partners-row {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   gap: 20px 50px;
   margin-top: 26px;
}

.partner-logo-card {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 220px;
   min-height: 96px;
   padding: 18px 22px;
   border-radius: 18px;
   background: #fff;
   border: 1px solid rgba(6, 42, 66, 0.08);
   box-shadow: 0 10px 24px rgba(6, 42, 66, 0.06);
   transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.partner-logo-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 16px 30px rgba(6, 42, 66, 0.12);
   border-color: rgba(14, 107, 168, 0.18);
}

.partner-logo-card img {
   max-width: 100%;
   max-height: 56px;
   width: auto;
   height: auto;
   object-fit: contain;
   filter: saturate(1.02);
   transition: transform .3s ease, filter .3s ease;
}

.partner-logo-card:hover img {
   transform: scale(1.03);
   filter: saturate(1.08);
}

.partners-note {
   text-align: center;
   margin-top: 22px;
   font-size: 0.78rem;
   color: var(--ink-soft);
   opacity: 0.7;
}

/* ---- Detailed partner profile cards ---- */
.partners-detail-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 32px;
   margin-top: 50px;
}

.partner-detail-card {
   background: #fff;
   border: 1px solid rgba(6, 42, 66, 0.08);
   border-radius: var(--radius-lg, 28px);
   overflow: hidden;
   box-shadow: 0 10px 28px rgba(6, 42, 66, 0.06);
   transition: transform .35s ease, box-shadow .35s ease;
   display: flex;
   flex-direction: column;
}

.partner-detail-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 22px 44px rgba(6, 42, 66, 0.13);
}

.partner-detail-media {
   aspect-ratio: 16/9;
   overflow: hidden;
}

.partner-detail-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .6s ease;
}

.partner-detail-card:hover .partner-detail-media img {
   transform: scale(1.06);
}

.partner-detail-body {
   padding: 30px 32px 34px;
   display: flex;
   flex-direction: column;
   flex: 1;
}

.partner-detail-region {
   display: inline-block;
   align-self: flex-start;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: var(--primary);
   background: rgba(14, 107, 168, 0.08);
   border-radius: 100px;
   padding: 6px 14px;
   margin-bottom: 14px;
}

.partner-detail-body h3 {
   font-size: 1.32rem;
   margin-bottom: 14px;
   color: var(--dark);
}

.partner-detail-desc {
   font-size: 0.94rem;
   color: var(--ink-soft);
   line-height: 1.7;
   margin-bottom: 18px;
}

.partner-detail-highlights {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-bottom: 24px;
}

.partner-detail-highlights li {
   font-size: 0.86rem;
   color: var(--ink);
   line-height: 1.6;
   padding-left: 22px;
   position: relative;
}

.partner-detail-highlights li::before {
   content: '';
   position: absolute;
   left: 0;
   top: 7px;
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: var(--grad-gold, linear-gradient(135deg, #D4A64A, #E6C583));
}

.partner-detail-highlights strong {
   color: var(--dark);
}

.partner-detail-link {
   margin-top: auto;
   align-self: flex-start;
}

@media (max-width: 900px) {
   .partners-detail-grid {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 560px) {
   .partner-detail-body {
      padding: 24px 22px 28px;
   }
}


@media (max-width:560px) {
   .partner-logo-card {
      width: 100%;
      min-height: 86px;
   }
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
   background: var(--bg);
   padding-bottom: 0;
}

.masonry {
   columns: 4 220px;
   column-gap: 18px;
   margin-bottom: 40px;
}

.masonry-item {
   display: block;
   width: 100%;
   margin-bottom: 18px;
   break-inside: avoid;
   border-radius: var(--radius-sm);
   overflow: hidden;
   position: relative;
}

.masonry-item img {
   width: 100%;
   height: auto;
   display: block;
   transition: transform .5s ease, filter .4s;
}

.masonry-item.tall img {
   aspect-ratio: 3/4;
   object-fit: cover;
}

.masonry-item:not(.tall) img {
   aspect-ratio: 4/3;
   object-fit: cover;
}

.masonry-item::after {
   content: '+';
   position: absolute;
   inset: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   color: #fff;
   background: rgba(6, 42, 66, 0.35);
   opacity: 0;
   transition: opacity .35s;
}

.masonry-item:hover::after {
   opacity: 1;
}

.masonry-item:hover img {
   transform: scale(1.08);
}

.instagram-cta {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 22px;
   background: #fff;
   border-radius: 100px;
   max-width: 420px;
   margin: 0 auto 50px;
   font-size: 0.88rem;
   color: var(--ink-soft);
   box-shadow: var(--shadow-sm);
}

.instagram-cta strong {
   color: var(--primary);
}

.lightbox {
   position: fixed;
   inset: 0;
   background: rgba(6, 42, 66, 0.92);
   z-index: 9998;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   visibility: hidden;
   transition: opacity .35s;
   padding: 40px;
}

.lightbox.open {
   opacity: 1;
   visibility: visible;
}

.lightbox img {
   max-width: 90vw;
   max-height: 85vh;
   border-radius: 12px;
   box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
   position: absolute;
   top: 26px;
   right: 34px;
   color: #fff;
   font-size: 2.2rem;
   line-height: 1;
}

/* ==========================================================================
   GOOGLE REVIEWS
   ========================================================================== */
.g-reviews {
   background: var(--white);
}

.g-reviews-head {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 16px;
   margin-bottom: 36px;
}

.g-brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   color: var(--dark);
   font-size: 1.05rem;
}

.g-rating {
   font-family: var(--font-display);
   font-weight: 800;
   font-size: 1.1rem;
   color: var(--dark);
   display: flex;
   align-items: center;
   gap: 10px;
}

.stars {
   color: var(--accent);
   letter-spacing: 2px;
}

.g-count {
   font-family: var(--font-body);
   font-weight: 500;
   font-size: 0.8rem;
   color: var(--ink-soft);
}

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

.review-card {
   background: linear-gradient(160deg, rgba(14, 107, 168, 0.05), rgba(212, 166, 74, 0.05));
   border: 1px solid var(--line);
   border-radius: var(--radius-md);
   padding: 26px;
}

.review-card p {
   font-size: 0.9rem;
   color: var(--ink);
   margin: 14px 0 20px;
}

.reviewer {
   display: flex;
   align-items: center;
   gap: 12px;
}

.avatar {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background: var(--grad-brand);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.75rem;
   font-weight: 700;
   flex-shrink: 0;
}

.reviewer strong {
   display: block;
   font-size: 0.86rem;
}

.reviewer small {
   font-size: 0.75rem;
   color: var(--ink-soft);
}

.reviews-note {
   text-align: center;
   margin-top: 26px;
   font-size: 0.78rem;
   color: var(--ink-soft);
   opacity: 0.7;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
   background: var(--bg);
}

.testi-carousel {
   max-width: 760px;
   margin: 0 auto;
}

.testi-track {
   position: relative;
   min-height: 260px;
}

.testi-card {
   position: absolute;
   inset: 0;
   padding: 44px 40px;
   border-radius: var(--radius-lg);
   text-align: center;
   background: rgba(255, 255, 255, 0.65);
   box-shadow: var(--shadow-md);
   opacity: 0;
   visibility: hidden;
   transform: translateX(30px);
   transition: opacity .6s ease, transform .6s ease, visibility .6s;
}

.testi-card.active {
   opacity: 1;
   visibility: visible;
   transform: translateX(0);
   position: relative;
}

.quote-mark {
   margin-bottom: 16px;
}

.testi-card p {
   font-size: 1.08rem;
   color: var(--ink);
   font-style: italic;
   margin-bottom: 22px;
}

.testi-card .reviewer {
   justify-content: center;
}

.testi-dots {
   display: flex;
   justify-content: center;
   gap: 10px;
   margin-top: 26px;
}

.testi-dots button {
   width: 9px;
   height: 9px;
   border-radius: 50%;
   background: var(--line);
   transition: .3s;
}

.testi-dots button.active {
   background: var(--accent);
   width: 26px;
   border-radius: 6px;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog {
   background: var(--white);
}

.blog-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 26px;
}

.blog-card {
   border-radius: var(--radius-md);
   overflow: hidden;
   background: #fff;
   border: 1px solid var(--line);
   box-shadow: var(--shadow-sm);
   transition: transform .35s, box-shadow .35s;
}

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

.blog-card img {
   aspect-ratio: 16/10;
   object-fit: cover;
   width: 100%;
}

.blog-body {
   padding: 22px;
}

.blog-tag {
   font-size: 0.7rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.06em;
   color: var(--accent);
}

.blog-body h3 {
   font-size: 1.02rem;
   margin: 10px 0 14px;
   line-height: 1.4;
}

/* ==========================================================================
   VISA PROCESS
   ========================================================================== */
.visa-process {
   background: var(--bg);
}

.visa-steps {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 22px;
}

.visa-step {
   background: #fff;
   border-radius: var(--radius-md);
   padding: 28px 22px;
   border: 1px solid var(--line);
   position: relative;
   overflow: hidden;
}

.visa-num {
   font-family: var(--font-display);
   font-size: 2.2rem;
   font-weight: 800;
   color: rgba(14, 107, 168, 0.14);
   display: block;
   margin-bottom: 6px;
}

.visa-step h4 {
   font-size: 0.96rem;
   margin-bottom: 8px;
}

.visa-step p {
   font-size: 0.84rem;
   color: var(--ink-soft);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
   background: var(--white);
}

.faq-grid {
   display: grid;
   grid-template-columns: 0.8fr 1.2fr;
   gap: 60px;
}

.faq-intro p {
   color: var(--ink-soft);
   margin-bottom: 26px;
}

.faq-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
}

.faq-item {
   border: 1px solid var(--line);
   border-radius: var(--radius-sm);
   overflow: hidden;
   background: #fff;
}

.faq-q {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 24px;
   text-align: left;
   font-weight: 600;
   font-size: 0.98rem;
   color: var(--dark);
}

.faq-q svg {
   flex-shrink: 0;
   transition: transform .35s;
   color: var(--primary);
}

.faq-item.open .faq-q svg {
   transform: rotate(45deg);
   color: var(--accent);
}

.faq-a {
   max-height: 0;
   overflow: hidden;
   transition: max-height .4s ease;
}

.faq-a p {
   padding: 0 24px 20px;
   color: var(--ink-soft);
   font-size: 0.92rem;
}

.faq-item.open .faq-a {
   max-height: 220px;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
   background: var(--dark);
   color: #fff;
}

.contact .eyebrow {
   color: var(--secondary);
}

.contact .section-title {
   color: #fff;
}

.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
}

.contact-list {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin: 30px 0;
}

.contact-list li {
   display: flex;
   align-items: flex-start;
   gap: 14px;
}

.contact-icon {
   width: 42px;
   height: 42px;
   border-radius: 12px;
   background: rgba(255, 255, 255, 0.08);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--accent);
   flex-shrink: 0;
}

.contact-list strong {
   display: block;
   font-size: 0.82rem;
   color: rgba(255, 255, 255, 0.6);
   margin-bottom: 3px;
}

.contact-list a,
.contact-list span {
   font-size: 0.98rem;
   color: #fff;
}

.contact-list em {
   font-size: 0.8rem;
   color: rgba(255, 255, 255, 0.55);
   font-style: italic;
}

.contact-map {
   border-radius: var(--radius-md);
   overflow: hidden;
   height: 220px;
   margin-bottom: 26px;
   filter: grayscale(0.2);
}

.contact-map iframe {
   width: 100%;
   height: 100%;
   border: 0;
}

.social-row {
   display: flex;
   gap: 12px;
}

.social-row a {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.08);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: .3s;
}

.social-row a:hover {
   background: var(--grad-gold);
   color: var(--dark);
   transform: translateY(-3px);
}

.contact-form {
   background: rgba(255, 255, 255, 0.06);
   border-radius: var(--radius-lg);
   padding: 40px;
   border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-form h3 {
   color: #fff;
   font-size: 1.3rem;
   margin-bottom: 22px;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
}

.form-field {
   margin-bottom: 16px;
   display: flex;
   flex-direction: column;
   gap: 7px;
}

.form-field label {
   font-size: 0.76rem;
   font-weight: 600;
   color: rgba(255, 255, 255, 0.7);
   text-transform: uppercase;
   letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea {
   background: rgba(255, 255, 255, 0.08);
   border: 1.5px solid rgba(255, 255, 255, 0.18);
   border-radius: 10px;
   padding: 12px 14px;
   color: #fff;
   transition: border-color .25s, background .25s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
   color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus,
.form-field textarea:focus {
   border-color: var(--secondary);
   background: rgba(255, 255, 255, 0.12);
}

.form-note {
   margin-top: 14px;
   font-size: 0.86rem;
   color: var(--secondary);
   min-height: 1em;
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter {
   background: var(--grad-brand);
   padding: 80px 0;
}

.newsletter-inner {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 30px;
   flex-wrap: wrap;
}

.newsletter-inner .section-title {
   margin-bottom: 0;
}

.newsletter-form {
   display: flex;
   gap: 12px;
   background: rgba(255, 255, 255, 0.14);
   padding: 8px;
   border-radius: 100px;
   border: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-form input {
   background: transparent;
   border: 0;
   padding: 10px 18px;
   color: #fff;
   min-width: 240px;
}

.newsletter-form input::placeholder {
   color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
   background: var(--dark);
   color: rgba(255, 255, 255, 0.75);
   padding-top: 70px;
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
   gap: 36px;
   padding-bottom: 50px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
   font-size: 0.86rem;
   margin: 16px 0 20px;
   color: rgba(255, 255, 255, 0.55);
}

.site-footer .brand-name {
   color: #fff;
}

.footer-col h4 {
   color: #fff;
   font-size: 0.92rem;
   margin-bottom: 18px;
   letter-spacing: 0.03em;
}

.footer-col a {
   display: block;
   font-size: 0.86rem;
   color: rgba(255, 255, 255, 0.6);
   margin-bottom: 12px;
   transition: color .25s;
}

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

.footer-newsletter p {
   font-size: 0.82rem;
   margin-bottom: 14px;
   color: rgba(255, 255, 255, 0.55);
}

.footer-news-form {
   display: flex;
   gap: 8px;
}

.footer-news-form input {
   flex: 1;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.16);
   border-radius: 8px;
   padding: 10px 12px;
   color: #fff;
   font-size: 0.84rem;
}

.footer-news-form button {
   background: var(--grad-gold);
   color: var(--dark);
   width: 40px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.footer-bottom {
   padding: 22px 0;
}

.footer-bottom-inner {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 8px;
   font-size: 0.78rem;
   color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   FLOATING UI
   ========================================================================== */
.whatsapp-float {
   position: fixed;
   bottom: 26px;
   left: 26px;
   width: 58px;
   height: 58px;
   border-radius: 50%;
   background: #25D366;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
   z-index: 900;
   animation: wa-pulse 2.6s infinite;
   transition: transform .3s;
}

.whatsapp-float:hover {
   transform: scale(1.08);
}

@keyframes wa-pulse {

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

   50% {
      box-shadow: 0 10px 34px rgba(37, 211, 102, 0.7);
   }
}

.back-to-top {
   position: fixed;
   bottom: 26px;
   right: 26px;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: var(--grad-brand);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: var(--shadow-md);
   z-index: 900;
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: opacity .3s, visibility .3s, transform .3s;
}

.back-to-top.show {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.back-to-top:hover {
   transform: translateY(-4px);
}

.sticky-mobile-bar {
   display: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1080px) {

   .contact-grid,
   .offers-inner {
      grid-template-columns: 1fr;
   }

   .about-shell {
      padding: 32px 24px 24px;
   }

   .about-grid {
      grid-template-columns: 1fr;
      gap: 22px;
   }

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

   .about-metrics {
      grid-template-columns: repeat(2, 1fr);
      border-radius: 24px;
   }

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

   .about-journey-track::before {
      display: none;
   }

   .about-media {
      max-width: 720px;
      margin: 0 auto;
   }

   .hero-layout {
      grid-template-columns: 1fr;
      gap: 20px;
   }

   .planner-card {
      max-width: 560px;
   }

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

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

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

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

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

   .destination-card.large {
      grid-column: span 2;
   }

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

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

   .faq-grid {
      grid-template-columns: 1fr;
   }

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

   .footer-grid {
      grid-template-columns: 1fr 1fr 1fr;
   }
}

@media (max-width:860px) {

   .site-header {
      padding: 10px 0;
   }

   .main-nav,
   .nav-cta {
      display: none;
   }

   .nav-toggle {
      display: flex;
   }

   .main-nav.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: var(--header-h);
      right: 0;
      left: 0;
      background: rgba(4, 24, 44, 0.96);
      padding: 26px 28px;
      gap: 20px;
      box-shadow: var(--shadow-lg);
   }

   .main-nav.open a {
      color: #fff !important;
      font-size: 1.02rem;
   }

   .brand-logo {
      height: 34px;
   }

   .hero {
      min-height: auto;
      padding-bottom: 18px;
   }

   .hero-inner {
      padding-top: calc(var(--header-h) + 52px);
   }

   .hero-title {
      font-size: clamp(2rem, 10vw, 3rem);
   }

   .hero-sub {
      font-size: 1rem;
   }

   .planner-card h3 {
      font-size: 1.6rem;
   }

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

   .hero-metrics {
      grid-template-columns: 1fr 1fr;
   }

   .hero-scroll-hint {
      position: static;
      display: inline-block;
      margin-top: 4px;
   }

   .enquiry-card {
      flex-direction: column;
      align-items: stretch;
   }

   .enquiry-submit {
      width: 100%;
   }

   .timeline {
      grid-template-columns: 1fr;
      gap: 36px;
   }

   .timeline-line {
      display: none;
   }

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

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

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

   .packages-scroller {
      grid-template-columns: 1fr;
   }

   .reviews-slider {
      grid-template-columns: 1fr;
   }

   .destinations-grid {
      grid-template-columns: 1fr 1fr;
   }

   .blog-grid {
      grid-template-columns: 1fr;
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
   }

   .masonry {
      columns: 2 180px;
   }

   .form-row {
      grid-template-columns: 1fr;
   }

   .sticky-mobile-bar {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 899;
      background: #fff;
      box-shadow: 0 -6px 20px rgba(6, 42, 66, 0.12);
      padding: 12px 16px;
      gap: 12px;
      padding-bottom: calc(12px + env(safe-area-inset-bottom));
   }

   .sticky-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.88rem;
      border: 1.5px solid var(--primary);
      color: var(--primary);
   }

   .sticky-primary {
      background: var(--grad-brand);
      color: #fff;
      border: 0;
   }

   body {
      padding-bottom: 70px;
   }

   .whatsapp-float {
      bottom: 90px;
   }

   .back-to-top {
      bottom: 90px;
   }
}

@media (max-width:560px) {
   .container {
      padding: 0 20px;
   }

   .section {
      padding: 80px 0;
   }

   .hero-inner {
      padding-top: calc(var(--header-h) + 62px);
   }

   .hero-kicker {
      margin-bottom: 12px;
   }

   .hero-actions {
      flex-direction: column;
      align-items: stretch;
   }

   .hero-services {
      grid-template-columns: 1fr;
   }

   .hero-service-item {
      border-right: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
   }

   .hero-service-item:last-child {
      border-bottom: 0;
   }

   .hero-metrics {
      grid-template-columns: 1fr;
   }

   .hero-metric span {
      font-size: 1.6rem;
   }

   .hero-metric small {
      font-size: 0.9rem;
   }

   .planner-card {
      padding: 20px 16px 16px;
   }

   .about-shell {
      padding: 22px 14px 16px;
      border-radius: 20px;
   }

   .about-title {
      font-size: 2rem;
   }

   .about-feature-grid {
      grid-template-columns: 1fr;
   }

   .about-achievement {
      left: 10px;
      top: 10px;
      width: 120px;
      height: 120px;
      padding: 12px;
   }

   .about-achievement strong {
      font-size: 2rem;
   }

   .about-achievement span {
      font-size: 0.75rem;
   }

   .about-stamp {
      width: 74px;
      height: 74px;
      font-size: 0.64rem;
      right: 8px;
      bottom: 10px;
   }

   .about-metrics {
      grid-template-columns: 1fr;
   }

   .about-metric-item {
      border-right: 0;
      border-bottom: 1px solid rgba(6, 42, 66, 0.1);
   }

   .about-metric-item:last-child {
      border-bottom: 0;
   }

   .about-journey-track {
      grid-template-columns: 1fr;
   }

   .destinations-grid {
      grid-template-columns: 1fr;
   }

   .destination-card.large {
      grid-column: span 1;
      grid-row: span 1;
      aspect-ratio: 4/3;
   }

   .masonry {
      columns: 1;
   }

   .newsletter-inner {
      flex-direction: column;
      align-items: flex-start;
   }

   .newsletter-form {
      width: 100%;
      flex-wrap: wrap;
   }

   .newsletter-form input {
      min-width: 0;
      flex: 1;
   }

   .footer-grid {
      grid-template-columns: 1fr;
   }

   .g-reviews-head {
      flex-direction: column;
      align-items: flex-start;
   }
}