/* ===== TRIPKART GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy:  #0d1b2e;
  --navy2: #152238;
  --navy3: #1a2f4e;
  --blue:  #1a5fdc;
  --blue2: #1e7aef;
  --cyan:  #00b4d8;
  --sky:   #EAF4FE;
  --sky2:  #D6ECFB;
  --orange:#f59e0b;
  --white: #ffffff;
  --gray:  #f0f4f8;
  --gray2: #f8fafc;
  --text:  #334155;
  --muted: #64748b;
  --border:#e2e8f0;
  --shadow:    0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family:'Inter',sans-serif; color:var(--text); background:#fff; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }

/* ===================================================
   NAVBAR
=================================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  height: 72px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo { display:flex; align-items:center; }
.logo-img { height:46px; width:auto; object-fit:contain; display:block; }
.logo-img-footer { height:48px; background:#fff; border-radius:8px; padding:5px 12px; }

.nav-menu { display:flex; align-items:center; gap:4px; }
.nav-link {
  padding: 8px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}
.nav-link:hover,
.nav-link.active { color:var(--blue); background:rgba(26,95,220,0.06); }
.nav-link.active::after {
  content:'';
  position:absolute; bottom:2px;
  left:50%; transform:translateX(-50%);
  width:20px; height:2px;
  background:var(--blue); border-radius:2px;
}
.nav-link.has-dropdown::after { content:' ▾'; font-size:10px; }
.nav-link.has-dropdown.active::after { content:' ▾'; width:auto; height:auto; background:none; transform:none; left:auto; bottom:auto; position:static; }

.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue2) !important; transform:translateY(-1px); box-shadow:0 4px 16px rgba(26,95,220,0.35); }

/* ===================================================
   HERO  — light sky-blue split layout
=================================================== */
.hero {
  background: linear-gradient(140deg, var(--sky) 0%, #f0f8ff 55%, var(--sky2) 100%);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 64px 80px;
  position: relative;
  overflow: hidden;
}
/* subtle dot-map pattern */
.hero::before {
  content:'';
  position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(26,95,220,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-left { position:relative; z-index:2; }
.hero-badge {
  display: inline-flex; align-items:center; gap:6px;
  background: var(--blue);
  color: white;
  font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius:20px;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 50px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--blue); }
.hero-sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items:center; gap:8px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.hero-trust-icon {
  width: 32px; height:32px;
  background: white;
  border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  font-size:16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:32px; }

/* hero right image */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(26,95,220,0.18);
}
.hero-img-badge {
  position: absolute;
  bottom: 24px; left: -20px;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex; align-items:center; gap:12px;
}
.hero-img-badge-icon { font-size:28px; }
.hero-img-badge-text { font-size:13px; font-weight:700; color:var(--navy); }
.hero-img-badge-sub  { font-size:11px; color:var(--muted); }
.hero-img-pin {
  position: absolute;
  top: 20px; right: -16px;
  background: var(--blue);
  color: white;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(26,95,220,0.35);
}

/* ===================================================
   SEARCH BAR  — floats below hero
=================================================== */
.search-wrap {
  padding: 0 80px;
  margin-top: -28px;
  position: relative;
  z-index: 10;
}
.search-bar {
  background: white;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex; gap:12px; align-items:center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  flex-wrap: wrap;
  /* margin for standalone usage on inner pages */
  margin: 24px 80px;
}
/* reset margin when inside the home-page wrapper */
.search-wrap .search-bar { margin: 0; }
.search-input {
  flex:2; min-width:200px;
  display:flex; align-items:center; gap:8px;
  background: var(--gray);
  border-radius: 8px;
  padding: 10px 14px;
}
.search-input input {
  border:none; background:transparent;
  font-size:13px; font-family:'Inter',sans-serif;
  outline:none; width:100%; color:var(--text);
}
.search-input span { color:var(--muted); }
.search-select {
  padding: 10px 16px;
  background: var(--gray);
  border: none; border-radius:8px;
  font-size:13px; font-family:'Inter',sans-serif;
  color: var(--text); cursor:pointer; outline:none;
}
.search-btn {
  background: var(--blue);
  color: white;
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 700; font-size:13px;
  border:none; cursor:pointer;
  display:flex; align-items:center; gap:6px;
  transition: background 0.2s;
  white-space: nowrap;
}
.search-btn:hover { background:var(--blue2); }

/* ===================================================
   FEATURES BAR  — white card row
=================================================== */
.features-bar {
  padding: 48px 80px 0;
}
.features-inner {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  overflow: hidden;
}
.feature-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-item:last-child { border-right:none; }
.feature-item:hover { background: var(--gray2); }
.feature-icon {
  width: 52px; height:52px;
  background: rgba(26,95,220,0.08);
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  font-size: 24px;
  margin: 0 auto 12px;
}
.feature-title { font-size:13px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.feature-sub   { font-size:11px; color:var(--muted); line-height:1.5; }

/* ===================================================
   GENERAL SECTIONS
=================================================== */
.section { padding:80px 80px; }
.section-alt { background:var(--gray); }
.section-dark{ background:var(--navy); }

.section-label {
  font-size:11px; font-weight:700;
  color:var(--blue); letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:10px; display:block;
}
.section-title {
  font-size:36px; font-weight:800;
  color:var(--navy); line-height:1.2; margin-bottom:16px;
}
.section-title .accent { color:var(--blue); }
.section-sub {
  color:var(--muted); font-size:15px;
  line-height:1.7; max-width:560px;
}
.section-sub-center { text-align:center; margin:0 auto; }
.section-header-center { text-align:center; }
.section-row-header {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:32px;
}

/* ===================================================
   DESTINATIONS SECTION  — white background
=================================================== */
.dest-section {
  padding: 72px 80px;
  background: var(--gray2);
}
.dest-header {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:28px;
}
.dest-header h2 { font-size:22px; font-weight:800; color:var(--navy); }
.dest-header h2 span { color:var(--blue); }
.view-all {
  color:var(--blue); font-size:13px; font-weight:600;
  display:flex; align-items:center; gap:4px;
  transition: gap 0.2s;
}
.view-all:hover { gap:8px; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 18px;
}
.dest-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  background-size: cover;
  background-position: center;
  background-color: var(--navy2);
  display: block;
}
.dest-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(0,0,0,0.22); }
.dest-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.dest-tag {
  position:absolute; top:12px; left:12px; z-index:2;
  font-size:10px; font-weight:700;
  padding:3px 10px; border-radius:20px;
  text-transform:uppercase; letter-spacing:0.5px;
}
.dest-tag.international { background:var(--blue);  color:white; }
.dest-tag.domestic      { background:var(--cyan);  color:white; }
.dest-info {
  position:absolute; bottom:14px; left:14px; right:14px; z-index:2;
  display:flex; justify-content:space-between; align-items:flex-end;
}
.dest-name    { color:white; font-size:14px; font-weight:700; }
.dest-country { color:rgba(255,255,255,0.7); font-size:11px; margin-top:2px; }
.dest-arrow {
  width:30px; height:30px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:14px; flex-shrink:0;
  backdrop-filter:blur(4px);
}

