/* Color Palette & Variables */
:root {
  --primary: #0A1128; /* Deep Sapphire/Navy */
  --secondary: #1F3B73;
  --gold: #D4AF37; /* Premium Gold */
  --gold-hover: #b5952f;
  --text-light: #F8F9FA;
  --text-muted: #B0B5C1;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html, body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--primary);
  color: var(--text-light);
  overflow-x: hidden;
  width: 100%;
}

/* Background Animation */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  background: url('../image/rolls_royce.png') no-repeat center center/cover;
  z-index: 1;
  animation: panBg 30s linear infinite alternate;
  transition: opacity 0.8s ease-in-out, background-image 0.8s ease-in-out;
}

@keyframes panBg {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-2%, -2%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0.6) 50%, rgba(10, 17, 40, 0.2) 100%);
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 20;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
}

.hero-text-area {
  max-width: 680px;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title {
  font-size: 85px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.title .highlight {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  position: relative;
  font-style: italic;
  display: inline-block;
}

.title .highlight::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  width: 0;
  overflow: hidden;
}

.title .highlight.animate::before {
  animation: fillText 3s ease-in-out forwards;
}

.hero-text-area .subtitle {
  transition: opacity 0.5s ease;
}

/* Reveal Animations */
.reveal-left, .reveal-bottom, .reveal-right {
  opacity: 0;
}

body.loaded .reveal-left {
  animation: revealLeft 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

body.loaded .reveal-bottom {
  animation: revealBottom 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

body.loaded .reveal-right {
  animation: revealRight 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes revealLeft {
  0% { opacity: 0; transform: translateX(-100px) skewX(5deg); filter: blur(15px); }
  100% { opacity: 1; transform: translateX(0) skewX(0); filter: blur(0); }
}

@keyframes revealBottom {
  0% { opacity: 0; transform: translateY(80px); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes revealRight {
  0% { opacity: 0; transform: translateX(100px) skewX(-5deg); filter: blur(15px); }
  100% { opacity: 1; transform: translateX(0) skewX(0); filter: blur(0); }
}

/* Staggered Delay Helpers */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Background Cinematic Scale */
.hero-bg.zoom-effect {
  animation: bgZoom 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes bgZoom {
  0% { transform: scale(1.1); filter: brightness(1.5); }
  100% { transform: scale(1); filter: brightness(1); }
}

@keyframes fillText {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Ultra-Premium Aviation Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 90px;
  background: rgba(10, 17, 40, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.scroll-top i {
  color: var(--gold);
  font-size: 18px;
  transition: all 0.3s ease;
  animation: planeFloat 2s ease-in-out infinite;
}

.scroll-top .scroll-percent {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Vertical Progress Line */
.scroll-line-container {
  position: absolute;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-line-fill {
  position: absolute;
  top: 0;
  width: 100%;
  height: 0%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.scroll-top:hover {
  background: rgba(10, 17, 40, 0.8);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.scroll-top:hover i {
  transform: translateY(-10px) scale(1.2);
}

@keyframes planeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.scroll-top.taking-off i {
  animation: takeoff 0.8s ease-in forwards;
}

@keyframes takeoff {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-500px); opacity: 0; }
}

/* Powerful Floating Contact Icons */
.floating-contact-bar {
  position: fixed;
  left: 15px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}

.contact-item {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-item i {
  font-size: 24px;
  transition: all 0.3s ease;
}

/* WhatsApp Specific */
.contact-item.whatsapp i { color: #25D366; }
.contact-item.whatsapp:hover {
  background: #25D366;
  border-color: #fff;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

/* Call Specific */
.contact-item.call i { color: var(--gold); }
.contact-item.call:hover {
  background: var(--gold);
  border-color: #fff;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.contact-item:hover i {
  color: #fff !important;
  transform: scale(1.2) rotate(10deg);
}

/* Tooltip Styling */
.contact-item .tooltip {
  position: absolute;
  left: 70px;
  background: rgba(10, 17, 40, 0.9);
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-item:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Pulse Animation */
.contact-item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: contactPulse 2s infinite;
  opacity: 0;
}

@keyframes contactPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

.subtitle {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 550px;
  font-weight: 300;
}

.action-group {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 40px;
}

.btn-gold {
  position: relative;
  padding: 18px 45px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  border: none;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(45deg, var(--gold), transparent, var(--gold), transparent);
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  animation: borderGlow 4s linear infinite;
  transition: all 0.4s ease;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
  transform: translateY(-5px) scale(1.02);
}

.btn-gold:hover::before {
  opacity: 0;
}

.btn-gold i {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 18px;
}

.btn-gold:hover i {
  transform: translateX(8px);
}

.play-video {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.play-video:hover {
  color: var(--gold);
}

.play-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: var(--transition);
}

.play-video:hover .play-btn {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.play-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse 2s infinite;
  opacity: 0;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.stats-container {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item i {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 12px;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 45px;
  background: var(--glass-border);
}

/* Pinned Destinations Design */
.hero-destination-pins {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-destination-pins.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.flight-path-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.dest-pin {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pin-1 { top: 10%; left: 0; animation: floatPin1 6s ease-in-out infinite; }
.pin-2 { top: 30%; left: 38%; animation: floatPin2 7s ease-in-out infinite; }
.pin-3 { top: 12%; right: -5%; animation: floatPin3 8s ease-in-out infinite; }

@keyframes floatPin1 { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-15px) rotate(1deg); } }
@keyframes floatPin2 { 0%, 100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-25px) rotate(-1deg); } }
@keyframes floatPin3 { 0%, 100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-18px) rotate(-1deg); } }

.pin-marker {
  width: 190px;
  height: 190px;
  background: transparent;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.3);
  position: relative;
  border: 3px solid #fff;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  z-index: 5;
}

/* Glowing Pulse Rings */
.pin-marker::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pinPulse 2.5s infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes pinPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.pin-marker::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: linear-gradient(to bottom, var(--gold), #927218);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: -1;
}

.pin-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.5);
  position: relative;
}

.pin-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: saturate(1.1) contrast(1.1);
}

.dest-pin:hover {
  z-index: 10;
}

.dest-pin:hover .pin-marker {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212, 175, 55, 0.6);
  border-color: var(--gold);
}

.dest-pin:hover .pin-inner img {
  transform: scale(1.25);
}

.pin-info {
  margin-top: 45px;
  text-align: center;
  background: rgba(10, 17, 40, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 28px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  position: relative;
}

.pin-info::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.dest-pin:hover .pin-info {
  background: rgba(10, 17, 40, 0.9);
  border-color: var(--gold);
  transform: translateY(8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 15px rgba(212,175,55,0.2);
}

.pin-loc {
  display: block;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  color: #fff;
}

.pin-price {
  display: block;
  font-size: 13px;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 500;
}

.flight-path-svg path {
  stroke: url(#pathGradient);
  stroke-width: 3;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

/* Airplane Animation on Path */
.airplane-icon {
  offset-path: path("M100,150 Q400,350 700,160");
  offset-rotate: auto;
  animation: followPath 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)) drop-shadow(0 0 5px var(--gold));
}

@keyframes followPath {
  0% { offset-distance: 0%; opacity: 1; transform: scale(1); }
  95% { opacity: 1; transform: scale(1); }
  100% { offset-distance: 100%; opacity: 0; transform: scale(1); }
}


/* Curated Experiences Section */
.experiences-section {
  padding: 120px 80px;
  background: #fdfdfd;
  position: relative;
  z-index: 5;
  overflow: hidden;
  width: 100%;
}

.section-bg-text {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 180px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(212, 175, 55, 0.15);
  letter-spacing: 40px;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 55px;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 20px;
}

.highlight-gold {
  color: var(--gold);
  font-style: italic;
}

.section-subtitle {
  color: #555;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.experiences-section {
  position: relative;
  background: #fdfdfd;
  padding: 120px 0;
  overflow: hidden;
}

.gold-dust-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.gold-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(1px);
  animation: floatDust 10s linear infinite;
  box-shadow: 0 0 10px var(--gold);
}

@keyframes floatDust {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  20% { opacity: 0.4; }
  50% { transform: translateY(-200px) translateX(50px) scale(1.5); }
  80% { opacity: 0.4; }
  100% { transform: translateY(-400px) translateX(-50px) scale(1); opacity: 0; }
}

.luxury-expansion-showcase {
  display: flex;
  width: 100%;
  height: 540px;
  gap: 15px;
  padding: 0 40px;
  max-width: 1250px;
  margin: 0 auto;
  perspective: 2000px;
}

.showcase-info {
  max-width: 650px;
  transform: translateY(40px) translateZ(60px);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  transform-style: preserve-3d;
}

.showcase-item.active .showcase-info {
  transform: translateY(0) translateZ(100px);
}

.showcase-item {
  position: relative;
  flex: 1;
  height: 100%;
  border-radius: 100px 40px 100px 40px;
  overflow: hidden;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
}

.showcase-item.active {
  flex: 7;
  border-radius: 40px;
  box-shadow: 0 40px 120px rgba(10, 17, 40, 0.6), 0 0 60px rgba(212, 175, 55, 0.2);
  transform: scale(1.02);
  z-index: 10;
}

.showcase-item.active::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--gold);
  border-radius: 40px;
  opacity: 0.4;
  z-index: 11;
  pointer-events: none;
}

.collapsed-title {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  z-index: 4;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-transform: uppercase;
}

.showcase-item.active .collapsed-title {
  opacity: 0;
  transform: translateX(-50%) rotate(-90deg) translateY(40px);
}

.showcase-number {
  position: absolute;
  top: 60px;
  left: 50px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  z-index: 5;
  transition: all 0.8s ease;
  pointer-events: none;
  line-height: 1;
}

.showcase-item.active .showcase-number {
  color: rgba(212, 175, 55, 0.1);
  font-size: 200px;
  top: -20px;
  left: -20px;
}

.showcase-category-icon {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  z-index: 12;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(15px);
}

.showcase-item.active .showcase-category-icon {
  transform: scale(1.15) rotate(360deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}



.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s ease, filter 1s ease;
  filter: brightness(0.5) grayscale(40%);
}

.showcase-item.active img {
  filter: brightness(0.8) grayscale(0%);
  transform: scale(1.1);
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0.4) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.7s ease 0.4s;
}

.showcase-item.active .showcase-overlay {
  opacity: 1;
}

.showcase-info {
  max-width: 650px;
  transform: translateY(40px);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}

.showcase-item.active .showcase-info {
  transform: translateY(0);
}

.showcase-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
  padding-left: 40px;
  position: relative;
}

.showcase-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.showcase-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.showcase-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 450px;
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.showcase-link:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}




/* Luxury Footer */
/* Tour Packages Section */
.packages-section {
  padding: 70px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.packages-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 17, 40, 0.12);
  border-color: rgba(212, 175, 55, 0.2);
}

.package-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.15);
}

