/* =====================================================
   MY JET FINLAND — Global Stylesheet
   Design: Luxury Travel | Navy & Gold
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --navy: #0a1628;
  --navy-mid: #0e2044;
  --navy-light: #1a3260;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e9c8;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #8899aa;
  --border: #e2ddd3;
  --shadow-sm: 0 2px 12px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.14);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.20);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  /*background: var(--white);*/
  background: #f6f3ee;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
.font-display { font-family: 'Playfair Display', serif; }
.font-italic  { font-family: 'Cormorant Garamond', serif; }

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ── Section Label ── 
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}*/

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

/* ── Buttons ── */
.btn {
  /*display: inline-flex;*/
  display: block;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
	background: var(--navy);
	color: var(--white);
	width: 30%;
	text-align: center;
}

.w3{
	width: 18% !important;
	text-align: center;
}

.w4{
	width: 40% !important;
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0a1628;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(10,22,40,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-mark {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.nav-logo .logo-text {
  line-height: 1.1;
}
.nav-logo .logo-text span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo .logo-text span:last-child {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  /*color: var(--text-mid);*/
  color: #fff;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  /*color: var(--navy);*/
  color: #fff;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  /*background: var(--navy);
  color: var(--white);*/
  background: #c9a84c;
  color: var(--white);
  padding: 8px 26px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-cta:hover {
  /*background: var(--gold);
  color: var(--navy);*/
  background: #fefefe;
  color: var(--navy);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Slider ── 
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 72px;
}*/

.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  margin-top: 30px;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.72) 0%, rgba(10,22,40,0.28) 60%, transparent 100%);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1280px;
  width: 100%;
  padding: 0 32px;
  color: var(--white);
}
.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 600px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Hero Nav Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
/* Dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── Section Commons ── 
.section {
  padding: 96px 32px;
}*/

.section {
  padding: 20px 32px;
} 

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
}
.section-header p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 12px auto 0;
}

/* ── Destinations ── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.dest-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-img-wrap img {
  transform: scale(1.07);
}
.dest-info {
  padding: 16px 16px 20px;
  text-align: center;
}
.dest-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.dest-explore {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color 0.25s;
}
.dest-card:hover .dest-explore {
  color: var(--gold);
}

/* ── About Split ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.about-img-side {
  position: relative;
  overflow: hidden;
}
.about-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content-side {
  /*background: var(--off-white);*/
  background: #e4dfd4;
  display: flex;
  align-items: center;
  /*padding: 72px 64px;*/
  padding: 28px 64px;
}
.about-content-side h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-content-side p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.about-features {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}
.about-feat {
  text-align: center;
}
.about-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: var(--gold);
  font-size: 18px;
}
.about-feat span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-mid);
  display: block;
  text-align: center;
  line-height: 1.3;
}

