:root {
  --navy-900: #1a365d;
  --navy-800: #2d3748;
  --slate-700: #40526d;
  --accent-gold: #f6ad55;
  --accent-orange: #ed8936;
  --white: #ffffff;
  --surface: #f6f9fc;
  --border: #d9e2ec;
  --shadow: 0 12px 32px rgba(26, 54, 93, 0.14);
  --radius: 12px;
  --radius-sm: 10px;
  --transition: all 0.32s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open sans", sans-serif;
  color: var(--navy-800);
  background: var(--white);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

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

main {
  padding-top: 88px;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section-space {
  padding: 5rem 0;
}

.section-muted {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.25;
}

.section-tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-orange);
}

.cards-grid {
  display: grid;
  gap: 1.2rem;
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(26, 54, 93, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.28rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.btn-gradient {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  box-shadow: 0 8px 18px rgba(237, 137, 54, 0.35);
}

.btn-gradient:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  border: 1px solid var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}

.btn-outline:hover {
  color: var(--white);
  background: var(--navy-900);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  outline: none;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy-900);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.12);
}

.form-message {
  margin-top: 0.5rem;
  min-height: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message.error {
  color: #c81e1e;
}

.form-message.success {
  color: #198754;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 226, 236, 0.65);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(26, 54, 93, 0.14);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), #355b87);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  font-size: 0.72rem;
  color: var(--slate-700);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  position: relative;
  font-weight: 500;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
  transition: width 0.25s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.search-toggle {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--navy-900);
  padding: 0.52rem 0.9rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
}

.header-search-panel {
  position: absolute;
  top: 92px;
  right: 4%;
  width: min(310px, 90vw);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
}

.header-search-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-suggestions {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.search-suggestions a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  color: var(--slate-700);
}

.search-suggestions a:hover {
  background: var(--surface);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
}

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 4s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 54, 93, 0.78), rgba(45, 55, 72, 0.56));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 1.4rem;
}

.hero-copy h1 {
  margin: 0.45rem 0 0.85rem;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  line-height: 1.12;
}

.hero-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-search {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-800);
}

.hero-search h3 {
  margin-bottom: 0.8rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.38rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--slate-700);
}

.hero-search-grid {
  margin: 0.8rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-floating {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.float-card {
  padding: 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
}

.float-card h4 {
  font-size: 1.8rem;
  color: var(--navy-900);
  margin-bottom: 0.3rem;
}

.float-card p {
  color: var(--slate-700);
}

.destination-card {
  position: relative;
  overflow: hidden;
}

.destination-card img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.destination-card .card-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.2rem;
  color: #fff;
  background: linear-gradient(to top, rgba(17, 29, 48, 0.84), rgba(17, 29, 48, 0.1));
}

.destination-card h3 {
  margin-bottom: 0.3rem;
}

.destination-card p {
  color: rgba(255, 255, 255, 0.88);
}

.package-price-card {
  position: relative;
  padding: 1.25rem;
}

.package-price-card .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-900);
}

.package-price-card .price {
  margin: 0.65rem 0 0.9rem;
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--navy-900);
}

.package-price-card ul {
  margin: 0 0 1.05rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.package-price-card li {
  color: var(--slate-700);
  font-size: 0.95rem;
}

.package-price-card li::before {
  content: "• ";
  color: var(--accent-orange);
  font-weight: 700;
}

.package-price-card.featured {
  border: 1px solid rgba(237, 137, 54, 0.45);
  transform: scale(1.02);
}

.why-card {
  padding: 1.1rem;
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.7rem;
  font-size: 0.86rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--slate-700));
}

.why-card h3 {
  margin-bottom: 0.4rem;
}