.package-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 40, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.package-card:hover .package-image::after {
  opacity: 1;
}

.package-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.package-price-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #fff;
  color: var(--primary);
  padding: 8px 15px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-left: 3px solid var(--gold);
}

.package-content {
  padding: 20px;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  color: #888;
  font-weight: 600;
}

.package-meta i {
  color: var(--gold);
  margin-right: 4px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #ffb800;
}

.package-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.package-card:hover h3 {
  color: var(--gold);
}

.package-content p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.package-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 12px 0;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
}

.package-features span {
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.package-features i {
  color: var(--gold);
  font-size: 14px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.package-btn:hover {
  background: var(--gold);
  color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.package-details-link {
  color: #aaa;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  border-bottom: 1.5px solid transparent;
}

.package-details-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}



/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../image/bentley.png') center/cover no-repeat;
  opacity: 0.1;
  mask-image: linear-gradient(to left, black, transparent);
}

.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.c-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 25px;
}

.c-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.c-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 45px;
}

.c-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.c-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cd-icon {
  width: 55px;
  height: 55px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  transition: all 0.4s ease;
}

.c-detail-item:hover .cd-icon {
  background: var(--gold);
  color: var(--primary);
  transform: scale(1.1);
}

.cd-text span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.cd-text h5 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.c-social {
  display: flex;
  gap: 20px;
}