/* ── Packages ── */
.packages-section { background: var(--off-white); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pkg-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pkg-card:hover .pkg-img-wrap img {
  transform: scale(1.07);
}
.pkg-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.pkg-body {
  padding: 18px 18px 20px;
}
.pkg-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pkg-duration {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.pkg-amenities {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pkg-amenity {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-mid);
}
.pkg-amenity svg, .pkg-amenity i {
  font-size: 11px;
  color: var(--gold);
}
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pkg-price {
  line-height: 1.1;
}
.pkg-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}
.pkg-price .per {
  font-size: 11px;
  color: var(--text-light);
}
.btn-sm {
  padding: 9px 16px;
  font-size: 11px;
}

/* ── Airlines Slider ── 
.airlines-section {
  padding: 56px 32px;
  background: var(--white);
  overflow: hidden;
}*/

.airlines-section {
  padding: 20px 26px;
  background: #fff;
  overflow: hidden;
}

/*.airlines-section .section-header {
  margin-bottom: 36px;
}*/

.airlines-section .section-header {
  margin-bottom: 8px;
}

.airlines-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.airlines-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: slideAirlines 22s linear infinite;
}
.airlines-track:hover { animation-play-state: paused; }
.airline-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 72px;
  /*filter: grayscale(1) opacity(0.55);*/
  transition: filter 0.3s;
  cursor: pointer;
}
.airline-logo:hover {
  filter: grayscale(0) opacity(1);
}
.airline-logo img {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
}
.airline-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 1px;
  white-space: nowrap;
  transition: color 0.3s;
}
.airline-logo:hover .airline-logo-text {
  color: var(--navy);
}
@keyframes slideAirlines {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Contact Strip ── */
.contact-strip {
  padding: 72px 32px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.contact-strip .section-inner {
  max-width: 1280px;
}
.contact-strip h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 40px;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 4px;
}
.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact-item-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.contact-item-sub {
  font-size: 13px;
  color: var(--text-mid);
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 32px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr; /* was 5 columns, now 4 (Support removed) */
  gap: 48px;
  margin-bottom: 4px;
}

@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-newsletter { grid-column: span 3; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .authorities { max-width: 320px; grid-template-columns: repeat(5, 1fr); }
}

.footer-brand p {
  font-size: 14px;
  /*color: rgba(255,255,255,0.55);*/
  color: #ca9612;
  margin-top: 16px;
  line-height: 1.8;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
}
.footer-newsletter p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white);
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus {
  border-color: var(--gold);
}
.newsletter-form button {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.25s;
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ── Inner Page Hero ── */
.page-hero {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 72px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.78) 0%, rgba(10,22,40,0.40) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  color: var(--white);
}
.page-hero-content .section-label {
  color: var(--gold-light);
}
.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── Page-specific cards & layouts ── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.card-base {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card-base:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card-img {
  height: 220px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card-base:hover .card-img img {
  transform: scale(1.06);
}
.card-body {
  padding: 24px;
}
.card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.card-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ── Stats Row ── */
.stats-row {
  background: var(--navy);
  padding: 64px 32px;
  color: var(--white);
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-item .label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Blog Cards ── */
.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.blog-date {
  font-size: 12px;
  color: var(--text-light);
}
.blog-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ── Form Styles ── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s;
  font-family: 'Inter', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* ── Package Detail ── */
.pkg-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.pkg-highlights {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.pkg-highlight {
  background: var(--off-white);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}
.pkg-highlight i {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 8px;
}
.pkg-highlight span {
  display: block;
  font-size: 12px;
  color: var(--text-mid);
}
.pkg-highlight strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}
.itinerary-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.itinerary-day {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.itinerary-day span { font-size: 18px; line-height: 1; font-family:'Playfair Display',serif; }
.itinerary-content h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.itinerary-content p { font-size: 13px; color: var(--text-mid); }

/* ── Testimonials ── */
.testimonials-section { background: var(--navy); padding: 96px 32px; }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.4);
}
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testi-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .destinations-grid,
  .packages-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-newsletter { grid-column: span 3; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-split { grid-template-columns: 1fr; }
  .about-img-side { height: 360px; }
  .about-content-side { padding: 48px 32px; }
  .contact-details { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cards-3 { grid-template-columns: repeat(2,1fr); }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .pkg-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 20px; }
  .destinations-grid { grid-template-columns: repeat(2,1fr); }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .contact-details { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cards-3, .cards-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .about-features { flex-direction: column; gap:16px; }
  .form-row-2 { grid-template-columns:1fr; }
  .pkg-highlights { grid-template-columns:1fr 1fr; }
}

/* ── Mobile Nav Drawer ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.6);
  opacity: 0;
  transition: opacity 0.35s;
}
.mobile-nav-drawer {
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--white);
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open { pointer-events: all; }
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.mobile-nav-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.5px;
}
.mobile-nav-drawer a:hover { color: var(--gold); }
.mobile-nav-drawer .btn-gold {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.gold-text { color: var(--gold); }
.navy-text { color: var(--navy); }
.divider {
  height: 1px;
  background: var(--border);
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Fade-in animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp:hover {
  background: #0bb62b !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

.whatsapp {
  background: #0bb62b !important;
  color: var(--white) !important;
}



/* =====================================================
   MOBILE RESPONSIVE — paste at the END of your style.css
   (after all your existing rules, so these can override them)
   =====================================================
   1100px → small desktop / large tablet
   900px  → tablet (nav collapses to hamburger)
   768px  → large phone / small tablet
   640px  → phone
   480px  → small phone
   380px  → very small phone
   ===================================================== */

/* Prevent iOS Safari from auto-zooming when a form input is focused
   (any input under 16px font-size triggers this) */
input, select, textarea { font-size: 16px; }
@media (min-width: 641px){
  input, select, textarea { font-size: 14px; }
}

/* Minimum comfortable tap target size on touch devices */
.btn { min-height: 44px; }
.btn-sm { min-height: 38px; }


@media (max-width: 1100px) {
  .destinations-grid,
  .packages-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-newsletter { grid-column: span 3; }
  .cards-4 { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px) {
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .about-split { grid-template-columns: 1fr; }
  .about-img-side { height: 300px; }
  .about-content-side { padding: 48px 32px; }
  .flight-path-deco { width: 150px; height: 150px; top: 16px; right: 16px; }

  .contact-details { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cards-3 { grid-template-columns: repeat(2,1fr); }
  .cards-4 { grid-template-columns: repeat(2,1fr); }

  .pkg-detail-grid { grid-template-columns: 1fr; }
  .booking-card, [style*="position:sticky"] { position: static !important; }
}

@media (max-width: 768px) {
  .destinations-grid,
  .packages-grid { grid-template-columns: repeat(2,1fr); }

  .hero-arrow { width: 40px; height: 40px; font-size: 15px; }
  .hero-arrow.prev { left: 12px; }
  .hero-arrow.next { right: 12px; }

  .page-hero { margin-top: 64px; }
  .section-header { margin-bottom: 36px; }
}

@media (max-width: 640px) {
  .nav-inner { height: 64px; }
  .hero { margin-top: 24px; min-height: 420px; }
  .hero-content { padding: 0 20px; }
  .hero-actions .btn { width: 100%; }
  .hero h1 { font-size: 36px; }

  .section { padding: 48px 20px; }
  .section-inner { padding: 0; }

  .destinations-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .pkg-footer { flex-direction: column; align-items: stretch; }
  .pkg-footer .btn { width: 100%; }

  .about-content-side { padding: 40px 24px; }
  .about-features { gap: 20px; justify-content: center; flex-direction: column; }

  .contact-details { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .cards-3, .cards-4 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-newsletter { grid-column: span 1; }

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

  .mobile-nav-drawer { width: min(300px, 85vw); padding: 72px 24px 32px; }
}

@media (max-width: 480px) {
  .nav-logo .logo-text span:first-child { font-size: 15px; }
  .logo-mark { width: 36px; height: 36px; font-size: 15px; }

  .destinations-grid { grid-template-columns: 1fr; }
  .dest-img-wrap { height: 170px; }

  .hero-desc { max-width: 100%; }
  .hero-label { font-size: 10px; letter-spacing: 3px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item .number { font-size: 30px; }

  .pkg-highlights { grid-template-columns: 1fr; }
  .itinerary-item { gap: 14px; }
  .itinerary-day { width: 46px; height: 46px; font-size: 9px; }
  .itinerary-day span { font-size: 15px; }

  .testi-card { padding: 24px 20px; }

  .page-hero-content h1 { font-size: 26px; }
  .card-img { height: 180px; }
  .card-body { padding: 18px; }
}

@media (max-width: 380px) {
  .btn { padding: 12px 22px; font-size: 12px; }
  .hero h1 { font-size: 28px; }
  .section-header h2 { font-size: 24px; }
}

/* Landscape phones — fixed-height hero can cut off content when rotated */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { height: auto; min-height: 100vh; padding: 100px 0 40px; }
  .hero-content { position: relative; top: auto; left: auto; transform: none; }
}



/* ── Guidelines page-specific additions ── */
  .guideline-nav {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    margin-bottom: 56px;
  }
  .guideline-nav a {
    padding: 9px 20px; border-radius: 30px; border: 1px solid var(--border);
    background: var(--white); font-size: 13px; font-weight: 600; color: var(--text-mid);
    transition: var(--transition);
  }
  .guideline-nav a:hover { border-color: var(--gold); color: var(--navy); }
 
  .guideline-block { display: flex; gap: 24px; margin-bottom: 48px; scroll-margin-top: 100px; }
  .guideline-icon {
    width: 56px; height: 56px; border-radius: 50%; background: var(--gold-pale);
    color: var(--gold); display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
  }
  .guideline-content h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
  .guideline-content p { font-size: 14.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
  .guideline-content ul { list-style: none; padding: 0; margin: 0 0 12px; }
  .guideline-content ul li {
    font-size: 14.5px; color: var(--text-mid); line-height: 1.8; padding-left: 22px; position: relative;
  }
  .guideline-content ul li::before {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: var(--gold); position: absolute; left: 0; top: 3px; font-size: 11px;
  }
  .guideline-divider { height: 1px; background: var(--border); margin: 0 0 48px; }
 
  @media (max-width: 640px) {
    .guideline-block { flex-direction: column; gap: 16px; }
  }
  
  
 
 /* ── Trust / Partner Logos Grid ── */
.logos-section {
  padding: 10px 32px;
  background: var(--off-white);
}
.logos-section .section-header {
  margin-bottom: 48px;
}
.logos-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 20px;
}
.logo-item {
  aspect-ratio: 1 / 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s cubic-bezier(0.4,0,0.2,1),
              border-color 0.35s ease;
}
.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.35s ease, transform 0.35s ease;
}
/* Placeholder text-based logos (remove once real <img> logos are in) */
.logo-item span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--text-light);
  transition: color 0.35s ease;
}
 
.logo-item:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.logo-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}
.logo-item:hover span {
  color: var(--gold);
}
 
/* Staggered fade-up entrance (pairs with your existing .fade-up/.visible pattern) */
.logo-item.fade-up { transition-delay: calc(var(--i, 0) * 0.03s), calc(var(--i, 0) * 0.03s); }
 
@media (max-width: 1100px) {
  .logos-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 640px) {
  .logos-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .logo-item { padding: 10px; }
  .logo-item span { font-size: 9px; }
}
@media (max-width: 380px) {
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
}

.authorities{
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(5, 7fr);
	gap: 7px;
	margin-top: 23px;
	background: #fff;
	padding: 3px;
	border-radius: 5px;
}





  .logo-section__title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-color);
    margin: 0 0 36px;
  }
 
  .logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap);
    max-width: 1200px;
    margin: 0 auto;
  }
 
  .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #fafafa;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
 
  .logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: #ffffff;
  }
 
  .logo-item img {
    height: var(--logo-height);
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.2s ease, opacity 0.2s ease;
  }
 
  .logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }
 
  /* Tablet */
  @media (max-width: 900px) {
    .logo-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    :root { --logo-height: 40px; }
  }
 
  /* Large phones */
  @media (max-width: 600px) {
    .logo-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .logo-section { padding: 40px 16px; }
    :root { --logo-height: 34px; }
  }
 
  /* Small phones */
  @media (max-width: 400px) {
    .logo-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .logo-item { padding: 12px; }
    :root { --logo-height: 30px; }
  }


   /* =====================================================
     SKY BOOKING PROMO POPUP
     Paste this block just before </body> in your footer view
     (e.g. application/views/website/footer.php or your master layout)
     Uses your existing CSS variables (--navy, --gold, etc.)
     defined in :root — no extra colors introduced.
     ===================================================== */

    /* Scoped to .sb-popup* so it can't collide with existing site classes */
 
	  .sb-bubble {
		position: fixed;
		bottom: 28px;
		right: 28px;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background: #030220;
		border: 1px solid rgba(201,168,76,0.35);
		box-shadow: var(--shadow-lg);
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		z-index: 9999;
		transition: var(--transition);
		opacity: 0;
		transform: scale(0.7);
		pointer-events: none;
	  }
	  .sb-bubble.show {
		opacity: 1;
		transform: scale(1);
		pointer-events: auto;
	  }
	  .sb-bubble:hover { transform: scale(1.08); background: #030220;}
	  .sb-bubble svg { width: 24px; height: 24px; fill: #e1c377; transition: var(--transition); }
	 
	  .sb-popup {
		position: fixed;
		bottom: 100px;
		right: 28px;
		width: 320px;
		max-width: 90vw;
		background: #12161f;
		border-radius: var(--radius-lg);
		box-shadow: var(--shadow-lg);
		border: 1px solid rgba(201,168,76,0.2);
		overflow: hidden;
		z-index: 9999;
		transform: translateY(20px) scale(0.96);
		opacity: 0;
		pointer-events: none;
		transition: var(--transition);
		font-family: 'Inter', sans-serif;
	  }
	  .sb-popup.open {
		transform: translateY(0) scale(1);
		opacity: 1;
		pointer-events: auto;
	  }
	 
	  .sb-topbar {
		display: flex;
		align-items: center;
		padding: 10px 12px 0 14px;
		background: #030220;
	  }
	  .sb-ad-label {
		font-size: 10px;
		font-weight: 700;
		letter-spacing: 1.5px;
		text-transform: uppercase;
		color: #12161f;
		background: #e1c377;
		padding: 3px 9px;
		border-radius: 4px;
	  }
	 
	  .sb-banner {
		width: 100%;
		aspect-ratio: 16 / 9;
		/*margin-top: 8px;*/
		background: #030220;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	  }
	  .sb-banner img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		display: block;
	  }
	 
	  .sb-content { padding: 16px 18px 18px; background: #030220}
	  .sb-content h4 {
		font-family: 'Playfair Display', serif;
		font-size: 19px;
		font-weight: 700;
		color: #e1c377;
		margin: 0 0 6px;
	  }
	  .sb-content p {
		font-size: 13px;
		line-height: 1.6;
		color: rgba(255,255,255,0.65);
		margin: 0 0 16px;
	  }
	 
	  .sb-btn {
		display: block;
		width: 100%;
		text-align: center;
		padding: 13px;
		border-radius: var(--radius);
		background: #e1c377;
		color: #12161f;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 1px;
		text-transform: uppercase;
		text-decoration: none;
		transition: var(--transition);
	  }
	  .sb-btn:hover {
		background: #ecd28f;
		transform: translateY(-2px);
		box-shadow: 0 8px 24px rgba(225,195,119,0.35);
	  }
	 
	  @media (max-width: 480px) {
		.sb-popup { right: 16px; bottom: 92px; width: calc(100vw - 32px); }
		.sb-bubble { right: 16px; bottom: 20px; background: #030220}
	  }
	  
	
	/* Bubble default state — round icon button (popup open) */
	.sb-bubble {
	  position: fixed;
	  bottom: 28px;
	  right: 28px;
	  width: 60px;
	  height: 60px;
	  border-radius: 50%;
	  background: #12161f;
	  border: 1px solid rgba(201,168,76,0.35);
	  box-shadow: var(--shadow-lg);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  cursor: pointer;
	  z-index: 9999;
	  transition: var(--transition);
	  opacity: 0;
	  transform: scale(0.7);
	  pointer-events: none;
	}
	.sb-bubble.show {
	  opacity: 1;
	  transform: scale(1);
	  pointer-events: auto;
	}
	.sb-bubble:hover { transform: scale(1.08); }
	.sb-bubble .sb-icon-minimize { width: 24px; height: 24px; fill: #e1c377; display: block; }
	.sb-bubble .sb-restore-label { display: none; }

	/* Minimized state — becomes a pill-shaped label button instead of a plain icon */
	.sb-bubble.minimized {
	  width: auto;
	  height: auto;
	  border-radius: 10px;
	  padding: 8px 8px;
	  animation: sbMiniPulse 2.2s infinite;
	}
	.sb-bubble.minimized .sb-icon-minimize { display: none; }
	.sb-bubble.minimized .sb-restore-label {
	  display: block;
	  font-family: 'Inter', sans-serif;
	  font-size: 13px;
	  font-weight: 700;
	  letter-spacing: 0.3px;
	  color: #e1c377;
	  white-space: nowrap;
	}

	@keyframes sbMiniPulse {
	  0%   { box-shadow: 0 0 0 0 rgba(225,195,119,0.35); }
	  70%  { box-shadow: 0 0 0 14px rgba(225,195,119,0); }
	  100% { box-shadow: 0 0 0 0 rgba(225,195,119,0); }
	}

	@media (max-width: 480px) {
	  .sb-bubble.minimized { padding: 12px 16px; }
	  .sb-bubble.minimized .sb-restore-label { font-size: 12px; }
	}
	  
	/*2nd button  */
	.sb-bubble-2 {
	  position: fixed;
	  bottom: 100px; /* stacked above the main bubble */
	  right: 28px;
	  width: 60px;
	  height: 60px;
	  border-radius: 50%;
	  background: #12161f;
	  border: 1px solid rgba(201,168,76,0.35);
	  box-shadow: var(--shadow-lg);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  cursor: pointer;
	  z-index: 9999;
	  transition: var(--transition);
	  opacity: 0;
	  transform: scale(0.7);
	  pointer-events: none;
	}
	.sb-bubble-2.show {
	  opacity: 1;
	  transform: scale(1);
	  pointer-events: auto;
	}
	.sb-bubble-2:hover { transform: scale(1.08); }
	.sb-bubble-2 .sb-icon-minimize { width: 24px; height: 24px; fill: #e1c377; display: block; }
	.sb-bubble-2 .sb-restore-label { display: none; }

	.sb-bubble-2.minimized {
	  width: auto;
	  height: auto;
	  border-radius: 10px;
	  padding: 8px 8px;
	  animation: sbMiniPulse 2.2s infinite;
	}
	.sb-bubble-2.minimized .sb-icon-minimize { display: none; }
	.sb-bubble-2.minimized .sb-restore-label {
	  display: block;
	  font-family: 'Inter', sans-serif;
	  font-size: 13px;
	  font-weight: 700;
	  letter-spacing: 0.3px;
	  color: #e1c377;
	  white-space: nowrap;
	}

	@media (max-width: 480px) {
	  .sb-bubble-2.minimized { padding: 12px 16px; }
	  .sb-bubble-2.minimized .sb-restore-label { font-size: 12px; }
	}
	/*end new button*/

	/* New: full-width row for authorities logos, centered under the columns */
	.footer-authorities-row {
	  text-align: center;
	  padding-top: 2px;
	  margin-bottom: 10px;
	}
	.footer-authorities-row h4 {
	  font-size: 12px;
	  font-weight: 700;
	  letter-spacing: 2px;
	  text-transform: uppercase;
	  color: var(--gold);
	  margin-bottom: 3px;
	}

	.authorities {
	  max-width: 480px;
	  margin: 0 auto;
	  display: grid;
	  grid-template-columns: repeat(5, 1fr);
	  gap: 16px;
	  background: #fff;
	  padding: 10px;
	  border-radius: var(--radius);
	  align-items: center;
	}
	.authorities img {
	  width: 100%;
	  height: 40px;
	  object-fit: contain;
	}
	
	
	/* ── Sky Booking Partner CTA ── */
	/*.sb-cta-section {
	  background: #0a1628;
	  padding: 20px 32px;
	  text-align: center;
	}
	.sb-cta-inner {
	  max-width: 1020px;
	  margin: 0 auto;
	}
	.sb-cta-label {
	  display: inline-block;
	  font-size: 11px;
	  font-weight: 700;
	  letter-spacing: 3px;
	  text-transform: uppercase;
	  color: #c9a84c;
	  margin-bottom: 14px;
	}
	.sb-cta-heading {
	  font-family: 'Playfair Display', serif;
	  font-size: clamp(32px, 4vw, 46px);
	  font-weight: 700;
	  color: #c9a84c;
	  margin-bottom: 22px;
	}
	.sb-cta-text {
	  font-family: 'Inter', sans-serif;
	  font-size: 15.5px;
	  line-height: 1.85;
	  color: #979ba3;
	  margin-bottom: 20px;
	}
	.sb-cta-btn {
	  display: inline-flex;
	  align-items: center;
	  gap: 8px;
	  padding: 15px 38px;
	  background: #c9a84c;
	  color: #fcfaf4;
	  font-family: 'Inter', sans-serif;
	  font-size: 13px;
	  font-weight: 700;
	  letter-spacing: 1.5px;
	  text-transform: uppercase;
	  border-radius: 8px;
	  text-decoration: none;
	  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
	}
	.sb-cta-btn:hover {
	  background: #fefefe;
	  color: var(--navy);
	}*/
	
	/* ── Sky Booking Partner CTA ── */
	.sb-cta-section {
	  position: relative;
	  background-image:
		linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.82) 60%, rgba(10,22,40,0.92) 100%),
		url('https://dev.slbay.lk/assets/uploads/media/2f43acd3f3af65316c064bb5da74924b.webp'); /* ← replace with your image path */
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-attachment: fixed;
	  padding: 20px 32px;
	  text-align: center;
	  overflow: hidden;
	}
	.sb-cta-inner {
	  position: relative;
	  z-index: 2;
	  max-width: 1020px;
	  margin: 0 auto;
	} 
	
	/* Powered by badge — fixed to the right side of the section */
	.sb-cta-powered {
	  position: absolute;
	  top: 90%;
	  right: 30px;
	  transform: translateY(-50%);
	  z-index: 3;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 0px;
	  background: rgba(3, 3, 3, 0.11);
	  border: 1px solid rgba(201,168,76,0.25);
	  border-radius: var(--radius-lg);
	  padding: 0px 15px;
	  backdrop-filter: blur(6px);
	}
	.sb-cta-powered span {
	  font-family: 'Inter', sans-serif;
	  font-size: 10px;
	  font-weight: 600;
	  letter-spacing: 1.5px;
	  text-transform: uppercase;
	  color: #979ba3;
	}
	.sb-cta-powered img {
	  max-width: 190px;
	  max-height: 60px;
	  width: auto;
	  height: auto;
	  object-fit: contain;
	  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
	}

	.sb-cta-label {
	  display: inline-block;
	  font-size: 11px;
	  font-weight: 700;
	  letter-spacing: 3px;
	  text-transform: uppercase;
	  color: #c9a84c;
	  margin-bottom: 14px;
	}
	.sb-cta-heading {
	  font-family: 'Playfair Display', serif;
	  font-size: clamp(32px, 4vw, 46px);
	  font-weight: 700;
	  color: #c9a84c;
	  margin-bottom: 22px;
	}
	.sb-cta-text {
	  font-family: 'Inter', sans-serif;
	  font-size: 15.5px;
	  line-height: 1.85;
	  color: #979ba3;
	  margin-bottom: 20px;
	}
	.sb-cta-btn {
	  display: inline-flex;
	  align-items: center;
	  gap: 8px;
	  padding: 15px 38px;
	  background: #c9a84c;
	  color: #fcfaf4;
	  font-family: 'Inter', sans-serif;
	  font-size: 13px;
	  font-weight: 700;
	  letter-spacing: 1.5px;
	  text-transform: uppercase;
	  border-radius: 8px;
	  text-decoration: none;
	  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
	}
	.sb-cta-btn:hover {
	  background: #fefefe;
	  color: var(--navy);
	}

	/* Responsive — badge moves above content on smaller screens */
	@media (max-width: 1100px) {
	  .sb-cta-powered {
		position: static;
		transform: none;
		flex-direction: row;
		justify-content: center;
		margin: 0 auto 28px;
		width: fit-content;
	  }
	}
	@media (max-width: 640px) {
	  .sb-cta-section {
		padding: 56px 20px;
		background-attachment: scroll;
	  }
	  .sb-cta-powered { padding: 10px 16px; }
	  .sb-cta-powered img { max-width: 100px; max-height: 36px; }
	  .sb-cta-text { font-size: 14px; }
	  .sb-cta-btn { width: 100%; justify-content: center; }
	}

	/* Responsive */
	@media (max-width: 640px) {
	.sb-cta-section {
	padding: 56px 20px;
	background-attachment: scroll; /* fixed backgrounds are jittery/unsupported well on mobile */
	}
	.sb-cta-text { font-size: 14px; }
	.sb-cta-btn { width: 100%; justify-content: center; }
	}

	/* Responsive */
	@media (max-width: 640px) {
	  .sb-cta-section { padding: 56px 20px; }
	  .sb-cta-text { font-size: 14px; }
	  .sb-cta-btn { width: 100%; justify-content: center; }
	}
	
	
	
	
	
	
	/* ===== Custom language switcher ===== */
.lang-switcher {
  position: relative;
  display: inline-block;
  font-family: inherit;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lang-toggle:hover {
  border-color: rgba(0,0,0,0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.lang-flag { font-size: 16px; line-height: 1; }
.lang-caret { transition: transform 0.2s; color: #888; }
.lang-toggle[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  list-style: none;
  margin: 0;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 999;
}
.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu li { margin: 0; }
.lang-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #222;
  text-align: left;
}
.lang-menu button:hover { background: #f2f4f7; }
.lang-menu button.active { background: #eef6ff; color: #0b63d6; font-weight: 600; }

/* ===== Kill every trace of Google's default translate UI ===== */

.goog-te-banner-frame,
.goog-te-balloon-frame,
#google_translate_element,
.goog-te-gadget,
.skiptranslate iframe {
  display: none !important;
  height: 0 !important;
  visibility: hidden !important;
}
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* Add this alongside your existing .booking-form-msg.msg-error rule */
.booking-form-msg.msg-success {
  background: #e8f7ee;
  color: #1f7a52;
  border: 1px solid #b8e6cc;
}