.why-card p {
  color: var(--slate-700);
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.testimonial-slide {
  display: none;
  padding: 1.35rem;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide p {
  margin-bottom: 0.8rem;
  color: var(--slate-700);
  font-size: 1.05rem;
}

.testimonial-slide h3 {
  margin-bottom: 0.2rem;
}

.testimonial-slide span {
  color: var(--accent-orange);
  font-weight: 600;
}

.carousel-controls {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy-900);
  cursor: pointer;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 0.75rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 11, 20, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 1050;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: min(900px, 92vw);
  max-height: 82vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.booking-wrap {
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.booking-wrap p {
  margin-top: 0.55rem;
  color: var(--slate-700);
}

.booking-form {
  display: grid;
  gap: 0.7rem;
}

.floating-field {
  position: relative;
}

.floating-field input,
.floating-field select {
  background: #fff;
  padding-top: 1rem;
}

.floating-field label {
  position: absolute;
  left: 0.85rem;
  top: 0.92rem;
  color: #65758a;
  font-size: 0.88rem;
  pointer-events: none;
  transition: var(--transition);
}

.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label,
.floating-field select:focus + label,
.floating-field select:valid + label {
  top: 0.25rem;
  font-size: 0.72rem;
}

.site-footer {
  color: #e2e8f0;
  background: linear-gradient(140deg, #10243f, #1a365d, #2d3748);
}

.footer-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding: 3rem 0 2rem;
}

.site-footer h3 {
  margin-bottom: 0.7rem;
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.social-icons {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.5rem;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.social-icons a:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

.newsletter-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1.2rem 0;
}

.newsletter-wrap h3 {
  margin-bottom: 0.6rem;
  color: #fff;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.newsletter-form input {
  flex: 1 1 230px;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 1rem 0;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(136.12deg, #57aeef 4.33%, #406ac7 94.12%);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 1100;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Exact header replica overrides */
main {
  padding-top: 0;
}

.site-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.scrolled {
  box-shadow: none;
}

.top-bar {
  background: #1a202c;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar-inner {
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-info {
  color: #fff;
  font-size: 13px;
}

.top-bar .social-icons {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.top-bar .social-icons a {
  border: 0;
  width: auto;
  height: auto;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: #1f2937;
  white-space: nowrap;
}

.logo-image {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 1.02rem;
}

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

.nav-menu {
  display: flex;
  gap: 2rem;
  font-weight: 500;
  color: #2d3748;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-inline: auto;
}

.nav-item {
  position: relative;
  color: #2d3748;
  transition: color 0.3s ease;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
  color: #ff6b35;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.menu-toggle {
  display: none;
}

/* ----- 2026 Design refresh overrides ----- */
:root {
  --brand-primary: #1f4fa3;
  --brand-primary-dark: #163a78;
  --brand-secondary: #2c79ff;
  --brand-accent: #f7931e;
  --ink-900: #12253f;
  --ink-700: #40526d;
  --ink-500: #697a91;
  --bg-soft: #f4f8ff;
  --line-soft: #d8e2f1;
  --panel: #ffffff;
  --radius-lg: 16px;
  --radius-md: 12px;
  --elev-1: 0 10px 24px rgba(18, 37, 63, 0.08);
  --elev-2: 0 18px 36px rgba(31, 79, 163, 0.14);
}

body {
  color: var(--ink-900);
  background: #ffffff;
}
section[id] {
  scroll-margin-top: 124px;
}

.section-space {
  padding: 3.5rem 0;
}

.section-muted {
  background: #e4ebf9 !important;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-tag {
  margin-bottom: 0.7rem;
  color: var(--brand-secondary);
  letter-spacing: 0.09em;
}

.section-heading h2 {
  color: var(--ink-900);
}

.section-heading p {
  margin-top: 0.65rem;
  max-width: 720px;
  color: var(--ink-700);
}

/* Keep title treatment consistent across homepage modules */
.section-heading h2,
.welcome-copy-block h2,
.welcome-subtitle h3 {
  color: #18345f;
  font-size: clamp(1.7rem, 2.45vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--elev-1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}

.card:hover {
  transform: translateY(-7px);
  border-color: #b6caea;
  box-shadow: var(--elev-2);
}

.btn {
  border-radius: 10px;
}

.btn-gradient,
.cta-button {
  background: linear-gradient(135deg, #ff8a1f 0%, #f16829 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(241, 104, 41, 0.28);
}

.btn-gradient:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(241, 104, 41, 0.36);
}

.btn-outline {
  border: 1px solid #c1d1e8;
  color: var(--brand-primary-dark);
}

.btn-outline:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 10px 22px rgba(31, 79, 163, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(31, 79, 163, 0.32);
}

input,
select,
textarea {
  border: 1px solid #c7d5ea;
  border-radius: 10px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(44, 121, 255, 0.14);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  border-bottom: 1px solid rgba(209, 220, 238, 0.7);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(10, 31, 69, 0.12);
  border-color: rgba(188, 206, 233, 0.85);
}

.top-bar {
  background: #11233f;
  color: #dce8fb;
  font-size: 13px;
  padding: 7px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.contact-info {
  font-size: 12.8px;
  color: #dce8fb;
}

.social-strip {
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

.social-strip a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-strip a:hover {
  background: #ff8a1f;
  border-color: #ff8a1f;
  transform: translateY(-1px);
}

.main-header {
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  white-space: nowrap;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 8px 16px rgba(31, 79, 163, 0.26);
}

.logo-text-group {
  display: grid;
  gap: 0.08rem;
}

.logo-text-group strong {
  color: #1b2f4f;
  font-size: 0.98rem;
  line-height: 1.2;
}

.logo-text-group small {
  color: var(--ink-500);
  font-size: 0.72rem;
}

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

.nav-menu {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.nav-item {
  position: relative;
  color: #243a5d;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a1f, #f16829);
  transition: width 0.25s ease;
}

.nav-item:hover,
.nav-item.active {
  color: #e66f22;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.cta-button {
  padding: 0.72rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

/* Hero */
.hero {
  min-height: calc(100vh - 40px);
}

.hero-overlay {
  background: linear-gradient(115deg, rgba(15, 41, 79, 0.82), rgba(24, 66, 122, 0.62));
}

.hero-content {
  min-height: calc(100vh - 130px);
  gap: 2rem;
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.85rem);
  line-height: 1.1;
}

.hero-copy p {
  font-size: 1.02rem;
}

.hero-search {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d2deef;
  padding: 1.35rem;
}

.hero-search h3 {
  font-size: 1.2rem;
}

.hero-floating {
  margin-top: -40px;
}

.float-card {
  border-color: #d4dff0;
}

.float-card h4 {
  color: var(--brand-primary-dark);
}

.destination-card {
  border-radius: var(--radius-lg);
}

.destination-card img {
  border-radius: var(--radius-lg);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.destination-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.destination-card .card-overlay {
  padding: 1.3rem;
}

.package-price-card {
  padding: 1.4rem;
}

.package-price-card .price {
  color: var(--brand-primary-dark);
}

.package-price-card.featured {
  border-color: rgba(241, 104, 41, 0.48);
  background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
}

.why-card {
  padding: 1.35rem;
}

.why-icon {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.testimonial-carousel {
  min-height: 270px;
}

.testimonial-slide {
  padding: 1.6rem;
}

.testimonial-slide p {
  font-size: 1.04rem;
}

.carousel-btn {
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #f2f7ff;
  border-color: #c5d6ef;
  transform: translateY(-2px);
}

.booking-wrap {
  border: 1px solid #cddbec;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  padding: 1.65rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #eff5ff 0%, #e8f0fc 100%);
  color: #284062;
  border-top: 1px solid #cedbee;
}

.footer-grid {
  padding: 3rem 0 2.2rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.site-footer h3 {
  margin-bottom: 0.72rem;
  color: #17365f;
  font-size: 1.02rem;
}

.site-footer p,
.site-footer a {
  color: #3f5677;
}

.footer-links {
  gap: 0.5rem;
}

.footer-links a {
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--brand-primary);
  transform: translateX(2px);
}

.social-icons {
  margin-top: 0.8rem;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #bfd0e8;
  color: #23456f;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.28s ease;
}

.social-icons a:hover {
  background: linear-gradient(120deg, #2a6ff0, #1f4fa3);
  color: #fff;
  border-color: #2a6ff0;
  transform: translateY(-2px);
}

.footer-newsletter p {
  margin-bottom: 0.65rem;
}

.newsletter-form {
  flex-wrap: nowrap;
}

.newsletter-form input {
  border-color: #c0d1e8;
  background: #fff;
  color: #223a5a;
}

.newsletter-form input::placeholder {
  color: #7488a5;
}

.footer-divider {
  border-top: 1px solid #c8d7eb;
}

.footer-bottom {
  border-top: 0;
  text-align: left;
  padding: 1rem 0 1.2rem;
}

/* Inner pages */
.inner-hero {
  background: radial-gradient(circle at 8% 20%, #2c79ff 0%, #1f4fa3 45%, #163a78 100%);
  color: #fff;
}

.inner-hero h1 {
  margin: 0.4rem 0 0.65rem;
  font-size: clamp(1.9rem, 4vw, 3.05rem);
}

.inner-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 700px;
}

.inner-hero .section-tag {
  color: rgba(255, 255, 255, 0.82);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.cards-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.image-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.info-card,
.contact-card,
.contact-info,
.map-placeholder,
.filters {
  padding: 1.3rem;
}

.grid {
  display: grid;
}

.team-card img,
.package-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.team-card p,
.package-card .meta {
  color: var(--ink-700);
}

.package-card .price {
  margin: 0.4rem 0 0.95rem;
  color: var(--brand-primary-dark);
  font-size: 1.24rem;
  font-weight: 700;
}

.filter-buttons {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-btn {
  border: 1px solid #c1d3ea;
  border-radius: 999px;
  background: #fff;
  color: #234162;
  padding: 0.45rem 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: #2c79ff;
  color: #fff;
  background: #2c79ff;
}

.contact-form {
  display: grid;
  gap: 0.45rem;
}

.contact-form label {
  margin-top: 0.45rem;
  color: #334f73;
  font-size: 0.92rem;
  font-weight: 600;
}

.map-box {
  margin-top: 0.7rem;
  min-height: 230px;
  border: 1px dashed #c2d4ec;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #587295;
  background: linear-gradient(135deg, #f8fbff, #edf3fd);
}

/* Instabiz-inspired travel header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1300;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafe 100%);
  border-bottom: 1px solid rgba(217, 225, 238, 0.85);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 28px rgba(16, 40, 78, 0.11);
  border-color: rgba(198, 212, 232, 0.92);
}

.main-header {
  background: transparent;
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1f4fa3 0%, #2c79ff 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(31, 79, 163, 0.28);
}

.logo-text-group strong {
  color: #1f3457;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.logo-text-group small {
  color: #5b6f8f;
  font-size: 0.74rem;
  font-weight: 500;
}

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

.nav-menu {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav-item {
  position: relative;
  color: #2a405f;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a1f, #f16829);
  transition: width 0.25s ease;
}

.nav-item:hover,
.nav-item.active {
  color: #f07228;
  transform: translateY(-1px);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

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

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.62rem;
  border-radius: 10px;
  border: 1px solid #d5dfed;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.support-link:hover {
  border-color: #b9cbe4;
  box-shadow: 0 8px 18px rgba(18, 54, 106, 0.13);
  transform: translateY(-1px);
}

.support-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #edf4ff;
  color: #1f4fa3;
  font-size: 0.95rem;
  font-weight: 700;
}

.support-text {
  display: grid;
  gap: 0.05rem;
}

.support-text small {
  color: #7186a6;
  font-size: 0.67rem;
  line-height: 1.05;
}

.support-text strong {
  color: #1f3457;
  font-size: 0.83rem;
  line-height: 1.1;
  font-weight: 700;
}

.cta-button {
  padding: 0.72rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.07);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #1f4fa3;
  border-radius: 999px;
  transition: transform 0.26s ease, opacity 0.26s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Homepage redesign modules */
.logo-image-wrap {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(31, 79, 163, 0.15);
  overflow: hidden;
}

.logo-image {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

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

.metric-grid .card,
.package-module-grid .card,
.group-module-grid .card,
.destination-cluster-grid .card,
.honeymoon-grid .card,
.trend-grid .card,
.accreditation-grid .card,
.blog-grid .card {
  border-radius: 14px;
  border: 1px solid #d8e3f3;
  box-shadow: 0 10px 24px rgba(13, 38, 73, 0.08);
}

.metric-card,
.module-card,
.group-tour-card,
.destination-cluster-card,
.honeymoon-card,
.trend-card,
.accreditation-card,
.blog-card {
  padding: 1.2rem;
}

.metric-card h3,
.module-card h3,
.group-tour-card h3,
.destination-cluster-card h3,
.honeymoon-card h3,
.trend-card h3,
.blog-card h3 {
  margin-bottom: 0.48rem;
  color: #1f3558;
  font-size: 1.06rem;
  line-height: 1.35;
}

.module-count {
  color: #f16829;
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.trend-card p {
  color: #5f7496;
  font-size: 0.9rem;
}

.trend-card strong {
  display: inline-block;
  margin-top: 0.52rem;
  color: #1f4fa3;
  font-size: 0.95rem;
}

.deals-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.deal-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 0.92rem;
  border-radius: 999px;
  border: 1px solid #cedcf1;
  background: #fff;
  color: #1f3d65;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.deal-chip:hover {
  border-color: #f16829;
  color: #f16829;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 58, 109, 0.12);
}

.accreditation-card {
  display: grid;
  place-items: center;
  min-height: 86px;
  font-weight: 700;
  color: #27456f;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.blog-card {
  display: grid;
  gap: 0.45rem;
}

.text-link {
  color: #1f4fa3;
  font-weight: 700;
  font-size: 0.9rem;
}

.text-link:hover {
  color: #f16829;
}

.branch-list {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.branch-list span {
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  background: #edf4ff;
  color: #20446f;
  font-size: 0.79rem;
  font-weight: 600;
}

/* Header alignment closer to Instabiz reference */
.site-header {
  background: #f4f6fc;
  border-bottom: 1px solid #e4e9f5;
}

.site-header.scrolled {
  background: rgba(244, 246, 252, 0.98);
  box-shadow: 0 8px 18px rgba(48, 71, 110, 0.12);
}

.header-inner {
  min-height: 74px;
}

.logo.logo-only {
  width: 170px;
  max-width: 35vw;
}

.logo-image-full {
  display: block;
  width: 100%;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  gap: 1.4rem;
}

.nav-menu {
  gap: 1.3rem;
}

.nav-item {
  font-size: 0.86rem;
  font-weight: 500;
  color: #2e3e58;
}

.header-actions {
  gap: 0.4rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid #c9d6eb;
  background: #ffffff;
  color: #24456f;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
}

.header-phone:hover {
  color: #1f5fd1;
  border-color: #9fb7db;
  box-shadow: 0 8px 18px rgba(34, 76, 139, 0.16);
  transform: translateY(-1px);
}

.header-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d9e0ee;
  background: #fff;
  color: #425b82;
  cursor: pointer;
  transition: all 0.25s ease;
}

.header-icon-btn:hover {
  border-color: #b8c8e2;
  transform: translateY(-1px);
}

.header-login-btn {
  padding: 0.58rem 1.35rem;
  border-radius: 999px;
  font-size: 0.86rem;
  background: linear-gradient(135deg, #2b73ea 0%, #1f5fd1 100%);
  box-shadow: 0 8px 18px rgba(40, 103, 215, 0.24);
}

.header-login-btn:hover {
  box-shadow: 0 12px 20px rgba(40, 103, 215, 0.32);
}

/* Module images */
.module-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.module-card,
.group-tour-card,
.destination-cluster-card,
.honeymoon-card,
.trend-card,
.accreditation-card,
.blog-card,
.deal-card {
  overflow: hidden;
}

.deals-grid .deal-card {
  padding: 0.95rem;
}

.deals-grid .deal-card h3 {
  margin: 0;
  color: #24456f;
  font-size: 0.98rem;
}

.accreditation-card {
  place-items: start;
}

.accreditation-card h3 {
  margin: 0;
  color: #27456f;
  font-size: 0.98rem;
}

/* Large visual banner like provided reference */
.hero-banner {
  min-height: 78vh;
}

.hero-banner .hero-overlay {
  background: linear-gradient(120deg, rgba(8, 20, 40, 0.34), rgba(9, 23, 43, 0.42));
}

.hero-banner-content {
  min-height: 68vh;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 84px;
  align-items: center;
  gap: 1rem;
}

.hero-banner-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-kicker {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  color: #ffc933;
  line-height: 0.75;
}

.hero-banner-copy h1 {
  margin: 0.1rem 0 0.72rem;
  font-size: clamp(2.1rem, 5.2vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #fff7e8;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
}

.hero-banner-copy p {
  margin: 0 auto;
  max-width: 640px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.hero-nav-btn {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 2px;
  background: transparent;
  color: #fff;
  font-size: 1.95rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hero-nav-btn:hover {
  background: rgba(10, 24, 42, 0.56);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.15);
}

/* Popular packages showcase (below banner) */
.popular-packages-showcase {
  padding-top: 2.4rem;
}

.popular-packages-showcase .section-heading {
  margin-bottom: 1rem;
}

.popular-packages-showcase .section-heading h2 {
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  color: #1f3558;
}

.popular-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.popular-package-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 220px;
}

.popular-package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.popular-package-card:hover img {
  transform: scale(1.04);
}

.popular-package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 32, 0.08) 18%, rgba(6, 16, 32, 0.55) 100%);
}

.popular-package-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.popular-package-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 500;
}

.tour-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.15rem 0.50rem;
  border-radius: 2px;
  background: #e7e7e5;
  color: #1c2f4d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.popular-package-btn {
  margin-top: 0.15rem;
  padding: 0.46rem 0.88rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2c79ff 0%, #1f4fa3 100%);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  width: fit-content;
  box-shadow: 0 8px 18px rgba(28, 79, 157, 0.28);
}

.popular-package-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(28, 79, 157, 0.36);
}

.popular-package-card-lg {
  grid-column: span 2;
  max-height: 400px;
}

.popular-package-card-lg .popular-package-overlay h3 {
  font-size: 2.2rem;
}

/* Stats section below popular package cards */
.stats-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-highlight-card {
  background: #fff;
  border: 1px solid #dee6f3;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(18, 45, 84, 0.07);
  padding: 1.3rem 1.1rem 1.05rem;
  text-align: center;
}

.stats-icon {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: #e0bc2d;
}

.stats-icon svg {
  width: 64px;
  height: 64px;
}

.stats-highlight-card h3 {
  margin: 0.4rem 0 0.55rem;
  color: #223a5d;
  font-size: 2.02rem;
  line-height: 1.15;
  font-weight: 500;
}

.stats-highlight-card p {
  margin: 0;
  color: #6d7f9a;
  font-size: 0.9rem;
  line-height: 1.55;
}

.certificate-banner-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dce5f2;
  box-shadow: 0 12px 26px rgba(16, 43, 84, 0.1);
}

.certificate-banner-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Welcome + stress-free section like GT reference */
.welcome-gt-section .container {
  max-width: 1200px;
}

.welcome-copy-block h2 {
  margin: 0 0 0.6rem;
  color: #1e3354;
  font-size: clamp(1.8rem, 2.7vw, 2.35rem);
  font-weight: 500;
}

.welcome-copy-block p {
  margin: 0 0 0.7rem;
  color: #5e708d;
  line-height: 1.65;
  font-size: 1rem;
}

.welcome-subtitle {
  margin-top: 1.2rem;
  margin-bottom: 0.9rem;
}

.welcome-subtitle h3 {
  margin: 0;
  color: #1f3558;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
}

.emi-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.95rem;
}

.emi-card {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.emi-card-media {
  background: #e8eef9;
  min-height: 0;
  display: block;
}

.emi-card-media img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  mix-blend-mode: normal;
  display: block;
}

.group-departures-banner-section .section-heading {
  margin-bottom: 0.85rem;
}

.group-departures-banner-section .section-heading h2 {
  margin: 0;
  color: #1f3558;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 500;
}

.group-departures-banner-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dce5f2;
  box-shadow: 0 10px 24px rgba(18, 45, 84, 0.1);
}

.group-departures-banner-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.premium-group-tours-section .section-heading {
  margin-bottom: 0.8rem;
}

.premium-group-tours-section .section-heading h2 {
  margin: 0;
  color: #1f3558;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 500;
}

.premium-group-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
}

.premium-group-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #dbe4f2;
}

.premium-group-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.premium-group-card:hover img {
  transform: scale(1.04);
}

.premium-group-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 14, 28, 0.08) 0%, rgba(5, 14, 28, 0.55) 54%, rgba(5, 14, 28, 0.16) 100%);
}

.premium-group-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.5rem 0.48rem 0.45rem;
  text-align: center;
  background: linear-gradient(135deg, rgb(70 121 209 / 95%), rgb(41 77 139 / 96%));
}

.premium-group-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-group-overlay h3 {
  margin: 0.2rem 0 0;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.premium-group-cta-wrap {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
}

.premium-group-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 2.1rem;
  border-radius: 2px;
  background: linear-gradient(135deg, #1f4fa3 0%, #2c79ff 100%);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.premium-group-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 9px 18px rgba(33, 83, 167, 0.28);
}

/* Happy clients strip */
.happy-clients-section .section-heading {
  margin-bottom: 0.8rem;
}

.happy-clients-section .section-heading h2 {
  margin: 0;
  color: #1f3558;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
}

.happy-clients-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.happy-client-card {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  border-radius: 16px;
}

.happy-client-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.happy-client-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 35, 52, 0.12) 4%, rgba(9, 35, 52, 0.28) 58%, rgba(8, 25, 42, 0.78) 100%);
}

.happy-client-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.58rem 0.55rem 0.7rem;
  background: linear-gradient(180deg, rgba(11, 35, 58, 0.2), rgba(11, 35, 58, 0.8));
}

.happy-client-overlay p {
  margin: 0 0 0.42rem;
  color: rgba(255, 255, 255, 0.93);
  font-size: 0.72rem;
  line-height: 1.45;
}

.happy-client-overlay span {
  color: #f6b746;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Enforce Inter across site */
body,
body * {
  font-family: "Open sans", sans-serif;
}

/* Trending tours + enquiry panel after happy clients */
.trending-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.trending-showcase-card {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(21, 49, 88, 0.1);
}

.trending-showcase-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  display: block;
}

.trending-showcase-body {
  padding: 0.52rem 0.58rem 0.65rem;
}

.trending-showcase-body small {
  display: block;
  color: #7a8ba5;
  font-size: 0.62rem;
  margin-bottom: 0.28rem;
}

.trending-showcase-body h3 {
  margin: 0 0 0.3rem;
  color: #223b5f;
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 500;
}

.trending-showcase-body p {
  margin: 0;
  color: #f16829;
  font-size: 0.73rem;
  font-weight: 700;
}

.enquiry-split-section {
  background:
    linear-gradient(180deg, #f4f2fb 0%, #eef3fb 55%, #e9f0fb 100%),
    url("https://www.svgrepo.com/show/530572/world-map.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, 86%;
  background-position: center, center;
}

.enquiry-split-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.stay-connected-panel {
  min-height: 420px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.05rem;
}

.stay-connected-panel h3 {
  margin: 0 0 0.3rem;
  color: #1e3559;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 700;
}

.stay-connect-item {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
}

.stay-connect-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1f4fa3;
  border: 1px solid #c8d7ee;
  background: #fff;
  font-size: 0.92rem;
}

.stay-connect-item a {
  color: #34547f;
  font-size: 1rem;
  font-weight: 500;
}

.dream-vacay-form-card {
  padding: 1rem 0.35rem;
}

.dream-vacay-form-card h3 {
  margin: 0 0 0.75rem;
  color: #1f3558;
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  font-weight: 700;
}

.dream-vacay-form {
  display: grid;
  gap: 0.45rem;
  max-width: 100%;
}

.dream-vacay-form input {
  border: 1px solid #c9d8ee;
  border-radius: 0;
  background: #ffffff;
  color: #233d63;
  padding: 0.62rem 0.65rem;
  font-size: 0.86rem;
}

.captcha-label {
  margin-top: 0.35rem;
  color: #1f3558;
  font-size: 0.86rem;
  font-weight: 700;
}

.captcha-label span {
  display: block;
  margin-top: 0.2rem;
  color: #3a5275;
  font-size: 0.78rem;
  font-weight: 600;
}

.dream-vacay-submit {
  margin-top: 0.15rem;
  border: 0;
  border-radius: 0;
  padding: 0.72rem 0.8rem;
  background: linear-gradient(135deg, #ff8a1f 0%, #f16829 100%);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dream-vacay-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(241, 104, 41, 0.28);
}

/* Testimonials + daily deals blocks after contact panel */
.testimonials-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.testimonial-showcase-card {
  position: relative;
  border: 0;
  border-radius: 16px;
  background: #fff;
  padding: 2.15rem 1.05rem 1.1rem;
  box-shadow: 0 14px 32px rgba(21, 49, 88, 0.1);
}

.testimonial-showcase-head {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 0.48rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.testimonial-showcase-head img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-showcase-head h3 {
  margin: 0;
  color: #1f3558;
  font-size: 0.8rem;
  font-weight: 600;
}

.testimonial-showcase-head p {
  margin: 0.05rem 0 0;
  color: #f2b401;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.testimonial-showcase-head span {
  color: #2f72dc;
  font-size: 1.3rem;
  line-height: 1;
}

.testimonial-showcase-text {
  margin: 0;
  color: #5a6f90;
  font-size: 0.74rem;
  line-height: 1.55;
}

.testimonials-showcase-dots {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.testimonials-showcase-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5dce8;
}

.testimonials-showcase-dots span.active {
  background: #2f72dc;
}

.daily-deals-poster-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

.daily-deal-poster {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  border-radius: 16px;
  border: 0;
  box-shadow: 0 14px 32px rgba(21, 49, 88, 0.12);
}

.daily-deal-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.daily-deal-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(43, 121, 255, 0.45) 0%, rgba(19, 67, 128, 0.76) 68%, rgba(8, 34, 72, 0.88) 100%);
}

.daily-deal-poster-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.56rem 0.5rem 0.52rem;
}

.daily-deal-poster-overlay h3 {
  margin: 0 0 0.4rem;
  color: #ffffff;
  font-size: 0.88rem;
  line-height: 1.24;
  font-weight: 700;
  text-transform: uppercase;
}

.daily-deal-poster-overlay p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.46rem;
  background: rgba(241, 104, 41, 0.95);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.daily-deals-poster-cta-wrap {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
}

.daily-deals-poster-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.54rem 2.1rem;
  border-radius: 2px;
  background: linear-gradient(135deg, #ff8a1f 0%, #f16829 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.daily-deals-poster-cta:hover {
  color: #fff;
}

/* Accreditation + latest blog + subscribe strips */
.accreditation-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.accreditation-logo-card {
  position: relative;
  min-height: 124px;
  border: 0;
  background: #fff;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.35rem 0.75rem 0.85rem;
}

.accreditation-logo-card .accreditation-name {
  color: #1e3354;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.15;
}

.accreditation-logo-card small {
  margin-top: 0.25rem;
  color: #627694;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.accreditation-strip-section .section-heading {
  margin-bottom: 1.2rem;
}

.accreditation-strip-section .section-heading h2 {
  color: #16335f;
}

.accreditation-logo-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #d5e2f3;
}

.accreditation-logo-card:hover {
  border-color: #b8cdeb;
}

/* Reusable seamless loop slider shell */
.loop-slider {
  display: block;
  overflow: hidden;
}

.loop-slider .loop-slider-track {
  display: flex;
  align-items: stretch;
  gap: 0.7rem;
  will-change: transform;
}

.loop-slider .loop-slider-item {
  min-width: 0;
}

.latest-blog-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.latest-blog-strip-card {
  border: 1px solid #d6e1f0;
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
}

.latest-blog-strip-card img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  display: block;
}

.latest-blog-strip-card h3 {
  margin: 0;
  padding: 0.58rem 0.54rem 0.62rem;
  color: #1e375b;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
}

.latest-blog-strip-cta-wrap {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
}

.latest-blog-strip-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.54rem 1.9rem;
  border-radius: 2px;
  background: linear-gradient(135deg, #ff8a1f 0%, #f16829 100%);
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.latest-blog-strip-cta:hover {
  color: #fff;
}

.updates-subscribe-strip {
  background: #f0f3f8;
  border-top: 1px solid #dce4f0;
  border-bottom: 1px solid #dce4f0;
}

.updates-subscribe-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.1rem;
}

.updates-copy {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.updates-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #ccd8ea;
  color: #5c7398;
  font-size: 1.05rem;
}

.updates-copy h3 {
  margin: 0;
  color: #1f3558;
  font-size: 1.5rem;
  font-weight: 700;
}

.updates-copy p {
  margin: 0.1rem 0 0;
  color: #6d7f99;
  font-size: 0.8rem;
}

.updates-subscribe-form {
  justify-self: end;
  width: min(430px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
}

.updates-subscribe-form input {
  border: 1px solid #c8d5ea;
  border-right: 0;
  border-radius: 0;
  padding: 0.72rem 0.65rem;
  font-size: 0.82rem;
}

.updates-subscribe-form button {
  border: 0;
  border-radius: 0;
  padding: 0 1rem;
  background: #1e3559;
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Instabiz-like visual polish without layout changes */
.trending-showcase-section,
.enquiry-split-section,
.testimonials-showcase-section,
.daily-deals-poster-section,
.accreditation-strip-section,
.latest-blog-strip-section,
.updates-subscribe-strip {
  position: relative;
}

.trending-showcase-section .section-heading h2,
.happy-clients-section .section-heading h2,
.testimonials-showcase-section .section-heading h2,
.daily-deals-poster-section .section-heading h2,
.accreditation-strip-section .section-heading h2,
.latest-blog-strip-section .section-heading h2 {
  color: #18345f;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.trending-showcase-card,
.testimonial-showcase-card,
.daily-deal-poster,
.accreditation-logo-card,
.latest-blog-strip-card,
.updates-subscribe-inner {
  border: 0;
  border-radius: 16px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.trending-showcase-card:hover,
.testimonial-showcase-card:hover,
.daily-deal-poster:hover,
.latest-blog-strip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(17, 46, 87, 0.14);
}

.trending-showcase-card,
.testimonial-showcase-card,
.latest-blog-strip-card {
  background: #fff;
}
.accreditation-logo-card{
  background: #f1f5ff;
}

.trending-showcase-body h3,
.latest-blog-strip-card h3 {
  color: #1d3b67;
}

.trending-showcase-body p {
  color: #1f5fd1;
}

.stay-connected-panel {
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(17, 46, 87, 0.1);
  padding: 1.2rem;
}

.dream-vacay-form-card {
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(17, 46, 87, 0.12);
  padding: 1.35rem 1.5rem 2.5rem;
}

.dream-vacay-form input {
  border-radius: 8px;
  border-color: #c7d7ed;
}

.dream-vacay-form input:focus {
  border-color: #2c79ff;
  box-shadow: 0 0 0 3px rgba(44, 121, 255, 0.14);
}

.testimonials-showcase-dots span.active {
  background: #2c79ff;
  transform: scale(1.15);
}

.daily-deal-poster::after {
  background: linear-gradient(145deg, rgba(31, 79, 163, 0.34) 0%, rgba(19, 67, 128, 0.78) 68%, rgba(8, 34, 72, 0.9) 100%);
}

.daily-deal-poster-overlay p {
  background: linear-gradient(135deg, #ff8a1f 0%, #f16829 100%);
  border-radius: 999px;
}

.daily-deals-poster-cta,
.latest-blog-strip-cta {
  background: linear-gradient(135deg, #1f4fa3 0%, #2c79ff 100%);
  box-shadow: 0 10px 20px rgba(31, 79, 163, 0.26);
}

.daily-deals-poster-cta:hover,
.latest-blog-strip-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(31, 79, 163, 0.34);
}

.updates-subscribe-strip {
  background: transparent;
  border: 0;
}

.updates-subscribe-inner {
  background: #eff5ff;
  min-height: 104px;
  padding: 0.75rem 1rem;
}

.updates-subscribe-form input {
  border-radius: 8px 0 0 8px;
}

.updates-subscribe-form button {
  background: linear-gradient(135deg, #1f4fa3 0%, #2c79ff 100%);
  border-radius: 0 8px 8px 0;
  padding: 0 1.2rem;
}

main > section.reveal:nth-of-type(even):not(.hero) {
  background-color: rgba(247, 250, 255, 0.65);
}

main > section.reveal:nth-of-type(odd):not(.hero):not(.section-muted) {
  background-color: rgba(255, 255, 255, 0.86);
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  transition: opacity 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.popular-package-card,
.stats-highlight-card,
.certificate-banner-card,
.emi-card,
.group-departures-banner-card,
.premium-group-card,
.happy-client-card,
.trending-showcase-card,
.stay-connected-panel,
.dream-vacay-form-card,
.testimonial-showcase-card,
.daily-deal-poster,
.accreditation-logo-card,
.latest-blog-strip-card,
.updates-subscribe-inner {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
}

.popular-package-card:hover,
.stats-highlight-card:hover,
.certificate-banner-card:hover,
.emi-card:hover,
.group-departures-banner-card:hover,
.premium-group-card:hover,
.happy-client-card:hover,
.trending-showcase-card:hover,
.stay-connected-panel:hover,
.dream-vacay-form-card:hover,
.testimonial-showcase-card:hover,
.daily-deal-poster:hover,
.accreditation-logo-card:hover,
.latest-blog-strip-card:hover,
.updates-subscribe-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(16, 43, 84, 0.14);
}

.popular-package-btn,
.premium-group-cta,
.daily-deals-poster-cta,
.latest-blog-strip-cta,
.dream-vacay-submit,
.updates-subscribe-form button {
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.popular-package-btn:hover,
.premium-group-cta:hover,
.daily-deals-poster-cta:hover,
.latest-blog-strip-cta:hover,
.dream-vacay-submit:hover,
.updates-subscribe-form button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

/* --- Refined footer, booking form, service-style cards --- */
.section-heading--center {
  text-align: center;
}

.section-heading--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-lead {
  margin: 0.55rem 0 0;
  max-width: 640px;
  color: #5f7394;
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  line-height: 1.55;
  font-weight: 500;
}

.card-pill-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-block;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f5fd1;
  background: rgba(232, 241, 255, 0.96);
  box-shadow: 0 4px 12px rgba(17, 46, 87, 0.12);
}

.card-pill-tag--on-white {
  background: #e8f1ff;
  color: #1f4fa3;
}

.card-pill-tag--featured {
  background: #fff;
  color: #1f4fa3;
}

.testimonial-showcase-card--featured {
  background: linear-gradient(155deg, #2c79ff 0%, #1f4fa3 52%, #163a78 100%);
  box-shadow: 0 18px 40px rgba(31, 79, 163, 0.35);
}

.testimonial-showcase-card--featured .testimonial-showcase-head h3 {
  color: #fff;
}

.testimonial-showcase-card--featured .testimonial-showcase-head p {
  color: #ffe08a;
}

.testimonial-showcase-card--featured .testimonial-showcase-text {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-showcase-card--featured .testimonial-showcase-head span {
  color: rgba(255, 255, 255, 0.55);
}

.accreditation-logo-card--featured {
  background: linear-gradient(155deg, #2c79ff 0%, #1f4fa3 100%);
  box-shadow: 0 18px 40px rgba(31, 79, 163, 0.32);
}

.accreditation-logo-card--featured .accreditation-name,
.accreditation-logo-card--featured small {
  color: rgba(255, 255, 255, 0.95);
}

.daily-deal-poster--featured {
  box-shadow: 0 18px 42px rgba(31, 79, 163, 0.28);
  outline: 2px solid rgba(44, 121, 255, 0.45);
  outline-offset: 2px;
}

.booking-form-card h3 {
  text-align: center;
}

.booking-form-lead {
  margin: 0 0 1.1rem;
  text-align: center;
  color: #5f7394;
  font-size: 0.92rem;
  line-height: 1.5;
}

.booking-grid-form {
  gap: 0.85rem;
}

.booking-form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.booking-grid-form input,
.booking-textarea {
  width: 100%;
  border: 1px solid #d0ddef;
  border-radius: 10px;
  background: #fff;
  color: #233d63;
  padding: 0.72rem 0.85rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.booking-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.45;
}

.booking-grid-form input:focus,
.booking-textarea:focus {
  outline: 0;
  border-color: #2c79ff;
  box-shadow: 0 0 0 3px rgba(44, 121, 255, 0.14);
}

.booking-phone-field {
  display: flex;
  align-items: stretch;
  border: 1px solid #d0ddef;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.booking-phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1f3558;
  background: #f1f4fb;
  border-right: 1px solid #d0ddef;
  white-space: nowrap;
}

.booking-phone-flag {
  font-size: 1rem;
  line-height: 1;
}

.booking-phone-field input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  flex: 1;
  min-width: 0;
}

.booking-phone-field input:focus {
  box-shadow: none;
}

.booking-form-message {
  margin: 0.15rem 0 0;
  text-align: center;
  min-height: 1.25em;
}

.booking-submit-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.booking-send-btn.dream-vacay-submit {
  margin-top: 0;
  border-radius: 999px;
  padding: 0.88rem 2.85rem;
  background: linear-gradient(135deg, #2c79ff 0%, #1f4fa3 100%);
  letter-spacing: 0.14em;
  font-size: 0.88rem;
  box-shadow: 0 14px 32px rgba(44, 121, 255, 0.38);
}

.booking-send-btn.dream-vacay-submit:hover {
  box-shadow: 0 18px 36px rgba(44, 121, 255, 0.45);
}

.site-footer.site-footer--modern {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7faff 0%, #eef4ff 45%, #e8f0fc 100%);
  color: #284062;
  border-top: 1px solid #d6e4f7;
}

.site-footer.site-footer--modern .footer-bg-blobs {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 420px 280px at 0% 30%, rgba(44, 121, 255, 0.09), transparent 55%),
    radial-gradient(ellipse 360px 240px at 100% 80%, rgba(44, 121, 255, 0.07), transparent 50%);
}

.site-footer.site-footer--modern .footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
  padding: 3rem 0 1.5rem;
}

.site-footer.site-footer--modern .footer-brand-col {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.site-footer.site-footer--modern .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: #153a6d;
}

.site-footer.site-footer--modern .footer-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, #2c79ff, #5aa7ff);
  box-shadow: 0 6px 16px rgba(44, 121, 255, 0.35);
}

.site-footer.site-footer--modern .footer-brand-tagline {
  margin: 0;
  color: #4a6488;
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 320px;
}

.site-footer.site-footer--modern .footer-phone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer.site-footer--modern .footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  color: #1f4fa3;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(17, 46, 87, 0.08);
  border: 1px solid #d6e6fa;
}

.site-footer.site-footer--modern .footer-phone-link--wa {
  color: #127c3e;
  border-color: #c5edd6;
  background: #f4fff8;
}

.site-footer.site-footer--modern .footer-phone-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(17, 46, 87, 0.12);
}

.site-footer.site-footer--modern .footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.site-footer.site-footer--modern .footer-col-title {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1f4fa3;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.site-footer.site-footer--modern .footer-links {
  gap: 0.42rem;
}

.site-footer.site-footer--modern .footer-links a {
  color: #3f5677;
  font-size: 0.88rem;
}

.site-footer.site-footer--modern .footer-disclaimer {
  position: relative;
  z-index: 1;
  padding: 0.5rem 0 1.25rem;
}

.site-footer.site-footer--modern .footer-disclaimer p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #5a6f8c;
}

.site-footer.site-footer--modern .footer-subscribe-section {
  position: relative;
  z-index: 1;
  padding: 0.5rem 0 1.5rem;
}

.site-footer.site-footer--modern .footer-subscribe-inner {
  text-align: center;
}

.site-footer.site-footer--modern .footer-subscribe-lead {
  margin: 0 auto 1rem;
  max-width: 560px;
  color: #4a6488;
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer.site-footer--modern .footer-newsletter-pill {
  display: flex;
  align-items: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 5px 6px 5px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d0dff4;
  box-shadow: 0 10px 28px rgba(44, 121, 255, 0.12);
}

.site-footer.site-footer--modern .footer-newsletter-pill input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 0.95rem;
  color: #1f3558;
  padding: 0.55rem 0;
}

.site-footer.site-footer--modern .footer-newsletter-pill input::placeholder {
  color: #8a9db8;
}

.site-footer.site-footer--modern .footer-newsletter-send {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2c79ff, #1f4fa3);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(44, 121, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer.site-footer--modern .footer-newsletter-send:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 24px rgba(44, 121, 255, 0.42);
}

.site-footer.site-footer--modern .footer-newsletter-message {
  margin-top: 0.65rem;
  text-align: center;
}

.site-footer.site-footer--modern .footer-social-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.25rem 0 1.5rem;
}

.site-footer.site-footer--modern .footer-social-title {
  margin: 0 0 0.75rem;
  font-weight: 800;
  font-size: 1rem;
  color: #153a6d;
}

.site-footer.site-footer--modern .footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.site-footer.site-footer--modern .footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #2c79ff, #1f4fa3);
  box-shadow: 0 6px 16px rgba(44, 121, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer.site-footer--modern .footer-social-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 22px rgba(44, 121, 255, 0.35);
}

.site-footer.site-footer--modern .footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid #d6e4f7;
  background: rgba(255, 255, 255, 0.55);
}

.site-footer.site-footer--modern .footer-bottom-inner {
  text-align: center;
  padding: 1rem 0;
}

.site-footer.site-footer--modern .footer-bottom-inner p {
  margin: 0;
  color: #5a6f8c;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .site-footer.site-footer--modern .footer-main {
    grid-template-columns: 1fr;
  }

  .site-footer.site-footer--modern .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .site-footer.site-footer--modern .footer-columns {
    grid-template-columns: 1fr;
  }
}
.copyright-holder .topborder{
  height: 3px;
  left: 0px;
  width: 100%;
  background: linear-gradient(270deg, rgba(43, 115, 255, 0) 21.54%, rgb(48, 105, 230) 54.36%, rgba(43, 115, 255, 0) 78.32%);
}

.copyright-holder {
  width: 100%;
  margin-top: 4px;
  padding: 5px 2px;
}

/* Final heading consistency pass for homepage sections */
main .section-heading h2 {
  color: #18345f !important;
  font-size: clamp(1.7rem, 2.45vw, 2.25rem) !important;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700 !important;
}

main .welcome-copy-block h2,
main .welcome-subtitle h3 {
  color: #18345f;
  font-size: clamp(1.7rem, 2.45vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
}

/* Slider card polish: softer shadows and cleaner depth */
.loop-slider .emi-card,
.loop-slider .happy-client-card,
.loop-slider .testimonial-showcase-card,
.loop-slider .daily-deal-poster,
.loop-slider .accreditation-logo-card {
  box-shadow: 0 8px 18px rgba(17, 46, 87, 0.1);
}

.loop-slider .emi-card:hover,
.loop-slider .happy-client-card:hover,
.loop-slider .testimonial-showcase-card:hover,
.loop-slider .daily-deal-poster:hover,
.loop-slider .accreditation-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 46, 87, 0.14);
}