/* ===================================================
   SERVICES SECTION  — icon grid, no heavy cards
=================================================== */
.services-icon-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 20px;
  margin-top: 40px;
}
.svc-icon-item {
  text-align: center;
  padding: 28px 14px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: white;
  transition: all 0.2s;
  cursor: pointer;
}
.svc-icon-item:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(26,95,220,0.1);
  transform: translateY(-4px);
}
.svc-icon {
  width: 56px; height:56px;
  background: rgba(26,95,220,0.08);
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  font-size: 26px;
  margin: 0 auto 14px;
}
.svc-title { font-size:13px; font-weight:700; color:var(--navy); margin-bottom:5px; }
.svc-desc  { font-size:11px; color:var(--muted); line-height:1.5; }

/* ===================================================
   STATS COUNTER  (dark bar)
=================================================== */
.stats-counter {
  background: var(--navy);
  padding: 50px 80px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 0;
}
.counter-item {
  text-align:center; padding:0 16px;
  border-right:1px solid rgba(255,255,255,0.1);
  color:white;
}
.counter-item:last-child { border-right:none; }
.counter-icon { font-size:28px; margin-bottom:8px; }
.counter-num   { font-size:38px; font-weight:900; color:var(--cyan); }
.counter-label { font-size:12px; color:rgba(255,255,255,0.6); margin-top:4px; }