.c-social a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.4s ease;
}

.c-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
  transform: translateY(-5px);
}

/* Contact Form Panel */
.glass-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.glass-form input,
.glass-form select,
.glass-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 18px 25px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.glass-form input:focus,
.glass-form select:focus,
.glass-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.glass-form select option {
  background: #050a17;
  color: #fff;
}

.c-submit-btn {
  background: var(--gold);
  color: var(--primary);
  border: none;
  border-radius: 15px;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 10px;
}

.c-submit-btn:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.c-submit-btn i {
  transition: transform 0.4s ease;
}

.c-submit-btn:hover i {
  transform: translate(5px, -5px);
}


/* Blog Section */
.blog-section {
  padding: 100px 0;
  background: #fcfcfc;
}

.blog-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
}

.blog-desc {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.blog-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(10, 17, 40, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
}

.blog-image-box {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.blog-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-card:hover .blog-image-box img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--primary);
  padding: 6px 15px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  letter-spacing: 1px;
}

.blog-info {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #888;
}

.blog-meta i {
  color: var(--gold);
  margin-right: 5px;
}

.blog-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover h4 {
  color: var(--gold);
}

.blog-info p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-btn-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.blog-btn-link:hover {
  color: var(--gold);
}

.blog-btn-link:hover i {
  transform: translateX(5px);
}


/* Statistics Counter Section */
.stats-section {
  padding: 80px 0;
  background: #040812;
  position: relative;
  overflow: hidden;
}

/* Animated Grid Background */
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.stats-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.s-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  margin-bottom: 15px;
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 15px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.s-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #fff;
  margin-bottom: 15px;
}

.s-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(15px);
  padding: 40px 20px;
  border-radius: 40px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  animation: floatStat 8s ease-in-out infinite;
  
  /* Make Square */
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Glass Reflection Effect */
.stat-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: rotate(45deg);
  transition: 0.8s;
  pointer-events: none;
}

.stat-card:hover::after {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.stat-icon-box {
  width: 65px;
  height: 65px;
  min-width: 65px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 24px;
  position: relative;
  transition: all 0.6s ease;
  flex-shrink: 0;
}

.stat-card:hover .stat-icon-box {
  background: var(--gold);
  color: #040812;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.s-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  transition: all 0.4s ease;
}

.stat-card:hover .s-number {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.s-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  transition: all 0.4s ease;
}

.stat-card:hover .s-label {
  color: #fff;
}

/* Animation Keyframes */
@keyframes floatStat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}


/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background: #fff;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
}

.gallery-desc {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  background: #f0f0f0;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.g-item.span-v { grid-row: span 2; }
.g-item.span-h { grid-column: span 2; }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 40, 0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.5s ease;
  transform: translateY(20px);
}

.g-item:hover .g-overlay {
  opacity: 1;
  transform: translateY(0);
}

.g-item:hover img {
  transform: scale(1.15);
}

.g-overlay h5 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 5px;
}

.g-overlay p {
  font-size: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}


/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 20px;
}

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
}