/* Daily deals card refinement */
.daily-deals-poster-section .daily-deal-poster {
  border: 1px solid #d8e3f2;
  box-shadow: 0 8px 18px rgba(17, 46, 87, 0.1);
}

.daily-deals-poster-section .daily-deal-poster::after {
  background: linear-gradient(
    180deg,
    rgba(16, 38, 70, 0.08) 14%,
    rgba(18, 48, 90, 0.58) 70%,
    rgba(12, 30, 60, 0.84) 100%
  );
}

.daily-deals-poster-section .daily-deal-poster-overlay {
  padding: 0.7rem 0.62rem 0.66rem;
}

.daily-deals-poster-section .daily-deal-poster-overlay h3 {
  font-size: 0.93rem;
  line-height: 1.3;
  text-transform: none;
}

.daily-deals-poster-section .daily-deal-poster-overlay p {
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.daily-deals-poster-section .daily-deal-poster--featured {
  outline: 0;
  box-shadow: 0 8px 18px rgba(17, 46, 87, 0.1);
}

/* Remove unwanted highlighted testimonial card look */
.testimonials-showcase-section .testimonial-showcase-card--featured {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 46, 87, 0.1);
}

.testimonials-showcase-section .testimonial-showcase-card--featured .testimonial-showcase-head h3 {
  color: #1f3558;
}