/* ===================================================
   WHY CHOOSE + PARTNERS  — two-column
=================================================== */
.why-partners-section {
  background: white;
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
/* — Left: Why Choose — */
.why-label {
  font-size:11px; font-weight:700;
  color:var(--blue); letter-spacing:2px;
  text-transform:uppercase; margin-bottom:10px;
}
.why-heading {
  font-size:28px; font-weight:900; color:var(--navy);
  line-height:1.25; margin-bottom:20px;
}
.why-list { display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.why-list-item {
  display:flex; align-items:center; gap:10px;
  font-size:13.5px; font-weight:600; color:var(--text);
}
.why-check {
  width:20px; height:20px; flex-shrink:0;
  background:var(--blue); color:white;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:800;
}
.why-two-col {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.btn-learn {
  background: var(--blue);
  color: white;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight:700; font-size:13px;
  display: inline-flex; align-items:center; gap:6px;
  transition: all 0.2s;
}
.btn-learn:hover { background:var(--blue2); transform:translateY(-1px); }

/* — Right: Partners — */
.partners-label {
  font-size:11px; font-weight:700;
  color:var(--blue); letter-spacing:2px;
  text-transform:uppercase; margin-bottom:20px;
  border-bottom:2px solid var(--border);
  padding-bottom:14px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.partner-card {
  border-radius:12px;
  border:1.5px solid var(--border);
  padding:18px 14px;
  text-align:center;
  transition: all 0.2s;
  display:flex; align-items:center; justify-content:center;
  min-height: 72px;
}
.partner-card:hover { border-color:var(--blue); box-shadow:var(--shadow); }
.partner-card span {
  font-size:13px; font-weight:800;
  color:var(--navy); letter-spacing:-0.3px;
}

/* ===================================================
   CTA BANNER
=================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  padding:48px 80px;
  display:flex; align-items:center; justify-content:space-between; gap:30px;
}
.cta-left { display:flex; align-items:center; gap:20px; }
.cta-icon  { font-size:36px; }
.cta-text h3 { font-size:22px; font-weight:800; color:white; margin-bottom:4px; }
.cta-text p  { color:rgba(255,255,255,0.65); font-size:13px; }
.btn-cta {
  background: var(--blue);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight:700; font-size:14px;
  white-space:nowrap;
  display:inline-flex; align-items:center; gap:8px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(26,95,220,0.35);
}
.btn-cta:hover { background:var(--blue2); transform:translateY(-2px); }

/* ===================================================
   BUTTONS (global)
=================================================== */
.btn-primary {
  background: var(--blue);
  color: white;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight:700; font-size:14px;
  transition: all 0.2s;
  display:inline-flex; align-items:center; gap:8px;
  cursor:pointer; border:none;
}
.btn-primary:hover { background:var(--blue2); transform:translateY(-1px); box-shadow:0 6px 20px rgba(26,95,220,0.35); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight:700; font-size:14px;
  border: 2px solid var(--border);
  transition: all 0.2s;
  display:inline-flex; align-items:center; gap:8px;
  cursor:pointer;
}
.btn-outline:hover { border-color:var(--blue); color:var(--blue); }

/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: var(--navy);
  padding: 60px 80px 30px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size:13px; line-height:1.7;
  margin:14px 0 20px;
  color:rgba(255,255,255,0.55);
}
.social-links { display:flex; gap:10px; }
.social-link {
  width:34px; height:34px;
  border-radius:8px;
  background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; transition:all 0.2s;
}
.social-link:hover { background:var(--blue); }
.footer-col h4 {
  font-size:12px; font-weight:700;
  color:white; text-transform:uppercase;
  letter-spacing:1px; margin-bottom:18px;
}
.footer-col a {
  display:block; font-size:13px;
  color:rgba(255,255,255,0.55);
  margin-bottom:10px; transition:color 0.2s;
}
.footer-col a:hover { color:var(--cyan); }
.footer-contact-item {
  display:flex; gap:10px; margin-bottom:12px; font-size:13px;
}
.footer-contact-icon { font-size:14px; flex-shrink:0; margin-top:1px; }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:24px;
  font-size:12px; color:rgba(255,255,255,0.35);
}
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { color:rgba(255,255,255,0.35); transition:color 0.2s; }
.footer-bottom-links a:hover { color:white; }

/* ===================================================
   PAGE HERO  (inner pages)
=================================================== */
.page-hero {
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  padding: 64px 80px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(13,27,46,0.92) 0%, rgba(15,45,74,0.75) 100%);
  z-index:1;
}
.page-hero-content { position:relative; z-index:2; }
.breadcrumb {
  font-size:12px; color:rgba(255,255,255,0.5);
  margin-bottom:14px;
  display:flex; align-items:center; gap:8px;
}
.breadcrumb a { color:rgba(255,255,255,0.5); }
.breadcrumb a:hover { color:white; }
.breadcrumb span { color:var(--cyan); }
.page-hero h1 { font-size:42px; font-weight:900; color:white; margin-bottom:12px; }
.page-hero p  { color:rgba(255,255,255,0.7); font-size:15px; max-width:540px; line-height:1.7; }
.page-hero-badges {
  display:flex; gap:20px; margin-top:24px; flex-wrap:wrap;
}
.page-hero-badge {
  display:flex; align-items:center; gap:8px;
  color:rgba(255,255,255,0.8); font-size:13px; font-weight:600;
  background:rgba(255,255,255,0.08);
  padding:6px 14px; border-radius:20px;
  border:1px solid rgba(255,255,255,0.15);
}

/* ===================================================
   DMC GRID  (international / domestic pages)
=================================================== */
.dmc-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  padding: 0 80px 80px;
}
.dmc-region {
  grid-column:1/-1;
  font-size:11px; font-weight:700;
  color:var(--blue); letter-spacing:2px;
  text-transform:uppercase;
  padding:24px 0 8px;
  border-bottom:2px solid rgba(26,95,220,0.15);
  display:flex; align-items:center; gap:10px;
}
.dmc-region span { flex:1; height:1px; background:rgba(26,95,220,0.12); display:block; }
.dmc-card {
  border-radius:14px; overflow:hidden;
  border:1px solid var(--border);
  transition:all 0.25s; background:white;
}
.dmc-card:hover { border-color:var(--blue); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.dmc-img { height:180px; background-size:cover; background-position:center; position:relative; }
.dmc-flag {
  position:absolute; top:12px; left:14px;
  display:flex; align-items:center; gap:6px;
  background:rgba(0,0,0,0.5); color:white;
  font-size:12px; font-weight:600;
  padding:4px 10px; border-radius:20px;
  backdrop-filter:blur(4px);
}
.dmc-body { padding:16px; }
.dmc-name    { font-size:16px; font-weight:800; color:var(--navy); margin-bottom:4px; }
.dmc-company { font-size:13px; color:var(--muted); margin-bottom:8px; }
.dmc-location{ font-size:12px; color:var(--muted); display:flex; align-items:center; gap:4px; margin-bottom:12px; }
.dmc-tags    { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.dmc-tag {
  font-size:11px; font-weight:600;
  color:var(--blue); background:rgba(26,95,220,0.08);
  padding:3px 8px; border-radius:4px;
  display:flex; align-items:center; gap:3px;
}
.dmc-btn {
  width:100%; padding:10px;
  border:1.5px solid var(--blue); border-radius:8px;
  font-size:13px; font-weight:700; color:var(--blue);
  background:transparent; cursor:pointer; transition:all 0.2s;
  display:flex; align-items:center; justify-content:center; gap:6px;
}
.dmc-btn:hover { background:var(--blue); color:white; }

/* ===================================================
   WHY PARTNER (contact page)
=================================================== */
.why-partner {
  background: var(--gray);
  padding: 50px 80px;
  text-align: center;
}
.why-partner h2 { font-size:24px; font-weight:800; color:var(--navy); margin-bottom:32px; }
.why-partner h2 span { color:var(--blue); }
.why-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
.why-item  { display:flex; flex-direction:column; align-items:center; gap:8px; }
.why-icon  { font-size:30px; }
.why-label { font-size:13px; font-weight:700; color:var(--navy); }

/* ===================================================
   ABOUT PAGE
=================================================== */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.journey-steps { display:flex; gap:0; margin-top:32px; }
.journey-step  { flex:1; text-align:center; position:relative; }
.journey-step:not(:last-child)::after {
  content:''; position:absolute; top:24px; right:-1px;
  width:calc(100% - 48px); height:2px; background:var(--border); left:50%;
}
.step-icon {
  width:48px; height:48px;
  background:rgba(26,95,220,0.1); border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; margin:0 auto 12px; position:relative; z-index:1;
}
.step-title { font-size:13px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.step-desc  { font-size:11px; color:var(--muted); line-height:1.5; }
.timeline   { position:relative; padding-left:40px; }
.timeline::before {
  content:''; position:absolute; left:6px; top:0; bottom:0;
  width:2px; background:var(--border);
}
.timeline-item  { position:relative; margin-bottom:36px; }
.timeline-dot   {
  position:absolute; left:-37px; top:4px;
  width:14px; height:14px; border-radius:50%;
  background:var(--blue); border:3px solid white; box-shadow:0 0 0 2px var(--blue);
}
.timeline-year  {
  display:inline-block; background:var(--blue); color:white;
  font-size:11px; font-weight:700; padding:3px 10px; border-radius:20px; margin-bottom:8px;
}
.timeline-item h3 { font-size:16px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.timeline-item p  { font-size:13px; color:var(--muted); line-height:1.6; }
.values-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:40px;
}
.value-card {
  padding:32px; border-radius:14px;
  border:1px solid var(--border); text-align:center; transition:all 0.2s;
}
.value-card:hover { border-color:var(--blue); box-shadow:var(--shadow); }
.value-icon {
  width:60px; height:60px; border-radius:50%;
  background:var(--blue); display:flex; align-items:center; justify-content:center;
  font-size:26px; margin:0 auto 16px;
}
.value-card h3 { font-size:17px; font-weight:700; color:var(--navy); margin-bottom:10px; }
.value-card p  { font-size:13px; color:var(--muted); line-height:1.7; }
.offices-grid  { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:40px; }
.office-card   { border-radius:14px; border:1.5px solid var(--border); padding:28px; text-align:center; transition:all 0.2s; }
.office-card.hq{ border-color:var(--blue); }
.office-card:hover { border-color:var(--blue); box-shadow:var(--shadow); }
.office-flag   { font-size:44px; margin-bottom:12px; }
.office-hq     {
  font-size:10px; font-weight:700; background:var(--blue); color:white;
  padding:2px 10px; border-radius:20px; display:inline-block; margin-bottom:8px;
}
.office-card h3 { font-size:17px; font-weight:800; color:var(--navy); margin-bottom:4px; }
.office-card .city { font-size:12px; color:var(--muted); margin-bottom:16px; }
.office-card .contact-detail {
  font-size:12px; color:var(--muted);
  display:flex; align-items:center; justify-content:center; gap:6px; margin-bottom:6px;
}
.office-card .contact-detail a { color:var(--blue); }

/* ===================================================
   SERVICES PAGE
=================================================== */
.services-cards {
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px; padding:60px 80px;
}
.service-card {
  border-radius:14px; border:1px solid var(--border); overflow:hidden; transition:all 0.25s;
}
.service-card:hover { border-color:var(--blue); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.service-card-img {
  height:160px; display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:10px; position:relative; background:#f0f4ff;
}
.service-card-img::after { display:none; }
.service-card-icon {
  width:80px; height:80px; border-radius:20px;
  display:flex; align-items:center; justify-content:center;
  font-size:40px; box-shadow:0 4px 16px rgba(0,0,0,0.08);
}
.svc-hotel     .service-card-icon { background:linear-gradient(135deg,#e8f4fd,#c8e6f9); }
.svc-transport .service-card-icon { background:linear-gradient(135deg,#fff3e0,#ffe0b2); }
.svc-visa      .service-card-icon { background:linear-gradient(135deg,#e8eaf6,#c5cae9); }
.svc-mice      .service-card-icon { background:linear-gradient(135deg,#fce4ec,#f8bbd0); }
.svc-holiday   .service-card-icon { background:linear-gradient(135deg,#e8f5e9,#c8e6c9); }
.svc-support   .service-card-icon { background:linear-gradient(135deg,#f3e5f5,#e1bee7); }
.svc-hotel     { background:#eef6ff; }
.svc-transport { background:#fff8f0; }
.svc-visa      { background:#f0f0ff; }
.svc-mice      { background:#fff0f5; }
.svc-holiday   { background:#f0fff4; }
.svc-support   { background:#faf0ff; }
.service-card-body { padding:24px; }
.service-card-body h3 { font-size:18px; font-weight:800; color:var(--navy); margin-bottom:10px; }
.service-card-body p  { font-size:13px; color:var(--muted); margin-bottom:16px; line-height:1.6; }
.service-features     { margin-bottom:20px; }
.service-feature {
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:var(--text); margin-bottom:7px;
}
.feature-dot  { width:8px; height:8px; border-radius:50%; background:var(--blue); flex-shrink:0; }
.service-learn{ color:var(--blue); font-size:13px; font-weight:700; display:flex; align-items:center; gap:4px; }
.service-learn:hover { gap:8px; }

/* ===================================================
   CONTACT PAGE
=================================================== */
.contact-grid {
  display:grid; grid-template-columns:1fr 1.6fr; gap:50px; padding:60px 80px;
}
.contact-info h2 { font-size:26px; font-weight:800; color:var(--navy); margin-bottom:8px; }
.contact-info h2 span { color:var(--blue); }
.contact-info > p { font-size:14px; color:var(--muted); margin-bottom:32px; line-height:1.7; }
.contact-item { display:flex; gap:16px; margin-bottom:24px; align-items:flex-start; }
.contact-item-icon {
  width:44px; height:44px; flex-shrink:0;
  background:rgba(26,95,220,0.08); border-radius:10px;
  display:flex; align-items:center; justify-content:center; font-size:18px;
}
.contact-item h4  { font-size:13px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.contact-item p   { font-size:13px; color:var(--muted); }
.contact-item a   { color:var(--blue); font-size:13px; }
.contact-form {
  background:white; border-radius:16px; padding:36px;
  box-shadow:var(--shadow-lg); border:1px solid var(--border);
}
.contact-form h2 { font-size:22px; font-weight:800; color:var(--navy); margin-bottom:6px; }
.contact-form h2 span { color:var(--blue); }
.contact-form > p { font-size:13px; color:var(--muted); margin-bottom:24px; }
.form-row      { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.form-group    { display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.form-group label { font-size:12px; font-weight:600; color:var(--text); }
.form-input {
  padding:11px 14px; border:1.5px solid var(--border); border-radius:8px;
  font-size:13px; font-family:'Inter',sans-serif; color:var(--text); outline:none; transition:border-color 0.2s;
}
.form-input:focus { border-color:var(--blue); }
.form-select {
  padding:11px 14px; border:1.5px solid var(--border); border-radius:8px;
  font-size:13px; font-family:'Inter',sans-serif; color:var(--text); outline:none; background:white; cursor:pointer;
}
.form-textarea { resize:vertical; min-height:100px; }
.form-checkbox {
  display:flex; align-items:center; gap:8px;
  font-size:12px; color:var(--muted); margin-bottom:18px; cursor:pointer;
}
.form-checkbox a { color:var(--blue); }
.form-submit {
  width:100%; background:var(--blue); color:white;
  padding:14px; border-radius:8px; font-weight:700; font-size:14px;
  border:none; cursor:pointer; transition:all 0.2s;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.form-submit:hover { background:var(--blue2); }
.map-container {
  margin:0 80px 60px; border-radius:14px; overflow:hidden;
  border:1px solid var(--border); height:300px;
  background:linear-gradient(135deg,#e8f4fd,#d0e8f8);
  display:flex; align-items:center; justify-content:center; position:relative;
}
.map-pin { text-align:center; z-index:2; }
.map-pin h3 { font-size:18px; font-weight:700; color:var(--navy); }
.map-pin p  { font-size:13px; color:var(--muted); }
.map-icon   { font-size:50px; margin-bottom:8px; }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width:1200px) {
  .dest-grid           { grid-template-columns:repeat(4,1fr); }
  .services-icon-grid  { grid-template-columns:repeat(3,1fr); }
  .stats-counter       { grid-template-columns:repeat(3,1fr); }
  .why-partners-section{ grid-template-columns:1fr; gap:48px; }
  .partners-grid       { grid-template-columns:repeat(4,1fr); }
}
@media (max-width:900px) {
  .navbar  { padding:0 20px; }
  .hero    { grid-template-columns:1fr; padding:40px 30px; }
  .hero-right { display:none; }
  .features-bar { padding:20px 30px 0; }
  .features-inner { grid-template-columns:repeat(2,1fr); }
  .search-wrap { padding:0 30px; }
  .dest-section { padding:50px 30px; }
  .dest-grid   { grid-template-columns:repeat(2,1fr); }
  .section     { padding:50px 30px; }
  .dmc-grid    { grid-template-columns:repeat(2,1fr); padding:0 30px 60px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:30px; }
  .contact-grid{ grid-template-columns:1fr; padding:40px 30px; }
  .why-partners-section { padding:50px 30px; grid-template-columns:1fr; gap:40px; }
  .stats-counter{ grid-template-columns:repeat(2,1fr); padding:40px 30px; }
  .cta-banner  { padding:36px 30px; flex-direction:column; text-align:center; }
}

/* =====================================================
   ITINERARY PAGE
===================================================== */
.itin-hero {
  background: linear-gradient(140deg,var(--navy) 0%,var(--navy2) 100%);
  padding: 80px 80px 60px;
  position: relative; overflow: hidden;
}
.itin-hero::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,0.04) 1px,transparent 1px);
  background-size:30px 30px;
}
.itin-hero-content { position:relative; z-index:2; max-width:860px; }
.itin-back {
  display:inline-flex; align-items:center; gap:6px;
  color:rgba(255,255,255,0.6); font-size:13px; font-weight:600;
  margin-bottom:20px; cursor:pointer; transition:color 0.2s;
}
.itin-back:hover { color:#fff; }
.itin-flag { font-size:40px; margin-bottom:12px; }
.itin-title { font-size:42px; font-weight:900; color:#fff; line-height:1.15; margin-bottom:8px; }
.itin-duration {
  display:inline-block; background:var(--blue); color:#fff;
  font-size:13px; font-weight:700; padding:6px 16px; border-radius:20px; margin-bottom:16px;
}
.itin-destinations { color:rgba(255,255,255,0.75); font-size:14px; margin-bottom:24px; }
.itin-highlights {
  display:flex; flex-wrap:wrap; gap:10px;
}
.itin-hl {
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.18);
  color:#fff; font-size:12px; font-weight:600; padding:5px 12px; border-radius:20px;
}
.itin-meta-bar {
  display:flex; gap:32px; padding:20px 80px;
  background:var(--navy3); border-bottom:1px solid rgba(255,255,255,0.06);
}
.itin-meta-item { color:rgba(255,255,255,0.8); font-size:13px; }
.itin-meta-item strong { color:#fff; display:block; font-size:14px; margin-bottom:2px; }

.itin-body {
  max-width:900px; margin:0 auto; padding:60px 40px;
}
.itin-section-title {
  font-size:22px; font-weight:800; color:var(--navy);
  margin-bottom:32px; padding-bottom:12px;
  border-bottom:2px solid var(--border);
}
.itin-timeline { position:relative; }
.itin-timeline::before {
  content:''; position:absolute; left:28px; top:0; bottom:0;
  width:2px; background:var(--border);
}
.itin-day {
  display:flex; gap:24px; margin-bottom:28px; position:relative;
}
.itin-day-badge {
  flex-shrink:0; width:58px; height:58px;
  background:var(--blue); color:#fff; border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-size:10px; font-weight:700; line-height:1.2;
  box-shadow:0 0 0 4px #fff, 0 0 0 6px var(--border);
  position:relative; z-index:2;
}
.itin-day-badge span { font-size:14px; font-weight:900; }
.itin-day-card {
  flex:1; background:#fff; border:1.5px solid var(--border);
  border-radius:14px; padding:20px 24px;
  box-shadow:0 2px 12px rgba(0,0,0,0.04); transition:box-shadow 0.2s;
}
.itin-day-card:hover { box-shadow:0 4px 20px rgba(0,0,0,0.09); }
.itin-day-header {
  display:flex; align-items:flex-start; justify-content:space-between;
  margin-bottom:8px; gap:12px;
}
.itin-day-title { font-size:16px; font-weight:800; color:var(--navy); line-height:1.3; }
.itin-day-loc {
  flex-shrink:0; font-size:11px; color:var(--blue); font-weight:700;
  background:rgba(26,95,220,0.08); padding:3px 10px; border-radius:12px;
  white-space:nowrap;
}
.itin-day-desc { font-size:13px; color:var(--text); line-height:1.65; margin-bottom:12px; }
.itin-day-footer {
  display:flex; flex-wrap:wrap; gap:8px; font-size:11px; font-weight:600;
}
.itin-meal-tag {
  background:rgba(0,180,216,0.1); color:var(--cyan); border:1px solid rgba(0,180,216,0.2);
  padding:3px 10px; border-radius:10px;
}
.itin-stay-tag {
  background:rgba(26,95,220,0.08); color:var(--blue); border:1px solid rgba(26,95,220,0.15);
  padding:3px 10px; border-radius:10px;
}

/* ── ACCORDION / DROPDOWN ── */
.itin-day-card { cursor:default; }
.itin-day-toggle {
  display:flex; align-items:center; justify-content:space-between;
  cursor:pointer; user-select:none; gap:12px; padding-bottom:10px;
  border-bottom:1.5px solid var(--border);
  transition:border-color 0.2s;
}
.itin-day-toggle:hover .itin-day-title { color:var(--blue); }
.itin-day-toggle-left { flex:1; }
.itin-day-toggle-right {
  display:flex; flex-direction:column; align-items:flex-end; gap:6px; flex-shrink:0;
}
.itin-day-arrow {
  width:30px; height:30px; background:var(--gray); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; color:var(--blue); font-weight:900;
  transition:transform 0.35s ease, background 0.2s;
  flex-shrink:0;
}
.itin-day-card.open .itin-day-arrow {
  transform:rotate(180deg); background:var(--blue); color:#fff;
}
.itin-day-card.open .itin-day-toggle { border-color:var(--blue); }
.itin-day-body {
  max-height:0; overflow:hidden;
  transition:max-height 0.4s ease, padding 0.3s ease;
  padding-top:0;
}
.itin-day-card.open .itin-day-body {
  max-height:900px; padding-top:16px;
}
.itin-day-overview {
  font-size:12px; color:var(--muted); font-weight:600; margin-top:4px;
  display:flex; flex-wrap:wrap; gap:6px; align-items:center;
}
.itin-day-overview span { color:var(--blue); }

/* Day body two-column layout */
.itin-day-body-inner {
  display:flex; gap:20px; align-items:flex-start;
}
.itin-day-body-text { flex:1; min-width:0; }
.itin-day-img-wrap {
  width:260px; flex-shrink:0;
  border-radius:12px; overflow:hidden;
  box-shadow:0 4px 16px rgba(0,0,0,0.10);
  position:sticky; top:80px;
}
.itin-day-img-wrap img {
  width:100%; height:200px; object-fit:cover; display:block;
  transition:transform 0.4s ease;
}
.itin-day-img-wrap:hover img { transform:scale(1.04); }
.itin-day-img-caption {
  background:var(--navy); color:rgba(255,255,255,0.8);
  font-size:11px; font-weight:600; padding:7px 12px;
  display:flex; align-items:center; gap:5px;
}

/* Expand All button */
.itin-expand-all-btn {
  display:inline-flex; align-items:center; gap:6px;
  background:#fff; border:1.5px solid var(--blue); color:var(--blue);
  font-size:12px; font-weight:700; padding:7px 16px; border-radius:20px;
  cursor:pointer; transition:all 0.2s; white-space:nowrap;
}
.itin-expand-all-btn:hover { background:var(--blue); color:#fff; }
.itin-section-header {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:32px; padding-bottom:12px; border-bottom:2px solid var(--border);
}
.itin-section-header .itin-section-title { margin-bottom:0; padding-bottom:0; border-bottom:none; }

@media(max-width:700px) {
  .itin-day-body-inner { flex-direction:column; }
  .itin-day-img-wrap { width:100%; position:static; }
  .itin-day-img-wrap img { height:180px; }
}

/* Detail sections inside accordion */
.itin-detail-section { margin-bottom:14px; }
.itin-detail-section:last-child { margin-bottom:0; }
.itin-detail-time {
  font-size:11px; font-weight:800; color:var(--blue); letter-spacing:0.5px;
  text-transform:uppercase; margin-bottom:6px; display:flex; align-items:center; gap:5px;
}
.itin-detail-list {
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:5px;
}
.itin-detail-list li {
  font-size:13px; color:var(--text); line-height:1.55;
  padding-left:16px; position:relative;
}
.itin-detail-list li::before {
  content:'→'; position:absolute; left:0; color:var(--blue); font-size:11px; font-weight:700;
}
.itin-detail-tip {
  margin-top:12px; background:rgba(26,95,220,0.05);
  border-left:3px solid var(--blue); border-radius:0 8px 8px 0;
  padding:8px 12px; font-size:12px; color:var(--text); line-height:1.5;
}
.itin-detail-tip strong { color:var(--blue); }

.itin-not-found {
  text-align:center; padding:80px 40px; color:var(--muted);
}
.itin-not-found h2 { color:var(--navy); font-size:28px; margin-bottom:12px; }

/* No-results message for search */
.no-results-msg {
  display:none; grid-column:1/-1; text-align:center;
  padding:60px 20px; color:var(--muted); font-size:15px;
}
.no-results-msg h3 { color:var(--navy); font-size:20px; margin-bottom:8px; }

@media(max-width:900px) {
  .itin-hero { padding:50px 30px 40px; }
  .itin-meta-bar { padding:16px 30px; flex-wrap:wrap; gap:16px; }
  .itin-body { padding:40px 20px; }
  .itin-timeline::before { left:20px; }
  .itin-day-badge { width:42px; height:42px; font-size:9px; }
  .itin-day-badge span { font-size:11px; }
  .itin-title { font-size:28px; }
}

/* ===================================================
   HAMBURGER BUTTON  (hidden on desktop)
=================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 36px; height: 24px;
  background: none; border: none;
  cursor: pointer; padding: 0;
  flex-shrink: 0; z-index: 1001;
}
.hamburger span {
  display: block; height: 3px; width: 100%;
  background: var(--navy); border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }

/* mobile-only Partner link inside the slide menu */
.nav-cta-mobile { display: none !important; }

/* ===================================================
   MOBILE NAV  —  @768px  (hamburger appears)
=================================================== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-cta   { display: none !important; }

  /* slide-in panel from the right */
  .nav-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(290px, 88vw);
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 16px 32px;
    box-shadow: -6px 0 40px rgba(0,0,0,0.18);
    gap: 2px;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                visibility 0s linear 0.3s;
    visibility: hidden;
  }
  .nav-menu.mobile-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                visibility 0s linear 0s;
  }
  .nav-link {
    font-size: 15px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-link.active::after { display: none; }

  /* Show Partner CTA inside mobile menu */
  .nav-cta-mobile {
    display: flex !important;
    margin-top: 14px;
    justify-content: center;
    background: var(--blue) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 13px 20px !important;
    border-bottom: none !important;
    font-weight: 700;
  }

  /* Overlay behind the panel */
  .nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.45); z-index: 998;
  }
  .nav-overlay.active { display: block; }
}

/* ===================================================
   MOBILE  —  @480px  (single-column layouts)
=================================================== */
@media (max-width: 480px) {

  /* Navbar */
  .navbar { padding: 0 16px; height: 62px; }
  .logo-img { height: 36px; }

  /* Hero */
  .hero { padding: 28px 16px 36px; min-height: auto; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 13px; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; justify-content: center; }
  .hero-trust { gap: 10px; flex-wrap: wrap; }
  .hero-trust-item { font-size: 11px; }

  /* Search bar */
  .search-wrap { padding: 0 12px; margin-top: -14px; }
  .search-bar { margin: 14px 12px; flex-direction: column; gap: 10px; padding: 14px; border-radius: 12px; }
  .search-wrap .search-bar { margin: 0; }
  .search-input { min-width: 0; width: 100%; }
  .search-select { width: 100%; }
  .search-btn { width: 100%; justify-content: center; padding: 12px; }

  /* Features bar */
  .features-bar { padding: 12px 12px 0; }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item { padding: 16px 8px; }
  .feature-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 8px; }
  .feature-title { font-size: 11px; }
  .feature-sub { display: none; }

  /* Destination section */
  .dest-section { padding: 28px 12px; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dest-card { height: 155px; }
  .dest-name { font-size: 12px; }
  .dest-country { display: none; }
  .dest-header h2 { font-size: 17px; }
  .view-all { font-size: 12px; }

  /* Services icon grid */
  .services-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
  .svc-icon-item { padding: 18px 10px; }
  .svc-icon { width: 42px; height: 42px; font-size: 20px; margin-bottom: 10px; }
  .svc-title { font-size: 11px; }
  .svc-desc { display: none; }

  /* General sections */
  .section { padding: 28px 16px; }
  .section-title { font-size: 22px; }
  .section-sub { font-size: 13px; }

  /* Override inline grid styles on about journey section */
  .section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Stats counter — 2 columns */
  .stats-counter { grid-template-columns: 1fr 1fr; padding: 24px 10px; gap: 0; }
  .counter-item { padding: 16px 6px; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
  .counter-item:nth-child(2n) { border-right: none; }
  .counter-item:last-child:nth-child(odd) { grid-column: span 2; border-right: none; }
  .counter-num { font-size: 26px; }
  .counter-label { font-size: 10px; }
  .counter-icon { font-size: 20px; margin-bottom: 4px; }

  /* CTA Banner */
  .cta-banner { padding: 24px 16px; gap: 16px; }
  .cta-left { flex-direction: column; gap: 8px; }
  .cta-text h3 { font-size: 17px; }
  .cta-text p { font-size: 12px; }
  .btn-cta { width: 100%; justify-content: center; font-size: 13px; padding: 13px 20px; }

  /* Footer */
  .footer { padding: 32px 16px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; padding-bottom: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Page Hero (inner pages) */
  .page-hero { padding: 32px 16px 28px; min-height: auto; }
  .page-hero h1 { font-size: 24px; }
  .page-hero p { font-size: 13px; max-width: 100%; }
  .page-hero-badges { gap: 8px; }
  .page-hero-badge { font-size: 11px; padding: 5px 10px; }

  /* DMC Grid (international / domestic) */
  .dmc-grid { grid-template-columns: 1fr; padding: 0 12px 32px; gap: 16px; }

  /* Contact page */
  .contact-grid { padding: 20px 14px; gap: 24px; }
  .contact-form { padding: 22px 14px; border-radius: 12px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-container { margin: 0 12px 28px; height: 200px; border-radius: 10px; }

  /* Services page cards */
  .services-cards { grid-template-columns: 1fr; padding: 20px 14px; gap: 16px; }

  /* About page */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
  .value-card { padding: 18px 12px; }
  .value-icon { width: 46px; height: 46px; font-size: 20px; margin-bottom: 10px; }
  .value-card h3 { font-size: 14px; margin-bottom: 6px; }
  .value-card p { font-size: 12px; }
  .offices-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
  .office-card { padding: 18px 10px; }
  .office-flag { font-size: 30px; margin-bottom: 8px; }
  .office-card h3 { font-size: 14px; }

  /* Why Partners section */
  .why-partners-section { padding: 28px 14px; gap: 28px; }
  .why-heading { font-size: 20px; }
  .why-two-col { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Itinerary page */
  .itin-hero { padding: 26px 14px 22px; }
  .itin-title { font-size: 20px; }
  .itin-flag { font-size: 30px; margin-bottom: 8px; }
  .itin-meta-bar { padding: 12px 14px; flex-direction: column; gap: 8px; }
  .itin-body { padding: 20px 10px; }
  .itin-timeline::before { left: 14px; }
  .itin-day { gap: 12px; }
  .itin-day-badge { width: 30px; height: 30px; font-size: 7px; }
  .itin-day-badge span { font-size: 9px; }
  .itin-day-card { padding: 12px; }
  .itin-day-title { font-size: 13px; }
  .itin-day-desc { font-size: 12px; }
  .itin-section-title { font-size: 16px; }
  .itin-section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .itin-expand-all-btn { font-size: 11px; }

  /* Buttons */
  .btn-primary, .btn-outline { font-size: 13px; padding: 11px 20px; }
}