.testimonials-desc {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(10, 17, 40, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   Testimonials Slider Navigation Buttons
   ========================================================================== */
.testimonials-slider-container {
  position: relative;
  width: 100%;
}

.t-nav-btn {
  display: none; /* Hide by default on desktop (static 3-column grid) */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 14px;
  background: #0A1128; /* Deep Navy Sapphire */
  color: var(--gold); /* Gold chevrons */
  box-shadow: 0 10px 25px rgba(10, 17, 40, 0.25);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.t-nav-btn:hover {
  background: var(--gold);
  color: #0A1128;
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.t-nav-btn.prev {
  left: -23px;
}

.t-nav-btn.next {
  right: -23px;
}

.testimonial-card.spotlight {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
  z-index: 2;
}

.testimonial-card.spotlight .t-text,
.testimonial-card.spotlight .t-info h4 {
  color: #fff;
}

.testimonial-card.spotlight .t-info span {
  color: rgba(255, 255, 255, 0.6);
}

.t-quote {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: rgba(212, 175, 55, 0.2);
}

.testimonial-card.spotlight .t-quote {
  color: rgba(255, 255, 255, 0.1);
}

.t-rating {
  color: #ffb800;
  font-size: 14px;
  margin-bottom: 25px;
}

.t-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.t-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.t-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 2px;
}

.t-info span {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Honeymoon Section */
.honeymoon-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.honeymoon-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.honeymoon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.honeymoon-tag {
  display: inline-block;
  color: #ff6b6b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 25px;
}

.honeymoon-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.1;
}

.honeymoon-desc {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 45px;
}

.honeymoon-amenities {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.amenity-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.amenity-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.amenity-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 5px;
}

.amenity-text p {
  font-size: 14px;
  color: #888;
}

.honeymoon-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #ff6b6b;
  color: #fff;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.honeymoon-cta:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(10, 17, 40, 0.3);
}

.honeymoon-visuals {
  position: relative;
}

.h-visual-main {
  width: 80%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  position: relative;
}

.h-visual-main img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 1s ease;
}

.h-visual-sub {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 50%;
  border-radius: 30px;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.h-visual-sub img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.h-visual-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  backdrop-filter: blur(5px);
}

.deco-heart {
  position: absolute;
  top: 50%;
  left: -40px;
  width: 80px;
  height: 80px;
  background: #ff6b6b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: 5px solid #fff;
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
  animation: heartBeat 2s infinite;
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}




/* Flight Booking Section */
.flight-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.flight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 10, 23, 0.9) 0%, rgba(5, 10, 23, 0.5) 100%);
}

.flight-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

.flight-content-top {
  text-align: center;
  margin-bottom: 50px;
}

.flight-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 20px;
}

.flight-title {
  font-family: 'Playfair Display', serif;
  font-size: 55px;
  color: #fff;
  margin-bottom: 20px;
}

.flight-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.flight-search-card {
  background: #fff;
  border-radius: 25px;
  padding: 35px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  margin-bottom: 50px;
}

.flight-tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.f-tab {
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  padding: 5px 0;
  position: relative;
  transition: var(--transition);
}

.f-tab.active {
  color: var(--primary);
}

.f-tab.active::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
}

.f-search-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 0.7fr;
  gap: 15px;
  align-items: flex-end;
}

.f-input-box label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.f-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: var(--transition);
}

.f-input:focus-within {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 8px 15px rgba(212, 175, 55, 0.1);
}

.f-input i {
  color: var(--gold);
  font-size: 16px;
}

.f-input input, .f-input select {
  border: none;
  background: none;
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--primary);
  outline: none;
}

.f-search-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.f-search-btn:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.flight-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.f-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.f-stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
}

.f-stat-text h5 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 2px;
}

.f-stat-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Visa Services Section */
.visa-section {
  padding: 100px 0;
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
}

.visa-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.visa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.visa-visual {
  position: relative;
}

.visa-image-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.1);
  z-index: 2;
}

.visa-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.visa-floating-card {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background: #fff;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
  border-left: 5px solid var(--gold);
}

.visa-floating-card i {
  color: #28a745;
  font-size: 30px;
}

.visa-floating-card h5 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 2px;
}

.visa-floating-card p {
  font-size: 12px;
  color: #777;
}

.visa-deco-circle {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.visa-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 20px;
}

.visa-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.2;
}

.visa-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}

.visa-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.visa-step {
  display: flex;
  gap: 20px;
  align-items: center;
}

.step-num {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.step-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 4px;
}

.step-text p {
  font-size: 14px;
  color: #888;
}

.visa-types {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.visa-type-tag {
  background: #f0f0f0;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.visa-type-tag i {
  color: var(--gold);
}

.visa-type-tag:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.visa-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--primary);
  color: #fff;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.4s ease;
}

.visa-cta:hover {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}


/* Bespoke Concierge Section */
.concierge-section {
  background: #050a17;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.concierge-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.concierge-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.concierge-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 25px;
}

.concierge-title {
  font-family: 'Playfair Display', serif;
  font-size: 55px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.1;
}

.concierge-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 600px;
}

.service-cards-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.service-mini-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: var(--transition);
}