.testimonials-showcase-section .testimonial-showcase-card--featured .testimonial-showcase-head p {
  color: #f2b401;
}

.testimonials-showcase-section .testimonial-showcase-card--featured .testimonial-showcase-text {
  color: #5a6f90;
}

.testimonials-showcase-section .testimonial-showcase-card--featured .testimonial-showcase-head span {
  color: #2f72dc;
}

.testimonials-showcase-section .card-pill-tag--featured {
  background: #e8f1ff;
  color: #1f4fa3;
}

/* Final refinement: remove heavy slider shadows */
.loop-slider .emi-card,
.loop-slider .happy-client-card,
.loop-slider .testimonial-showcase-card,
.loop-slider .daily-deal-poster,
.loop-slider .accreditation-logo-card {
  box-shadow: none !important;
  border: 1px solid #d9e3f2;
}

.loop-slider .emi-card:hover,
.loop-slider .happy-client-card:hover,
.loop-slider .testimonial-showcase-card:hover,
.loop-slider .daily-deal-poster:hover,
.loop-slider .accreditation-logo-card:hover {
  box-shadow: none !important;
  transform: translateY(-1px);
  border-color: #bfd0e8;
}

.testimonials-showcase-dots span {
  cursor: pointer;
  pointer-events: auto;
}

/* Theme outline CTA buttons for know/view actions */
.premium-group-cta,
.daily-deals-poster-cta,
.latest-blog-strip-cta {
  background: transparent !important;
  color: #1f4fa3 !important;
  border: 1.5px solid #2c79ff;
  box-shadow: none !important;
}

.premium-group-cta:hover,
.daily-deals-poster-cta:hover,
.latest-blog-strip-cta:hover {
  background: #1f4fa3 !important;
  color: #ffffff !important;
  border-color: #1f4fa3;
  box-shadow: none !important;
  transform: translateY(-1px);
}

/* Theme alignment: GT Group Departures + GT Premium Group Tours */
.group-departures-banner-section {
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
}

.group-departures-banner-card {
  border: 1px solid #d7e3f3;
  border-radius: 16px;
  box-shadow: none;
}

.group-departures-banner-card:hover {
  border-color: #bdd0e8;
  box-shadow: none;
  transform: translateY(-1px);
}

.group-departures-banner-card img {
  filter: saturate(1.03) contrast(1.01);
}

.premium-group-tours-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.premium-group-grid {
  gap: 0.72rem;
}

.premium-group-card {
  border: 1px solid #d7e3f3;
  border-radius: 14px;
  box-shadow: none;
}

.premium-group-card:hover {
  border-color: #bdd0e8;
  box-shadow: none;
  transform: translateY(-1px);
}