.service-mini-card:hover {
  transform: translateX(10px);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-mini-card:hover .service-icon-box {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.service-details h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.service-details p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.concierge-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--primary);
  background: var(--gold);
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

.concierge-cta-btn:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.concierge-visual {
  position: relative;
}

.concierge-image-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.concierge-image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s ease;
}

.concierge-image-box:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.experience-badge .years {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.experience-badge .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  font-weight: 700;
  margin-top: 5px;
  text-align: center;
}

/* Decorative elements */
.deco-circle {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  z-index: -1;
}

/* Responsive */
@media (max-width: 1400px) {
  .title { font-size: 70px; }
  .hero-content { padding: 0 50px; }
  .hero-cards-area { transform: scale(0.9); margin-right: 0; }
  .experiences-section { padding: 100px 50px; }
}

@media (max-width: 1200px) {
  .hero-content { flex-direction: column; padding: 60px 40px; text-align: center; }
  .hero-overlay { background: rgba(10, 17, 40, 0.85); }
  .hero-text-area { margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; max-width: 800px; }
  .action-group { justify-content: center; }
  .hero-cards-area { margin-bottom: 0; right: auto; transform: scale(0.9) translateX(30px); }
  .luxury-expansion-showcase { height: 500px; padding: 0 20px; gap: 10px; }
  .showcase-info h3 { font-size: 32px; }
  .showcase-number { font-size: 60px; top: 30px; left: 30px; }
  .showcase-item.active .showcase-number { font-size: 100px; }
  .concierge-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .concierge-desc { margin: 0 auto 40px; }
  .service-mini-card { flex-direction: column; align-items: center; text-align: center; }
  .experience-badge { left: 50%; transform: translateX(-50%); bottom: -30px; }
  .concierge-title { font-size: 45px; }
}