.premium-group-card::after {
  background: linear-gradient(
    180deg,
    rgba(8, 28, 52, 0.08) 0%,
    rgba(8, 28, 52, 0.44) 56%,
    rgba(8, 28, 52, 0.14) 100%
  );
}

.premium-group-overlay {
  background: linear-gradient(135deg, rgb(70 121 209 / 95%), rgb(41 77 139 / 96%));
  padding: 0.58rem 0.56rem 0.52rem;
}

.premium-group-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
}

.premium-group-overlay h3 {
  font-size: 0.86rem;
  line-height: 1.22;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Side decorative patches (theme matched, non-intrusive) */
body {
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

/* Left soft arc patches */
body::before {
  left: -120px;
  top: 80px;
  width: 250px;
  height: 78vh;
  background:
    radial-gradient(120px 120px at 70% 8%, rgba(44, 121, 255, 0.14) 0 38%, transparent 40%),
    radial-gradient(90px 90px at 35% 48%, rgba(44, 121, 255, 0.12) 0 36%, transparent 38%),
    radial-gradient(105px 105px at 72% 86%, rgba(44, 121, 255, 0.1) 0 35%, transparent 37%);
}

/* Right dotted patch */
body::after {
  right: 18px;
  top: 48%;
  width: 170px;
  height: 235px;
  transform: translateY(-50%);
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(44, 121, 255, 0.45) 2px, transparent 2.5px);
  background-size: 12px 12px;
  border-radius: 18px;
}

#header-placeholder,
main,
#footer-placeholder {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  body::before {
    left: -145px;
    opacity: 0.65;
  }

  body::after {
    right: -30px;
    width: 130px;
    height: 170px;
    opacity: 0.35;
  }
}

@media (max-width: 640px) {
  body::before,
  body::after {
    display: none;
  }
}

/* Professional side accents + redesigned enquiry section */
body::before {
  left: -54px;
  top: 22%;
  width: 150px;
  height: 420px;
  opacity: 0.8;
  background:
    radial-gradient(84px 84px at 72% 14%, rgba(44, 121, 255, 0.1) 0 31%, transparent 34%),
    radial-gradient(92px 92px at 32% 52%, rgba(44, 121, 255, 0.08) 0 30%, transparent 33%),
    radial-gradient(88px 88px at 74% 88%, rgba(44, 121, 255, 0.07) 0 29%, transparent 32%);
}

body::after {
  right: -20px;
  top: 56%;
  width: 124px;
  height: 180px;
  opacity: 0.32;
  background-image: radial-gradient(circle, rgba(44, 121, 255, 0.5) 1.5px, transparent 1.9px);
  background-size: 10px 10px;
  border-radius: 14px;
}