@media (max-width: 768px) {
  .title { font-size: 42px; margin-bottom: 10px; }
  .subtitle { font-size: 15px; margin-bottom: 15px; line-height: 1.5; }
  
  .hero-section { padding-top: 0; height: auto; min-height: 100vh; }
  .hero-content { padding: 20px 5px; flex-direction: column; text-align: left; align-items: flex-start; }
  
  .hero-text-area { 
    margin-bottom: 15px; 
    align-items: flex-start; 
    max-width: 100%; 
    padding: 0 5px; 
  }
  
  .action-group { 
    flex-direction: column; 
    width: 100%; 
    gap: 15px; 
    align-items: flex-start;
  }
  
  .btn-gold { 
    width: 100%; 
    justify-content: center; 
    padding: 15px 30px;
    font-size: 13px;
  }

  .play-video {
    width: 100%;
    justify-content: flex-start;
    margin-top: 10px;
  }

  /* Remove Pinned Fleet from Mobile View */
  .hero-destination-pins {
    display: none !important;
  }

  .hero-destination-pins .pin-marker-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }

  .pin-marker {
    width: 100px;
    height: 100px;
    border-width: 1.5px;
    position: relative;
    top: auto; left: auto; right: auto;
    z-index: 5;
  }

  .pin-marker::before {
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-width: 1px;
    animation: pinPulse 3s infinite;
  }

  .pin-marker::after {
    width: 8px;
    height: 8px;
    bottom: -4px;
  }

  /* Responsive Effects for Mobile */
  .pin-1 { position: relative; animation: floatPin1Mobile 5s ease-in-out infinite; }
  .pin-2 { position: relative; animation: floatPin2Mobile 6s ease-in-out infinite; }
  .pin-3 { position: relative; animation: floatPin3Mobile 7s ease-in-out infinite; }

  @keyframes floatPin1Mobile { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  @keyframes floatPin2Mobile { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
  @keyframes floatPin3Mobile { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

  .pin-info {
    margin-top: 8px;
    padding: 2px 4px;
    width: 65px;
    border-radius: 5px;
    background: rgba(10, 17, 40, 0.95);
    text-align: center;
  }

  .pin-loc { font-size: 7px; font-weight: 800; line-height: 1.1; display: block; }
  .pin-price { font-size: 5px; opacity: 0.8; display: block; margin-top: 1px; }

  .flight-path-svg { 
    display: block; 
    width: 100%;
    height: 60px;
    top: 25px;
    opacity: 0.25;
    position: absolute;
    z-index: 0;
  }
  
  .airplane-icon { 
    display: block;
    font-size: 14px;
  }

  /* Simplified Stats Mobile - Mobile Only */
  /* Enhanced Stats Mobile - Vertical Timeline Style */
  /* Professional Vertical Timeline Stats */
  /* Professional Horizontal Stats - One Line */
  /* Luxury Vertical Card Stack Design */
  .stats-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 5px;
    margin: 15px 5px;
    background: transparent;
    border: none;
    width: auto;
    max-width: none;
    box-shadow: none;
    position: relative;
    z-index: 10;
    left: 0;
    right: 0;
  }

  .stats-container::after { display: none; }
  .stats-container::before { display: none; }

  .stats-container::after { 
    content: '';
    position: absolute;
    top: 40px; /* Align with icons */
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
    z-index: 1;
  }

  .stats-container::after { display: none; }

  .stat-item { 
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    width: 100%;
  }

  .stat-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
  }

  .stat-divider { display: none; }

  .stat-item i { 
    font-size: 24px; 
    color: var(--gold);
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
  }

  @keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  .stat-item h3 { 
    font-family: 'Playfair Display', serif;
    font-size: 28px; 
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
    display: block;
  }

  .stat-item p { 
    font-size: 10px; 
    letter-spacing: 1.5px; 
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
  }

  .experiences-section { padding: 60px 10px !important; }
  .section-header, .blog-header, .gallery-header, .stats-section-header { 
    text-align: left; 
    margin-bottom: 40px; 
    padding: 0 10px !important;
  }
  
  .section-subtitle, .blog-desc, .gallery-desc, .s-desc { 
    text-align: left; 
    margin: 0; 
    max-width: 100%; 
    font-size: 14px;
  }

  .section-title, .blog-title, .gallery-title, .s-title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .luxury-expansion-showcase { 
    flex-direction: column; 
    height: auto; 
    gap: 15px; 
    padding: 0 !important; 
  }
  
  .showcase-item { 
    height: 220px; 
    border-radius: 20px; 
    width: 100%; 
  }
  
  .showcase-item:nth-child(n+5) { display: none; }
  
  .showcase-item.active { height: 320px; }
  
  .showcase-overlay {
    padding: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .showcase-info { 
    padding: 0; 
    text-align: left; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .showcase-info h3 { font-size: 20px; margin-bottom: 8px; text-align: left; }
  .showcase-info p { font-size: 13px; line-height: 1.4; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-align: left; width: 100%; }
  
  .showcase-tag { 
    font-size: 10px; 
    margin-bottom: 8px; 
    text-align: left; 
    padding-left: 0;
  }
  
  .showcase-tag::before { display: none; }

  .showcase-link { 
    font-size: 11px; 
    padding: 8px 16px; 
    width: auto; 
    display: inline-flex;
    margin-left: 0;
    margin-right: auto;
  }

  .showcase-category-icon { 
    width: 45px; 
    height: 45px; 
    font-size: 18px; 
    top: 20px; 
    right: 20px; 
  }

  .showcase-number { 
    font-size: 40px; 
    top: 20px; 
    left: 20px; 
  }

  .showcase-item.active .showcase-number { 
    font-size: 80px; 
    top: -10px; 
    left: -10px; 
  }

  .packages-section { padding: 40px 0 !important; }
  
  .packages-container {
    grid-template-columns: 1fr;
    padding: 0 10px !important;
    gap: 20px;
  }

  .package-card {
    width: 100% !important;
    margin: 0 !important;
  }

  .package-image {
    height: 200px;
  }

  .package-content { padding: 20px 15px !important; text-align: left !important; }
  .package-meta { margin-bottom: 8px !important; font-size: 11px !important; display: flex !important; justify-content: flex-start !important; gap: 15px !important; }
  .package-content h3 { font-size: 20px !important; margin-bottom: 6px !important; text-align: left !important; }
  .package-content p { font-size: 13px !important; margin-bottom: 15px !important; line-height: 1.5 !important; text-align: left !important; }
  .package-features { padding: 10px 0 !important; margin-bottom: 15px !important; display: flex !important; justify-content: flex-start !important; gap: 15px !important; border-top: 1px solid #f0f0f0 !important; border-bottom: 1px solid #f0f0f0 !important; }
  .package-features span { font-size: 11px !important; }
  .package-footer { display: flex !important; justify-content: flex-start !important; gap: 15px !important; }
  .package-btn { padding: 10px 20px !important; border-radius: 10px !important; font-size: 12px !important; }
  .package-details-link { font-size: 12px !important; display: flex !important; align-items: center !important; }
  .contact-section { padding: 60px 0; }
  .contact-container { padding: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .contact-info-panel { text-align: left; padding: 0 10px; }
  .c-tag { margin-bottom: 15px; font-size: 10px; }
  .c-title { font-size: 32px; margin-bottom: 15px; text-align: left; }
  .c-desc { font-size: 14px; margin-bottom: 30px; text-align: left; }
  
  .c-details { gap: 20px; margin-bottom: 35px; padding: 0 15px; }
  .cd-icon { width: 45px; height: 45px; font-size: 16px; }
  .cd-text h5 { font-size: 18px; }
  
  .glass-form { padding: 30px 15px; border-radius: 0; border-left: none; border-right: none; width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 15px; }
  .blog-header { padding: 0 5px !important; }
  .blog-container { padding: 0 10px !important; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-image-box { height: 200px; }
  .blog-info { padding: 15px; }
  .blog-meta { margin-bottom: 8px; font-size: 11px; gap: 12px; }
  .blog-info h4 { font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
  .blog-info p { font-size: 13px; margin-bottom: 12px; line-height: 1.4; }
  .blog-btn-link { font-size: 12px; }

  /* Stats Section Professional Responsive */
  .stats-section { padding: 30px 0 60px !important; margin-top: 0 !important; }
  .stats-container { 
    display: flex; 
    flex-direction: column; 
    padding: 0 !important; 
    text-align: left;
    margin-top: 0 !important;
  }
  
  .stats-section-header { text-align: left; margin: 0 0 30px 0 !important; padding: 0 10px !important; }
  .s-title { font-size: 32px; text-align: left; margin: 0 !important; padding: 0 !important; }
  .s-desc { text-align: left; margin: 0; max-width: 100%; padding: 0 !important; }

  .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px; 
    padding: 0 10px !important; 
  }

  .stat-card { 
    padding: 30px 15px; 
    display: flex; 
    flex-direction: column-reverse; 
    align-items: center; 
    text-align: center;
    gap: 15px;
    height: auto;
    border-radius: 30px;
  }

  .stat-icon-box { 
    width: 50px !important; 
    height: 50px !important; 
    min-width: 50px !important;
    max-width: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1) !important;
    border: 1.5px solid var(--gold) !important;
    margin: 0 auto !important;
    flex-shrink: 0;
  }

  .stat-icon-box i { font-size: 18px; color: var(--gold); }

  .s-number { font-size: 26px; margin-bottom: 5px; font-weight: 800; display: block; }
  .s-label { font-size: 10px; opacity: 0.7; letter-spacing: 1px; text-transform: uppercase; display: block; }
  .stat-deco { display: none; }

  /* Gallery Section Professional Responsive */
  .gallery-section { padding: 60px 0 !important; }
  .gallery-container { padding: 0 !important; text-align: left; }
  .gallery-header { text-align: left; margin-bottom: 30px; padding: 0 10px !important; }
  .gallery-title { font-size: 32px; text-align: left; }
  .gallery-desc { text-align: left; margin: 0 auto 0 0; max-width: 100%; padding: 0 !important; }

  .gallery-grid-masonry { 
    grid-template-columns: 1fr; 
    gap: 15px; 
    height: auto; 
    padding: 0 10px !important;
  }
  
  .g-item.span-v, .g-item.span-h { grid-column: span 1; grid-row: span 1; height: 250px; }
  .g-item { height: 250px; }

  /* Testimonials Section Professional Responsive Slider */
  .testimonials-section { 
    padding: 20px 0 60px !important; 
    margin-top: -30px;
    overflow: hidden; 
  }
  .testimonials-container { padding: 0 !important; text-align: left; position: relative; }
  .testimonials-header { text-align: left; margin-bottom: 20px; padding: 0 10px !important; }
  .testimonials-title { font-size: 28px; text-align: left; }
  .testimonials-desc { text-align: left; margin: 0 0 20px 0; max-width: 100%; font-size: 13px; padding: 0 !important; }

  .testimonials-slider-container { 
    position: relative; 
    width: 100%; 
  }

  .testimonials-slider-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .testimonials-slider-wrapper::-webkit-scrollbar { display: none; }

  .testimonials-grid { 
    display: flex;
    gap: 10px; 
    padding: 0 10px !important;
    width: max-content;
  }

  .testimonial-card { 
    width: calc(100vw - 10px); 
    min-width: calc(100vw - 10px);
    padding: 30px 20px; 
    text-align: left;
    scroll-snap-align: center;
    transition: all 0.3s ease;
    background: #fff;
    color: var(--primary);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 40px;
  }

  .testimonial-card.spotlight {
    background: #0a1128;
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }

  .testimonial-card.spotlight h4, 
  .testimonial-card.spotlight .t-text,
  .testimonial-card.spotlight span { color: #fff; }

  .t-nav-btn { 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex; 
    align-items: center;
    justify-content: center;
    width: 45px; 
    height: 45px; 
    border-radius: 50%;
    border: none;
    font-size: 14px;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
  }
  .t-nav-btn:hover { background: var(--gold); color: #fff; }
  .t-nav-btn.prev { left: 10px; }
  .t-nav-btn.next { right: 10px; }

  @media (max-width: 768px) {
    .testimonials-title { font-size: 28px; }
    .t-nav-btn { 
      width: 40px; 
      height: 40px; 
      font-size: 12px; 
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .t-nav-btn.prev { left: 5px; }
    .t-nav-btn.next { right: 5px; }
  }

  /* Wedding/Honeymoon Section Professional Responsive */
  .honeymoon-section { padding: 60px 10px !important; }
  .honeymoon-container { padding: 0 !important; text-align: left; }
  .honeymoon-grid { grid-template-columns: 1fr; gap: 40px; }
  .honeymoon-content { text-align: left; }
  .honeymoon-title { font-size: 32px; text-align: left; }
  .honeymoon-desc { text-align: left; margin: 0 0 30px 0; max-width: 100%; }
  
  .honeymoon-amenities { display: flex; flex-direction: column; gap: 20px; margin-bottom: 35px; }
  .amenity-item { display: flex; align-items: flex-start; text-align: left; gap: 15px; }
  .amenity-text h4 { font-size: 16px; margin-bottom: 4px; }
  .amenity-text p { font-size: 13px; line-height: 1.4; }

  .honeymoon-visuals { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
  .h-visual-main { 
    height: 300px; 
    width: 100%;
    border-radius: 30px; 
    overflow: hidden;
    position: relative;
  }
  .h-visual-main img { width: 100%; height: 100%; object-fit: cover; }
  .h-visual-tag { position: absolute; bottom: 20px; left: 20px; font-size: 12px; padding: 8px 18px; background: rgba(255,255,255,0.9); border-radius: 50px; font-weight: 600; color: var(--primary); }
  
  .deco-heart {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    z-index: 10;
    border: 3px solid #fff;
  }
  .h-visual-sub { display: none; } /* Hide sub image for cleaner mobile view */
  .honeymoon-cta { width: 100%; justify-content: center; text-align: center; margin-top: 10px; }

  /* Corporate Section Responsive */
  .flight-section { padding: 50px 0; background-attachment: scroll; }
  .flight-container { padding: 0 15px; text-align: left; }
  .flight-content-top { text-align: left; margin-bottom: 25px; }
  .flight-title { font-size: 32px; text-align: left; line-height: 1.2; }
  .flight-desc { text-align: left; margin: 0; font-size: 14px; line-height: 1.5; max-width: 100%; }

  .flight-search-card { padding: 25px 15px; border-radius: 20px; margin-bottom: 0; }
  .f-search-inputs { display: grid; grid-template-columns: 1fr; gap: 15px; }
  .f-input-box label { font-size: 11px; margin-bottom: 5px; color: #888; }
  .f-input { padding: 12px; border-radius: 12px; background: #f8f9fa; }
  .f-input i { font-size: 14px; color: var(--gold); }
  .f-input input, .f-input select { font-size: 13px; }
  
  .f-search-btn { width: 100%; margin-top: 10px; padding: 15px; border-radius: 12px; font-size: 14px; }
}

@media (max-width: 768px) {
  .flight-stats { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    margin-top: 30px; 
    align-items: flex-start; 
  }
  .f-stat-item { gap: 15px; }
  .f-stat-icon { width: 45px; height: 45px; font-size: 18px; }
  .f-stat-text h5 { font-size: 20px; }

  /* Airport VIP Transfers Responsive */
  .visa-section { padding: 50px 0; }
  .visa-container { padding: 0 15px; text-align: left; }
  .visa-grid { grid-template-columns: 1fr; gap: 40px; }
  .visa-content { text-align: left; }
  .visa-tag { display: inline-block; margin-bottom: 15px; }
  .visa-title { font-size: 32px; text-align: left; line-height: 1.2; margin-bottom: 20px; }
  .visa-desc { text-align: left; margin: 0 0 30px 0; font-size: 14px; line-height: 1.5; }

  .visa-steps { display: flex; flex-direction: column; gap: 20px; }
  .visa-step { display: flex; align-items: flex-start; text-align: left; gap: 15px; }
  .step-num { min-width: 45px; height: 45px; font-size: 16px; }
  .step-text h4 { font-size: 18px; margin-bottom: 5px; }
  .step-text p { font-size: 13px; line-height: 1.4; margin: 0; }

  .visa-image-wrapper { height: 300px; border-radius: 30px; margin-top: 20px; }
  .visa-floating-card { bottom: 20px; right: 20px; left: 20px; padding: 15px; width: auto; border-radius: 20px; }

  /* Elite Chauffeur / Concierge Section Responsive */
  .concierge-section { padding: 50px 0; }
  .concierge-container { padding: 0 5px; text-align: left; }
  .concierge-tag { display: inline-block; margin-bottom: 15px; padding: 0 10px; }
  .concierge-title { font-size: 32px; text-align: left; line-height: 1.2; margin-bottom: 20px; padding: 0 10px; }
  .concierge-desc { text-align: left; margin: 0 0 30px 0; font-size: 14px; line-height: 1.5; padding: 0 10px; }
  .concierge-grid { grid-template-columns: 1fr; gap: 40px; }
  .concierge-content { text-align: left; }

  .service-cards-container { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
  .service-mini-card { display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 10px; padding: 15px; border-radius: 15px; }
  .service-icon-box { min-width: 35px; height: 35px; font-size: 14px; border-radius: 10px; }
  .service-details h4 { font-size: 14px; margin-bottom: 5px; line-height: 1.2; }
  .service-details p { font-size: 11px; line-height: 1.3; margin: 0; }

  .concierge-image-box { height: 300px; border-radius: 30px; margin: 0 5px; width: calc(100% - 10px); }
  .experience-badge { bottom: 15px; left: 15px; right: auto; padding: 10px 15px; border-radius: 12px; white-space: nowrap; }
  .experience-badge .years { font-size: 20px; }
  .experience-badge .label { font-size: 10px; }
  
  .concierge-cta-btn { width: 100%; justify-content: center; text-align: center; padding: 12px; font-size: 13px; border-radius: 12px; }

  /* Packages Section Responsive */
  .packages-section { padding: 40px 0; }
  .packages-container { 
    padding: 0 5px; 
    grid-template-columns: 1fr; 
    gap: 15px; 
  }
  .package-card { 
    margin: 0 5px; 
    border-radius: 15px;
  }
  .package-image { height: 200px; }
  .package-content { padding: 15px; }
  .package-content h3 { font-size: 20px; }
  .package-price-tag { font-size: 14px; padding: 6px 12px; }
}