.enquiry-split-section {
  background:
    radial-gradient(130% 90% at 20% 0%, rgba(44, 121, 255, 0.1) 0%, rgba(44, 121, 255, 0) 58%),
    linear-gradient(180deg, #f7faff 0%, #f2f6ff 100%);
}

.enquiry-split-grid {
  gap: 1.35rem;
  align-items: stretch;
}

.stay-connected-panel,
.dream-vacay-form-card {
  border: 1px solid #d7e3f3;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none !important;
}

.stay-connected-panel {
  min-height: auto;
  padding: 2rem 1.6rem;
  justify-items: start;
  align-content: center;
  gap: 0.95rem;
}

.stay-connected-panel h3 {
  margin-bottom: 0.15rem;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  color: #18345f;
}

.stay-connect-item {
  width: 100%;
  grid-template-columns: 38px 1fr;
  align-items: center;
  justify-items: start;
  gap: 0.55rem;
  padding: 0.2rem 0;
}

.stay-connect-icon {
  width: 36px;
  height: 36px;
  border: 1px solid #cfe0f5;
  color: #1f4fa3;
  background: #f5f9ff;
}

.stay-connect-item a {
  font-size: 1rem;
  color: #2a4d7b;
  font-weight: 600;
}

.dream-vacay-form-card {
  padding: 1.45rem 1.35rem 1.2rem;
}

.dream-vacay-form-card h3 {
  margin: 0 0 0.4rem;
  color: #18345f;
  font-size: clamp(1.55rem, 2.25vw, 2.05rem);
  line-height: 1.2;
}

.booking-form-lead {
  margin-bottom: 0.95rem;
  font-size: 0.92rem;
  color: #5b7293;
}

.booking-grid-form {
  gap: 0.72rem;
}

.booking-grid-form input,
.booking-textarea {
  border-color: #d3deee;
  background: #fbfdff;
  border-radius: 10px;
}

.booking-grid-form input::placeholder,
.booking-textarea::placeholder {
  color: #8194b0;
}

.booking-phone-field {
  border-radius: 10px;
  border-color: #d3deee;
  background: #fbfdff;
}

.booking-phone-prefix {
  background: #f0f5fe;
  color: #1d3d68;
}

.booking-send-btn.dream-vacay-submit {
  border-radius: 10px;
  padding: 0.78rem 2.2rem;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  box-shadow: none !important;
}

.booking-send-btn.dream-vacay-submit:hover {
  box-shadow: none !important;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  body::before {
    left: -70px;
    top: 26%;
    width: 120px;
    height: 300px;
    opacity: 0.6;
  }

  body::after {
    right: -36px;
    width: 94px;
    height: 126px;
    opacity: 0.22;
  }

  .enquiry-split-grid {
    gap: 1rem;
  }

  .stay-connected-panel,
  .dream-vacay-form-card {
    padding: 1.1rem;
    border-radius: 14px;
  }

  .stay-connected-panel {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  body::before,
  body::after {
    display: none;
  }

  .stay-connect-item {
    grid-template-columns: 32px 1fr;
  }

  .stay-connect-icon {
    width: 32px;
    height: 32px;
  }
}

/* Font Awesome icon tuning */
.stay-connect-icon i,
.updates-icon i {
  font-size: 0.95rem;
  line-height: 1;
}

.footer-phone-icon {
  width: 18px;
  display: inline-grid;
  place-items: center;
  margin-right: 0.2rem;
}

.footer-phone-icon i {
  font-size: 0.9rem;
  line-height: 1;
}

.site-footer.site-footer--modern .footer-social-btn i {
  font-size: 0.92rem;
  line-height: 1;
}

.scroll-top i {
  font-size: 1rem;
  line-height: 1;
}

/* Header phone icon */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.header-phone i {
  font-size: 0.8rem;
  line-height: 1;
}

/* Theme-normalize remaining orange accents */
:root {
  --accent-gold: #73acff;
  --accent-orange: #2c79ff;
  --brand-accent: #2c79ff;
}

.dream-vacay-submit,
.booking-send-btn.dream-vacay-submit,
.daily-deal-poster-overlay p,
.trending-showcase-body p,
.site-footer.site-footer--modern .footer-col-title {
  background: linear-gradient(135deg, #2c79ff 0%, #1f4fa3 100%);
  color: #ffffff;
}

.trending-showcase-body p {
  display: inline-flex;
  padding: 0.16rem 0.48rem;
  border-radius: 999px;
  font-size: 0.67rem;
  letter-spacing: 0.03em;
}

.site-footer.site-footer--modern .footer-col-title {
  background: none;
  color: #1f4fa3;
}

/* Redesigned welcome + stress-free section */
.welcome-gt-section {
  background: linear-gradient(180deg, #f7faff 0%, #f2f6ff 100%);
}

.welcome-gt-section .container {
  max-width: 1180px;
}

.welcome-copy-block {
  background: #ffffff;
  border: 1px solid #d7e3f3;
  border-radius: 18px;
  padding: 1.35rem 1.3rem 1.15rem;
}

.welcome-copy-block p {
  color: #5a708f;
  font-size: 0.95rem;
  line-height: 1.7;
}

.welcome-subtitle {
  margin-top: 1.05rem;
  margin-bottom: 0.85rem;
}

.welcome-subtitle h3 {
  font-size: clamp(1.5rem, 2vw, 1.95rem);
}

.emi-card-grid {
  gap: 0.8rem;
}

.emi-card {
  border: 1px solid #d5e1f2;
  border-radius: 14px;
  box-shadow: none;
}

.emi-card:hover {
  transform: translateY(-1px);
  border-color: #bfd2ea;
  box-shadow: none;
}

.emi-card-media {
  background: #f3f7ff;
}

.emi-card-media img {
  height: 162px;
}
/* Remove side patches completely */
body::before,
body::after {
  content: none !important;
  background: none !important;
}

/* Instabiz-style header with GT Holidays content */
.insta-header {
  position: sticky;
  top: 0;
  z-index: 1400;
  background: #f6f8ff;
  border-bottom: 1px solid #dfe6f4;
}

.insta-header .insta-top-strip {
  background: #0f1728;
}

.insta-header .insta-top-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.insta-header .insta-social-line {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

.insta-header .insta-social-line a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
}

.insta-header .insta-social-line a:hover {
  color: #ffffff;
}

.insta-header .insta-top-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: #ffd31d;
  color: #0f1728;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.insta-header .main-header {
  background: #f6f8ff;
}

.insta-header .header-inner {
  min-height: 70px;
  gap: 1.25rem;
}

.insta-header .logo.logo-only {
  width: 132px;
}

.insta-header .logo-image-full {
  height: 44px;
}

.insta-header .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.insta-header .nav-menu {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.insta-header .nav-menu > li {
  position: relative;
  list-style: none;
}

.insta-header .nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 52px;
  padding: 0.6rem 0.82rem;
  color: #132644;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 0;
}

.insta-header .nav-item i {
  font-size: 0.62rem;
  color: #6b7d99;
}

.insta-header .nav-menu > li:hover > .nav-item,
.insta-header .nav-menu > li:focus-within > .nav-item,
.insta-header .nav-item.active {
  background: #ffd31d;
  color: #0f1728;
}

.insta-header .nav-menu > li:hover > .nav-item i,
.insta-header .nav-menu > li:focus-within > .nav-item i,
.insta-header .nav-item.active i {
  color: #0f1728;
}

.insta-header .nav-item::after {
  display: none;
}

.insta-header .header-actions {
  margin-left: auto;
}

.insta-header .header-phone {
  min-height: 34px;
  padding: 0.5rem 0.95rem;
  border: 0;
  border-radius: 3px;
  background: #ffd31d;
  color: #0f1728;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 0.35rem;
}

.insta-header .header-phone i {
  font-size: 0.68rem;
}

.insta-header .header-phone:hover {
  transform: none;
  box-shadow: none;
  color: #0f1728;
}

.insta-header .mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.75rem;
  border: 1px solid #d7e2f3;
  border-radius: 0 0 8px 8px;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(18, 37, 63, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1500;
}

.insta-header .has-mega:hover > .mega-menu,
.insta-header .has-mega:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.insta-header .mega-menu--simple ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
}

.insta-header .mega-menu--simple a {
  display: block;
  padding: 0.3rem 0.32rem;
  color: #1c3559;
  font-size: 0.76rem;
  font-weight: 600;
}

.insta-header .mega-menu--simple a:hover {
  background: #f3f7ff;
}

.insta-header .mega-menu--wide,
.insta-header .mega-menu--medium {
  display: grid;
  gap: 0.85rem;
}

.insta-header .mega-menu--wide {
  width: min(980px, 86vw);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.insta-header .mega-menu--medium {
  width: min(540px, 78vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insta-header .mega-col {
  min-width: 0;
}

.insta-header .mega-col h4 {
  margin: 0 0 0.3rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e6edf8;
  color: #132644;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.insta-header .mega-col a {
  display: block;
  width: fit-content;
  margin-bottom: 0.55rem;
  color: #233f67;
  font-size: 0.73rem;
  line-height: 1.35;
}

.insta-header .mega-col a:hover {
  color: #1f5fd1;
}

.insta-header .mega-col .mega-cta {
  margin-top: 0.45rem;
  padding: 0.33rem 0.58rem;
  border-radius: 2px;
  background: #0f1728;
  color: #ffd31d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.insta-header .mega-col .mega-cta:hover {
  color: #ffd31d;
  background: #1d2b44;
}

@media (max-width: 1100px) {
  .insta-header .nav-item {
    font-size: 0.7rem;
    padding: 0.55rem 0.6rem;
  }

  .insta-header .header-phone {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    padding: 0.45rem 0.7rem;
  }
}

@media (max-width: 980px) {
  .insta-header .insta-top-strip {
    display: none;
  }

  .insta-header .main-nav {
    background: rgba(10, 24, 42, 0.98);
    padding: 90px 20px 22px;
    overflow-y: auto;
  }

  .insta-header .nav-menu {
    width: 100%;
    gap: 0.35rem;
  }

  .insta-header .nav-menu > li {
    width: 100%;
  }

  .insta-header .nav-item {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
    padding: 0.62rem 0.5rem;
    color: #edf4ff;
    border-bottom: 1px solid rgba(192, 210, 235, 0.2);
  }

  .insta-header .nav-menu > li:hover > .nav-item,
  .insta-header .nav-menu > li:focus-within > .nav-item,
  .insta-header .nav-item.active {
    background: transparent;
    color: #ffffff;
  }

  .insta-header .nav-menu > li:hover > .nav-item i,
  .insta-header .nav-menu > li:focus-within > .nav-item i,
  .insta-header .nav-item.active i {
    color: #ffffff;
  }

  .insta-header .mega-menu,
  .insta-header .has-mega:hover > .mega-menu,
  .insta-header .has-mega:focus-within > .mega-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 0.2rem 0 0.5rem;
    padding: 0.65rem;
    border: 1px solid rgba(197, 215, 238, 0.3);
    border-radius: 10px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.07);
  }

  .insta-header .mega-menu--wide,
  .insta-header .mega-menu--medium {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .insta-header .mega-col h4 {
    color: #ffffff;
    border-bottom-color: rgba(197, 215, 238, 0.3);
  }

  .insta-header .mega-col a {
    color: rgba(237, 244, 255, 0.9);
  }

  .insta-header .mega-col .mega-cta {
    background: #ffd31d;
    color: #0f1728;
  }

  .insta-header .header-actions {
    width: 100%;
    margin-top: 0.5rem;
  }

  .insta-header .header-phone {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    font-size: 0.76rem;
  }
}

/* Book-now panel redesign (reference style) */
.enquiry-split-section {
  background: #eef3fb;
}

.enquiry-split-grid {
  gap: 0;
  border: 1px solid #d6e1f2;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

.stay-connected-panel {
  background: linear-gradient(165deg, #1e52b6 0%, #1a44a0 100%) !important;
  color: #ffffff;
  border: 0;
  border-radius: 0;
  padding: 2.2rem 2rem;
  gap: 1.25rem;
}

.stay-connected-panel h3 {
  color: #ffffff;
  font-size: clamp(2rem, 2.4vw, 2.45rem);
  line-height: 1.08;
}

.stay-connected-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 28ch;
}

.stay-connect-item--stacked {
  grid-template-columns: 42px 1fr;
  gap: 0.65rem;
}

.stay-connect-item--stacked small {
  display: block;
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-connect-item--stacked a {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
}

.stay-connect-item .stay-connect-icon {
  width: 40px;
  height: 40px;
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.dream-vacay-form-card {
  border: 0;
  border-radius: 0;
  padding: 1.85rem 1.8rem 1.55rem;
  background: #ffffff;
}

.dream-vacay-form-card h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.45rem, 1.9vw, 1.8rem);
}

.booking-form-lead {
  margin-bottom: 1rem;
  color: #667f9f;
}

.booking-grid-form {
  gap: 0.85rem;
}

.booking-field {
  display: grid;
  gap: 0.35rem;
}

.booking-field > span {
  color: #5d7394;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-grid-form input,
.booking-grid-form select,
.booking-textarea {
  background: #f2f6fc;
  border: 1px solid #e0e8f5;
  border-radius: 6px;
  min-height: 44px;
}

.booking-grid-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6f84a4 50%), linear-gradient(135deg, #6f84a4 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 9px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 1.8rem;
}

.booking-phone-field {
  min-height: 44px;
  border-radius: 6px;
  border-color: #e0e8f5;
  background: #f2f6fc;
}

.booking-phone-prefix {
  background: #e8eef8;
  color: #2b4f80;
  font-weight: 700;
}

.booking-textarea {
  min-height: 86px;
}

.booking-submit-wrap {
  justify-content: stretch;
}

.booking-send-btn.dream-vacay-submit {
  width: 100%;
  border-radius: 6px;
  padding: 0.84rem 1rem;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .enquiry-split-grid {
    border-radius: 14px;
  }

  .stay-connected-panel,
  .dream-vacay-form-card {
    padding: 1.3rem;
  }

  .stay-connected-panel h3 {
    font-size: clamp(1.7rem, 5vw, 2rem);
  }
}

/* V2 refresh: Group Departures + Premium Group Tours */
.group-departures-banner-section {
  padding-top: 1rem;
  background: linear-gradient(180deg, #f7faff 0%, #eef5ff 100%);
}

.group-departures-banner-card {
  border-radius: 20px;
  border: 1px solid #d2e0f3;
  overflow: hidden;
  background: #ffffff;
}

.group-departures-banner-card img {
  border-radius: 20px;
  min-height: 280px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

.premium-group-tours-section {
  padding-top: 1.1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.premium-group-grid {
  gap: 0.9rem;
}

.premium-group-card {
  min-height: 338px;
  border: 1px solid #d3e1f3;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

.premium-group-card img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.premium-group-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.premium-group-card::after {
  background: linear-gradient(
    180deg,
    rgba(8, 27, 52, 0.06) 8%,
    rgba(8, 27, 52, 0.28) 60%,
    rgba(8, 27, 52, 0.42) 100%
  );
}

.premium-group-overlay {
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 12px;
  text-align: left;
  padding: 0.62rem 0.65rem 0.58rem;
  background: linear-gradient(135deg, rgba(31, 79, 163, 0.94), rgba(20, 58, 121, 0.95));
  box-shadow: none;
}

.premium-group-overlay p {
  margin: 0 0 0.16rem;
  font-size: 0.56rem;
  letter-spacing: 0.11em;
  opacity: 0.95;
}

.premium-group-overlay h3 {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.3;
  font-weight: 700;
  text-transform: none;
}

@media (max-width: 980px) {
  .group-departures-banner-card img {
    min-height: 220px;
  }

  .premium-group-card {
    min-height: 286px;
    border-radius: 14px;
  }

  .premium-group-overlay {
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 10px;
    padding: 0.54rem 0.55rem;
  }
}

/* Header layering + Instabiz-style polish fix */
.insta-header,
.insta-header .main-header,
.insta-header .header-inner,
.insta-header .main-nav,
.insta-header .nav-menu,
.insta-header .nav-menu > li {
  position: relative;
  overflow: visible !important;
}

.insta-header {
  z-index: 5000;
  border-bottom: 0;
  background: #f4f7ff;
}

.insta-header .main-header {
  background: #f4f7ff;
}

.insta-header .logo.logo-only {
  width: 145px;
}

.insta-header .nav-menu {
  gap: 0.2rem;
}

.insta-header .nav-item {
  min-height: 46px;
  padding: 0.5rem 0.72rem;
  border-radius: 8px;
  color: #1b355b;
  font-size: 0.74rem;
}

.insta-header .nav-item i {
  color: #7b8eab;
}

.insta-header .nav-menu > li:hover > .nav-item,
.insta-header .nav-menu > li:focus-within > .nav-item,
.insta-header .nav-item.active {
  background: #edf3ff;
  color: #1f5fd1;
}

.insta-header .nav-menu > li:hover > .nav-item i,
.insta-header .nav-menu > li:focus-within > .nav-item i,
.insta-header .nav-item.active i {
  color: #1f5fd1;
}

.insta-header .header-phone {
  border-radius: 999px;
  background: linear-gradient(135deg, #2c79ff 0%, #1f4fa3 100%);
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.insta-header .header-phone:hover {
  color: #ffffff;
}

.insta-header .mega-menu {
  top: calc(100% + 8px);
  border: 1px solid #d9e4f5;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(20, 48, 95, 0.14);
  z-index: 7000;
}

.insta-header .mega-col h4 {
  color: #1f4fa3;
}

.insta-header .mega-col a:hover {
  color: #1f5fd1;
}

.insta-header .mega-col .mega-cta {
  background: #2c79ff;
  color: #ffffff;
}

.insta-header .mega-col .mega-cta:hover {
  background: #1f4fa3;
  color: #ffffff;
}

.hero,
.hero-banner {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .insta-header {
    background: #ffffff;
  }

  .insta-header .header-inner {
    border-radius: 0;
    border: 0;
    box-shadow: none;
    padding-inline: 0;
  }
}

/* Hard stacking fix: keep header/dropdowns above hero banner */
#header-placeholder {
  position: relative;
  z-index: 9000 !important;
}

main {
  position: relative;
  z-index: 1 !important;
}

/* Header UX fixes: sticky + spacing + viewport-safe mega menus */
.insta-header {
  position: sticky !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9001 !important;
}

.insta-header .container {
  width: min(1260px, 96%);
}

.insta-header .insta-top-inner {
  min-height: 38px;
}

.insta-header .header-inner {
  min-height: 78px;
  padding-inline: 1.05rem;
}

.insta-header .nav-menu {
  gap: 0.32rem;
}

.insta-header .nav-item {
  min-height: 50px;
  padding: 0.62rem 0.82rem;
  font-size: 0.78rem;
}

.insta-header .header-phone {
  min-height: 36px;
  padding-inline: 1rem;
}

.insta-header .mega-menu {
  max-height: min(70vh, 640px);
  overflow: auto;
}

.insta-header .mega-menu--wide {
  width: min(980px, calc(100vw - 30px));
}

.insta-header .mega-menu--medium {
  width: min(560px, calc(100vw - 30px));
}

/* Keep right-side dropdowns inside viewport */
.insta-header .nav-menu > li:nth-last-child(-n + 5) > .mega-menu {
  left: auto;
  right: 0;
}

@media (max-width: 1200px) {
  .insta-header .header-inner {
    min-height: 74px;
    padding-inline: 0.8rem;
  }

  .insta-header .nav-item {
    padding: 0.56rem 0.64rem;
    font-size: 0.74rem;
  }
}

/* FINAL header stability override */
.insta-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12000 !important;
}

#header-placeholder {
  position: relative;
  z-index: 12000 !important;
  min-height: 116px;
}

main {
  position: relative;
  z-index: 1 !important;
}

.insta-header .main-nav,
.insta-header .nav-menu,
.insta-header .nav-menu > li {
  overflow: visible !important;
}

.insta-header .nav-menu > li > .mega-menu {
  left: 0;
  right: auto;
}

.insta-header .mega-menu {
  max-width: calc(100vw - 20px);
  max-height: min(70vh, 620px);
  overflow: auto;
}

.insta-header .mega-menu--wide {
  width: min(980px, calc(100vw - 20px));
  left: 50% !important;
  right: auto !important;
  transform: translate(-42%, 8px);
}

.insta-header .has-mega:hover > .mega-menu--wide,
.insta-header .has-mega:focus-within > .mega-menu--wide {
  transform: translate(-42%, 0);
}

.insta-header .mega-menu--medium {
  width: min(560px, calc(100vw - 20px));
}

.insta-header .nav-menu > li.has-mega:nth-last-child(-n + 3) > .mega-menu--medium {
  left: auto !important;
  right: 0 !important;
  transform: translateY(8px);
}

.insta-header .nav-menu > li.has-mega:nth-last-child(-n + 3):hover > .mega-menu--medium,
.insta-header .nav-menu > li.has-mega:nth-last-child(-n + 3):focus-within > .mega-menu--medium {
  transform: translateY(0);
}

@media (max-width: 980px) {
  #header-placeholder {
    min-height: 78px;
  }
}
