/* ----------------------------------------------------
   ALIF RAUDHAH TRAVEL & TOURS - LUXURY DESIGN SYSTEM
   ---------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:wght@500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Brighter Company Red, Royal Blue & Pure White */
  --bg-dark: #f8fafc; /* Slate-50 - Bright and cheerful light background */
  --bg-surface: #ffffff; /* Pure White - Content sections */
  --bg-card: #e0f2fe; /* Soft Blue - for content boxes and cards */
  --bg-card-hover: #d0e7ff; /* Slightly darker soft blue on hover */
  --bg-light: #ffffff;
  
  --primary-red: #ff2020;
  --red-accent: #ff2020;
  --red-light: #ffe0e0;
  --red-dark: #cc0000;
  --red-gradient: linear-gradient(135deg, #ff5555 0%, #ff2020 50%, #cc0000 100%);
  --red-glow: rgba(255, 32, 32, 0.18);

  --primary-blue: #2563eb;
  --blue-accent: #3b82f6;
  --blue-light: #dbeafe;
  --blue-dark: #1e3a8a;
  --blue-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  --blue-glow: rgba(37, 99, 235, 0.15);

  --red-blue-gradient: linear-gradient(135deg, #ff2020 0%, #2563eb 100%);

  --white-pure: #ffffff;
  --white-glow: rgba(255, 255, 255, 0.3);

  --text-primary: #0f172a; /* Slate-900 - Highly legible */
  --text-secondary: #334155; /* Slate-700 - Content descriptions */
  --text-dark: #0f172a;
  --text-muted: #64748b; /* Slate-500 */

  --border-red: rgba(255, 32, 32, 0.3);
  --border-blue: rgba(37, 99, 235, 0.15);
  --border-white: rgba(0, 0, 0, 0.08);

  --font-heading: 'Plus Jakarta Sans', sans-serif; /* Update font heading to match body for a cleaner look */
  --font-arabic: 'Amiri', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-red: 0 10px 30px rgba(255, 32, 32, 0.18);
  --shadow-blue: 0 10px 30px rgba(37, 99, 235, 0.1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue-accent);
}

/* Typography Helpers */
.font-arabic {
  font-family: var(--font-arabic);
}
.text-gold, .text-red {
  color: #ff2020;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.text-blue {
  color: var(--blue-light);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.text-white {
  color: var(--white-pure);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.text-emerald {
  color: var(--blue-accent);
}
.gradient-text-gold, .gradient-text-red {
  color: #ff2020;
  -webkit-text-fill-color: #ff2020;
  filter: drop-shadow(0 2px 14px rgba(255, 32, 32, 0.75));
}
.gradient-text-blue {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(96, 165, 250, 0.4));
}
.gradient-text-white {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Utility Containers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Glassmorphism Elements */
/* Glassmorphism Elements */
.glass-nav {
  background: rgba(6, 11, 25, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-blue);
}

.glass-card {
  background: rgba(19, 32, 66, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
}

/* Buttons & Controls */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold, .btn-red {
  background: var(--red-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-red);
  font-weight: 700;
}
.btn-gold:hover, .btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(239, 68, 68, 0.45);
  filter: brightness(1.1);
}

.btn-blue {
  background: var(--blue-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
  font-weight: 700;
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(59, 130, 246, 0.45);
  filter: brightness(1.1);
}

.btn-outline-gold, .btn-outline-red {
  background: transparent;
  border: 1.5px solid var(--red-accent);
  color: #ffffff;
}
.btn-outline-gold:hover, .btn-outline-red:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  border: 1.5px solid var(--blue-accent);
  color: #ffffff;
}
.btn-outline-blue:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-emerald {
  background: var(--blue-gradient);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(59, 130, 246, 0.4);
}

/* Top Notification / Prayer Bar */
.top-bar {
  background: linear-gradient(90deg, #09122b 0%, #1e3a8a 50%, #991b1b 100%);
  border-bottom: 1px solid var(--border-blue);
  font-size: 0.85rem;
  padding: 0.55rem 0;
  color: #ffffff;
}
.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}
.top-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}
.top-info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.prayer-widget {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid var(--red-accent);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.2);
}

/* Sticky Header Wrapper */
.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
}

/* Header & Navigation */
header.glass-nav {
  position: relative;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, var(--red-accent) 0%, var(--primary-blue) 100%) 1;
  transition: var(--transition);
}

/* Subpage sticky navbar — used on all Umrah subpages */
header.glass-nav.subpage-nav {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  overflow: visible !important;
}

/* Ensure mobile nav dropdown is always on top on subpages */
header.glass-nav.subpage-nav .nav-links {
  z-index: 2100;
}

header.glass-nav.subpage-nav .nav-links.active {
  z-index: 2100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 1.75rem;
  width: 100%;
  max-width: 100%;
  gap: 0.75rem;
  box-sizing: border-box;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo-img {
  height: 74px !important; /* Perfect height to ensure ultra-clear logo while preventing header overflow */
  width: auto;
  max-width: 260px !important;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(1.6) contrast(1.12); /* Boosts logo colors to display vivid red */
}
.brand-logo-img:hover {
  transform: scale(1.04) translateY(-1px);
}
.footer-logo-img {
  height: 180px;
  max-width: 500px;
  filter: saturate(1.6) contrast(1.12); /* Apply same vivid bright red filter to footer logo */
}

/* Footer links hover effects */
.footer-links-list a:hover {
  color: var(--primary-red) !important;
  transform: translateX(5px);
}
.footer-links-list a {
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

/* Compact WhatsApp / Auth Button in Navbar */
.navbar .btn-red {
  padding: 0.55rem 1.15rem;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links a {
  color: #1e293b;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem !important; /* Perfect font size for crisp, non-overflowing main navigation titles */
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red-accent);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red-gradient);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-caret {
  font-size: 0.75rem;
  margin-left: 4px;
  vertical-align: middle;
  transition: var(--transition);
}
.nav-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  list-style: none;
  min-width: 240px;
  padding: 0.6rem 0;
  z-index: 999;
  pointer-events: none;
}
/* Invisible bridge — fills gap so mouse doesn't lose hover */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
  pointer-events: all;
}
.dropdown-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 0.3rem 0;
}
.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.4rem;
  color: var(--text-primary) !important;
  font-size: 0.94rem !important; /* Crisp font size for dropdown items */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}
.nav-dropdown-menu li a::after {
  display: none !important;
}
.nav-dropdown-menu li a:hover {
  background: #fff0f0;
  color: var(--primary-red) !important;
  padding-left: 1.5rem;
}
.nav-dropdown-menu li a i {
  color: var(--primary-red);
  font-size: 0.85rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 0.5rem;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--red-accent);
  font-size: 1.75rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background-color: #ffffff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #ffffff;
  -webkit-mask-image: linear-gradient(to bottom, #000000 0%, #000000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000000 0%, #000000 90%, transparent 100%);
}
.hero-bg .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.15) contrast(1.20) saturate(1.15); /* Ultra-bright, vivid, crystal clear HD Makkah & Madinah background */
  opacity: 0;
  transform: scale(1);
  transition: opacity 2.0s cubic-bezier(0.4, 0, 0.2, 1), transform 6.5s ease-out; /* Cinematic Ken Burns Slow Motion Zoom */
  z-index: 1;
}
.hero-bg .slide.active {
  opacity: 1;
  transform: scale(1.12); /* Slowly zooms in to 1.12x in slow motion */
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(9,18,43,0.08) 55%, rgba(9,18,43,0.30) 85%, #ffffff 100%),
              radial-gradient(circle at 80% 20%, rgba(255,82,82,0.10) 0%, transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(96,165,250,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-text-box {
  background: rgba(255, 255, 255, 0.08); /* Crystal clear ultra-light glass tint */
  backdrop-filter: blur(3px); /* Sharp 100% view-through background photo, zero blurriness */
  -webkit-backdrop-filter: blur(3px);
  border: 1.5px solid rgba(255, 255, 255, 0.45); /* Elegant sparkling crystal glass border */
  border-radius: 24px;
  padding: 2rem 2.5rem;
  margin: 0 auto 1.5rem auto;
  max-width: 820px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.badge-license {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.4rem;
  background: #ff2020;
  border: 2px solid #ff5555;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 20px rgba(255, 32, 32, 0.55);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.8);
}
.hero-arabic {
  font-family: var(--font-arabic);
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.8);
}
.hero-title-red {
  color: #ff2020 !important;
  -webkit-text-fill-color: #ff2020 !important;
  text-shadow: 0 0 15px rgba(255, 32, 32, 0.85), 0 2px 10px rgba(0, 0, 0, 0.95);
  filter: drop-shadow(0 2px 14px rgba(255, 32, 32, 0.9));
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #f8fafc;
  font-weight: 500;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

/* Hero Search & Filter Card */
.search-card {
  background: var(--bg-card);
  border: 2px solid var(--border-blue);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.search-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.6rem;
  border-bottom: 1.5px solid #e2e8f0;
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
}
.tab-btn {
  background: transparent;
  border: 2px solid var(--red-accent);
  color: var(--text-secondary);
  padding: 0.75rem 0;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  flex: 1 1 0;
  text-align: center;
  min-width: 0;
}
.tab-btn.active, .tab-btn:hover {
  background: rgba(255, 32, 32, 0.12);
  color: #ff2020;
  border-color: var(--red-accent);
  box-shadow: 0 4px 14px rgba(255, 32, 32, 0.25);
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
  width: 100%;
}
.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.form-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-blue);
  margin-bottom: 0.55rem;
  font-weight: 800;
}
.form-select, .form-input {
  background: #ffffff;
  border: 2px solid #cbd5e1;
  color: var(--text-primary);
  font-weight: 600;
  padding: 0 1.25rem; /* Set vertical padding to 0 and rely on line-height and height */
  border-radius: var(--radius-sm);
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem; /* Slightly smaller font size to fit long texts beautifully */
  transition: var(--transition);
  height: 54px;
  line-height: 50px; /* Vertically center the text precisely inside the 54px container (54px height - 4px border) */
  box-sizing: border-box;
}
.form-select:focus, .form-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
/* Make the search submit button match input height */
.search-card .btn {
  height: 54px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0 1.5rem;
}

/* ── Rakan Strategik Marquee Section ── */
.partners-section {
  background: #ffffff;
  padding: 2.5rem 0;
  border-bottom: 1.5px solid #e2e8f0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.partners-title {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.partners-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  contain: layout paint;
}
/* Premium fade overlays at the edges */
.partners-slider::before,
.partners-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.partners-slider::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.partners-slider::after {
  right: 0;
  background: linear-gradient(-90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.partners-track {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
  animation: partners-scroll-loop 22s linear infinite; /* 3-set 100% endless unbroken flow */
}
@keyframes partners-scroll-loop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.333333%, 0, 0);
  }
}
.partner-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px; /* Increased from 60px to make logos significantly larger */
  padding: 0 1.25rem;
  background: #ffffff;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  margin-right: 3.5rem; /* Margins instead of gaps guarantee mathematically seamless loop resetting */
}
.partner-logo-wrapper:hover {
  transform: translateY(-2px) scale(1.04);
}
.partner-logo-img {
  max-height: 100%;
  max-width: 180px; /* Increased from 140px for larger logo display */
  object-fit: contain;
  filter: brightness(1) contrast(1);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .partners-section {
    padding: 2rem 0;
  }
  .partners-track {
    gap: 0;
  }
  .partner-logo-wrapper {
    height: 60px; /* Increased from 48px on mobile */
    padding: 0 0.75rem;
    margin-right: 2.5rem; /* Reduced spacing margin on mobile */
  }
  .partner-logo-img {
    max-width: 120px; /* Increased from 100px on mobile */
  }
}

/* Stats Counter Bar */
.stats-banner {
  background: #ffffff;
  padding: 4rem 0 3rem;
  margin-top: 0;
  position: relative;
  z-index: 10;
  text-align: center;
  overflow: hidden;
}

/* Decorative background icon — right side, anchored at bottom, behind all content */
.stats-bg-icon {
  position: absolute;
  bottom: -30px;
  right: 60px;
  height: 115%;
  width: auto;
  max-width: 680px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* Hero big number */
.stats-hero {
  margin-bottom: 2.5rem;
}
.stats-hero-number {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--primary-blue);
  line-height: 1;
  letter-spacing: -2px;
}
.stats-hero-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 0.6rem;
  text-transform: lowercase;
  letter-spacing: 0.3px;
}

/* 3 sub stat boxes */
.stats-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.stats-sub-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #f0f7ff;
  border: 1.5px solid #dbeafe;
  border-radius: var(--radius-md);
  padding: 2rem 2rem;
  text-align: left;
  transition: var(--transition);
}
.stats-sub-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
  border-color: var(--primary-blue);
}
.stats-sub-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #dbeafe;
  border-radius: var(--radius-sm);
  color: var(--primary-blue);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.stats-sub-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}
.stats-sub-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.4rem;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}
.section-subtitle {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff2020;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
  text-shadow: 0 0 10px rgba(255, 32, 32, 0.4);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.director-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 50%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
}
/* Decorative background globe watermark */
.director-bg-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.director-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
}
/* Photo */
.director-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.18));
}
.director-photo {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius-lg);
  filter: contrast(1.08) saturate(1.18) brightness(1.03);
  image-rendering: -webkit-optimize-contrast;
}
/* Content */
.director-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.director-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
}
.director-quote {
  position: relative;
  padding: 1.5rem 1.75rem;
  background: #ffffff;
  border-left: 4px solid var(--primary-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.director-quote-icon {
  color: var(--primary-red);
  font-size: 1.6rem;
  opacity: 0.25;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}
.director-quote p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.85;
  font-weight: 500;
}
/* Signature */
.director-signature {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.signature-line {
  width: 60px;
  height: 3px;
  background: var(--red-gradient);
  border-radius: var(--radius-full);
  margin-bottom: 0.4rem;
}
.director-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.director-position {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-red);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 900px) {
  .director-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .director-photo {
    height: 320px;
  }
}

/* Packages Grid & Cards */
.packages-section {
  padding: 6rem 0;
}

.filter-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.pill-btn {
  background: var(--bg-surface);
  border: 1.5px solid #cbd5e1;
  color: var(--text-secondary);
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.92rem;
}
.pill-btn.active, .pill-btn:hover {
  background: var(--red-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-red);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* 2 + 2 + 1 Grid Layout for "Semua Pakej" (5 items) */
.packages-grid.grid-layout-2-2-1 {
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem;
}

/* Row 1: kad 1 & 2 — masing-masing 3 kolum */
.packages-grid.grid-layout-2-2-1 .package-card {
  grid-column: span 3;
  border-width: 2px;
}

/* Row 3: kad ke-5 — satu di tengah, lebar penuh max 520px */
.packages-grid.grid-layout-2-2-1 .package-card:nth-child(5) {
  grid-column: 2 / span 4;
  max-width: 560px;
  justify-self: center;
  width: 100%;
}

/* Scale up sizes for the larger 2-2-1 grid cards */
.packages-grid.grid-layout-2-2-1 .card-img-wrapper {
  aspect-ratio: 2 / 1; /* Match iklan 1280x640 dimension */
  height: auto;
}
.packages-grid.grid-layout-2-2-1 .card-body {
  padding: 2rem;
}
.packages-grid.grid-layout-2-2-1 .card-title {
  font-size: 2rem;
}
.packages-grid.grid-layout-2-2-1 .hotel-item {
  font-size: 0.98rem;
}
.packages-grid.grid-layout-2-2-1 .card-features {
  font-size: 0.92rem;
  gap: 0.8rem;
  padding: 1.1rem 0;
}
.packages-grid.grid-layout-2-2-1 .price-val {
  font-size: 2.3rem;
}
.packages-grid.grid-layout-2-2-1 .btn {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
}

/* Responsive Overrides for 2-2-1 layout */
@media (max-width: 1024px) {
  .packages-grid.grid-layout-2-2-1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .packages-grid.grid-layout-2-2-1 .package-card,
  .packages-grid.grid-layout-2-2-1 .package-card:nth-child(5) {
    grid-column: span 1;
    max-width: 100%;
    justify-self: stretch;
  }
}
@media (max-width: 680px) {
  .packages-grid.grid-layout-2-2-1 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .packages-grid.grid-layout-2-2-1 .package-card,
  .packages-grid.grid-layout-2-2-1 .package-card:nth-child(5) {
    grid-column: span 1;
    max-width: 100%;
    justify-self: stretch;
  }
}

.package-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--red-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--shadow-red);
}


.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--red-gradient);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #0a0a0a;
}
.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: filter 0.4s ease;
}
.package-card:hover .card-img-wrapper img {
  filter: brightness(1.08);
}
.card-flight-tag {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(6, 11, 25, 0.9);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--border-blue);
  color: #93c5fd;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.card-hotels {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.hotel-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hotel-item i {
  color: var(--primary-blue);
}

.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.85rem 0;
  border-top: 1px dashed var(--border-blue);
  border-bottom: 1px dashed var(--border-blue);
  margin-bottom: 1.25rem;
  font-size: 0.83rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.feature-item i {
  color: var(--primary-red);
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price-box {
  display: flex;
  flex-direction: column;
}
.price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}
.price-val {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  white-space: nowrap;
}

/* ── Qurban & Aqiqah Section ── */
.qurban-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.qurban-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.qurban-info-card {
  background: var(--bg-card);
  border: 2px solid #bbf7d0; /* Soft green border */
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
.qurban-badge {
  align-self: flex-start;
  background: #10b981; /* Green badge */
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.qurban-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--blue-dark);
  font-weight: 800;
}
.qurban-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.qurban-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.qurban-features-list li i {
  color: #10b981; /* Green check icon */
}
.qurban-pricing-row {
  display: flex;
  align-items: center;
  background: #f0fdf4;
  border: 1.5px solid #dcfce7;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  margin: 0.5rem 0;
}
.price-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.price-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #047857; /* Dark green */
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
}
.price-divider {
  width: 1px;
  height: 40px;
  background: #bbf7d0;
}
.qurban-poster-card {
  height: 420px;
  background: linear-gradient(135deg, #0f2b1c 0%, #1e4d34 100%);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(15, 43, 28, 0.2);
  border: 3px solid #10b981;
}
.qurban-poster-card::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px dashed rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-md);
}
.qurban-poster-overlay {
  z-index: 2;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.poster-icon {
  font-size: 5rem;
  color: #10b981;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.qurban-poster-overlay h4 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.qurban-poster-overlay p {
  font-size: 1.1rem;
  color: #a7f3d0;
  font-weight: 600;
}
.poster-date {
  background: var(--red-gradient);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-top: 1rem;
  box-shadow: var(--shadow-red);
}

@media (max-width: 900px) {
  .qurban-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .qurban-poster-card {
    height: auto;
    min-height: 300px;
    padding: 2.5rem 1.5rem;
  }
  .qurban-poster-overlay h4 {
    font-size: 1.8rem;
  }
  .poster-icon {
    font-size: 3.5rem;
  }
}

/* Calculator Section */
.calc-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
  padding: 6rem 0;
  position: relative;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-form {
  background: var(--bg-card);
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.range-wrap {
  margin-bottom: 1.5rem;
}
.range-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-primary);
}
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #cbd5e1;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

/* Custom Thumb - Webkit (Chrome, Edge, Safari) */
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff2020;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(255, 32, 32, 0.45), 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: grab;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(255, 32, 32, 0.6);
}
.range-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.25);
  box-shadow: 0 8px 22px rgba(255, 32, 32, 0.7);
}

/* Custom Thumb - Firefox */
.range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff2020;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(255, 32, 32, 0.45);
  cursor: grab;
  transition: transform 0.15s ease;
}
.range-slider::-moz-range-thumb:active {
  cursor: grabbing;
  transform: scale(1.25);
}

.radio-group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.radio-card {
  position: relative;
}
.radio-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-card label {
  display: block;
  text-align: center;
  padding: 0.8rem;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
}
.radio-card input:checked + label {
  border-color: var(--red-accent);
  background: rgba(255, 32, 32, 0.12);
  color: var(--primary-red);
  box-shadow: 0 4px 12px rgba(255, 32, 32, 0.15);
}

.calc-summary {
  background: linear-gradient(135deg, #132042 0%, #1e3a8a 50%, #991b1b 100%);
  border: 1.5px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-red);
}
.calc-summary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  border-radius: 50%;
}
.calc-summary-price {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 1rem 0;
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

/* Timeline / Itinerary Section */
.itinerary-section {
  padding: 6rem 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border-blue);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  position: relative;
  margin-bottom: 2.5rem;
  width: 50%;
}
.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 30px;
  margin-left: auto;
}
.timeline-dot {
  position: absolute;
  top: 15px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red-accent);
  border: 4px solid var(--bg-surface);
  box-shadow: var(--shadow-red);
  z-index: 2;
}
.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -10px;
}
.timeline-content {
  background: var(--bg-card);
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.timeline-content:hover {
  border-color: var(--red-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.timeline-day {
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}
.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.timeline-content p {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Testimonials Carousel */
.testimonials-section {
  background: var(--bg-surface);
  padding: 6rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-blue);
  padding: 2rem;
  border-radius: var(--radius-md);
  position: relative;
}
.stars {
  color: #ff2020;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px rgba(255, 32, 32, 0.4));
}
.testimonial-quote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-red);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.modal-overlay.active .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.75rem;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover {
  color: var(--red-accent);
}

/* Pakej Saver details modal */
.saver-details-modal .modal-card {
  max-width: 850px;
  padding: 0;
  overflow-x: hidden;
  background: #ffffff;
  border-color: #dbeafe;
}

.saver-details-modal .modal-close {
  z-index: 2;
  color: #ffffff;
}

.saver-details-modal .modal-close:hover {
  color: #fef08a;
}

.saver-details {
  color: #0f172a;
}

.saver-details-header {
  padding: 2.1rem 4.5rem 2.1rem 2.25rem;
  color: #ffffff;
  background: linear-gradient(120deg, #1d4ed8 0%, #2563eb 55%, #dc2626 100%);
}

.saver-details-eyebrow,
.saver-section-heading > div > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.85px;
  text-transform: uppercase;
}

.saver-details-eyebrow {
  padding: 0.33rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.16);
}

.saver-details-header h2 {
  margin: 0.7rem 0 0.2rem;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
}

.saver-details-header p {
  margin: 0;
  color: #dbeafe;
  font-size: 0.95rem;
  font-weight: 600;
}

.saver-details-body {
  padding: 1.5rem 2.25rem 2.1rem;
}

.saver-pricing,
.saver-info {
  border: 1px solid #dbeafe;
  border-radius: 1rem;
  background: #ffffff;
  overflow: hidden;
}

.saver-pricing {
  margin-bottom: 1.35rem;
}

.saver-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #dbeafe;
  background: #f8fbff;
}

.saver-section-heading > div > span {
  color: #2563eb;
}

.saver-section-heading h3 {
  margin: 0.1rem 0 0;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.saver-section-heading > i {
  color: #2563eb;
  font-size: 1.25rem;
}

.saver-room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding: 1rem;
}

.saver-room-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem;
  border: 1px solid #dbeafe;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, #ffffff, #eff6ff);
}

.saver-room-card span {
  color: #475569;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.saver-room-card strong {
  color: #dc2626;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
}

.saver-detail-list {
  margin: 0;
}

.saver-detail-row {
  display: grid;
  grid-template-columns: minmax(165px, 0.85fr) minmax(0, 1.65fr);
  border-bottom: 1px solid #e2e8f0;
}

.saver-detail-row:last-child {
  border-bottom: 0;
}

.saver-detail-row dt,
.saver-detail-row dd {
  margin: 0;
  padding: 0.72rem 1rem;
  font-size: 0.83rem;
  line-height: 1.45;
}

.saver-detail-row dt {
  color: #334155;
  font-weight: 800;
  background: #f8fafc;
}

.saver-detail-row dd {
  color: #0f172a;
  font-weight: 600;
}

.saver-details-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #dbeafe;
}

.saver-details-footer > div {
  display: flex;
  flex-direction: column;
}

.saver-details-footer span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.saver-details-footer strong {
  color: #dc2626;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .modal-overlay {
    padding: 0.75rem;
  }

  .saver-details-header {
    padding: 1.65rem 3.2rem 1.65rem 1.25rem;
  }

  .saver-details-body {
    padding: 1rem 1.05rem 1.35rem;
  }

  .saver-room-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .saver-room-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .saver-detail-row dt,
  .saver-detail-row dd {
    padding: 0.6rem 0.8rem;
  }

  .saver-detail-row dt {
    padding-bottom: 0.15rem;
    background: #f8fafc;
  }

  .saver-detail-row dd {
    padding-top: 0.15rem;
  }

  .saver-details-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .saver-details-footer .btn {
    width: 100%;
  }
}

/* WhatsApp Floating CTA */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #dc2626;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.45);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
}
.wa-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 14px 35px rgba(220, 38, 38, 0.65);
}

/* Responsive Styles & Prevent Horizontal Overflow */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

@media (max-width: 992px) {
  .hero-section {
    padding: 5rem 0 7rem 0;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .search-grid {
    grid-template-columns: 1fr;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item, .timeline-item:nth-child(even) {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
    left: 10px;
    right: auto;
  }
  /* Stats Banner Responsive Fixes (Prevents Background overlap & card squeeze) */
  .stats-bg-icon {
    display: none !important; /* Hide background person to keep design clean on mobile */
  }
  .stats-hero-number {
    font-size: 3.5rem;
  }
  .stats-hero-label {
    font-size: 1rem;
  }
  .stats-sub-grid {
    grid-template-columns: 1fr; /* Stack cards vertically on tablets & mobiles */
    gap: 1.25rem;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none !important;
  }
  .container {
    padding: 0 1.25rem;
  }
  .navbar {
    padding: 0.85rem 0;
  }
  .brand-logo-img {
    height: 72px;
    max-width: 280px;
  }
  .nav-actions {
    gap: 0.75rem;
  }
  .nav-actions .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
    font-size: 1.85rem;
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-arabic {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 2.3rem;
  }
  .top-info {
    font-size: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  .search-card, .calc-form, .calc-summary, .modal-card {
    padding: 1.5rem;
  }
  .calc-summary-price {
    font-size: 2.9rem;
  }
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.25rem;
  }
  .stat-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  .navbar {
    padding: 0.8rem 0;
  }
  .brand-logo-img {
    height: 62px;
    max-width: 220px;
  }
  .nav-actions {
    gap: 0.5rem;
  }
  .nav-actions .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 700;
  }
  .mobile-menu-btn {
    font-size: 1.75rem;
  }
  .btn {
    padding: 0.65rem 1.15rem;
    font-size: 0.85rem;
  }
  .badge-license {
    font-size: 0.78rem;
    padding: 0.4rem 0.9rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-arabic {
    font-size: 1.7rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  /* Keep package types inside the search card on phone screens. */
  .search-card {
    padding: 1rem;
  }
  .search-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    overflow: visible;
  }
  .tab-btn {
    min-width: 0;
    padding: 0.6rem 0.4rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .radio-group-grid {
    grid-template-columns: 1fr;
  }
  .card-features {
    grid-template-columns: 1fr;
  }
  .card-body {
    padding: 1.25rem;
  }
  .card-title {
    font-size: 1.45rem;
  }
  .price-val {
    font-size: 1.6rem;
  }
  .wa-float {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .modal-card {
    padding: 1.25rem;
  }
}

/* Gallery Frames Section */
.gallery-frames-section {
  padding: 3.5rem 0 1.5rem;
  background: var(--bg-dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-frame {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: var(--radius-md);
  border: 5px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06), 0 0 0 1.5px rgba(37, 99, 235, 0.1);
  overflow: hidden;
  background: #f1f5f9;
  transition: var(--transition);
}
.gallery-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12), 0 0 0 1.5px rgba(37, 99, 235, 0.2);
}
.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  z-index: 1;
}
.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Responsive adjustment for gallery grid */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 480px;
  }
}

/* Payment Modal Slide-In Animation */
@keyframes modalSlideIn {
  from {
    font-weight: 700;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 3000;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
  .nav-links.active {
    display: flex;
    z-index: 3000;
  }
  .mobile-menu-btn {
    display: block;
    font-size: 1.85rem;
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-arabic {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 2.3rem;
  }
  .top-info {
    font-size: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  .search-card, .calc-form, .calc-summary, .modal-card {
    padding: 1.5rem;
  }
  .calc-summary-price {
    font-size: 2.9rem;
  }
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.25rem;
  }
  .stat-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  .navbar {
    padding: 0.8rem 0;
  }
  .brand-logo-img {
    height: 62px;
    max-width: 220px;
  }
  .nav-actions {
    gap: 0.5rem;
  }
  .nav-actions .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 700;
  }
  .mobile-menu-btn {
    font-size: 1.75rem;
  }
  .btn {
    padding: 0.65rem 1.15rem;
    font-size: 0.85rem;
  }
  .badge-license {
    font-size: 0.78rem;
    padding: 0.4rem 0.9rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-arabic {
    font-size: 1.7rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  /* Keep package types inside the search card on phone screens. */
  .search-card {
    padding: 1rem;
  }
  .search-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    overflow: visible;
  }
  .tab-btn {
    min-width: 0;
    padding: 0.6rem 0.4rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .radio-group-grid {
    grid-template-columns: 1fr;
  }
  .card-features {
    grid-template-columns: 1fr;
  }
  .card-body {
    padding: 1.25rem;
  }
  .card-title {
    font-size: 1.45rem;
  }
  .price-val {
    font-size: 1.6rem;
  }
  .wa-float {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .modal-card {
    padding: 1.25rem;
  }
}

/* Gallery Frames Section */
.gallery-frames-section {
  padding: 3.5rem 0 1.5rem;
  background: var(--bg-dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-frame {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: var(--radius-md);
  border: 5px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06), 0 0 0 1.5px rgba(37, 99, 235, 0.1);
  overflow: hidden;
  background: #f1f5f9;
  transition: var(--transition);
}
.gallery-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.12), 0 0 0 1.5px rgba(37, 99, 235, 0.2);
}
.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  z-index: 1;
}
.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Responsive adjustment for gallery grid */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 480px;
  }
}

/* Payment Modal Slide-In Animation */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hero Above-the-fold Promo Wrapper */
.hero-promo-wrapper {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 0 2rem 0; /* Clean, static gap below unified header unit */
  box-sizing: border-box;
  scroll-margin-top: 140px;
}

/* Promo Billboard Banner Carousel */
.promo-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 2.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  background: transparent;
  width: 100%;
  aspect-ratio: 1280 / 683;
  height: auto;
  max-height: calc(100vh - 210px); /* Strictly fits inside viewport with 40px top/bottom space */
  margin: 0;
  z-index: 10;
}
.promo-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.promo-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background: transparent;
}
.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: fill; /* Fits the image edge-to-edge inside the borders with no black bars */
  background: transparent;
}
.promo-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 12;
}
.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.promo-dot.active {
  background: #ff2020 !important;
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(255, 32, 32, 0.6);
}

/* Promo Arrow Navigation Buttons */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.promo-arrow:hover {
  background: rgba(220, 38, 38, 0.8);
  border-color: #ff2020;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 14px rgba(255, 32, 32, 0.5);
}
.promo-arrow-left  { left:  1rem; }
.promo-arrow-right { right: 1rem; }

@media (max-width: 480px) {
  .promo-arrow { width: 34px; height: 34px; font-size: 0.8rem; }
  .promo-arrow-left  { left:  0.5rem; }
  .promo-arrow-right { right: 0.5rem; }
}


@media (max-width: 768px) {
  .hero-promo-wrapper {
    min-height: calc(100vh - 100px);
    padding: 1rem 0;
  }
  .promo-carousel {
    max-height: calc(100vh - 120px);
  }
}
@media (max-width: 480px) {
  .promo-carousel {
    border-radius: var(--radius-sm);
  }
  .promo-dots {
    bottom: 0.75rem;
  }
  .promo-dot {
    width: 8px;
    height: 8px;
  }
}

/* Agen Pelancongan Search Section — 100% Clean Viewport Fit (No Ad Peeking) */
#agen-pelancongan {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5rem 0 3rem 0;
  scroll-margin-top: 110px;
  box-sizing: border-box;
}

#agen-pelancongan .hero-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#agen-pelancongan .badge-license {
  margin-bottom: 0.35rem;
}

#agen-pelancongan .hero-arabic {
  font-size: 1.75rem;
  margin: 0.15rem 0;
}

#agen-pelancongan .hero-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

#agen-pelancongan .search-card {
  margin-top: 0.2rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #agen-pelancongan {
    min-height: calc(100vh - 110px);
    scroll-margin-top: 110px;
    padding: 0.75rem 0 2rem 0;
  }
  #agen-pelancongan .hero-title {
    font-size: 1.55rem;
    margin-bottom: 0.6rem;
  }
  #agen-pelancongan .hero-arabic {
    font-size: 1.35rem;
  }
}

/* Subpage Destinations Header Styling — 100% Bright, Crisp & Crystal Clear */
.dest-header {
  position: relative;
  color: #ffffff;
  padding: 5rem 1.25rem 4.5rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #09122b 0%, #1e3a8a 50%, #ff2020 100%);
  border-bottom: 4px solid var(--primary-red);
}

.dest-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.15) contrast(1.20) saturate(1.15); /* 100% Sunny, Bright, HD Sharp */
  z-index: 1;
}

.dest-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(9, 18, 43, 0.15) 50%, rgba(9, 18, 43, 0.35) 100%),
              radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.dest-header-content {
  position: relative;
  z-index: 10;
  max-width: 850px;
  margin: 0 auto;
  padding: 2.25rem 2rem;
  background: rgba(9, 18, 43, 0.28); /* Super light 28% tint for maximum brightness */
  backdrop-filter: blur(2px); /* Crisp view-through, zero heavy blur */
  -webkit-backdrop-filter: blur(2px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.dest-header-content h1 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.dest-header-content p {
  font-size: 1.08rem;
  color: #e2e8f0;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.dest-price-tag {
  display: inline-block;
  background: rgba(255, 32, 32, 0.15);
  border: 1.5px solid rgba(255, 32, 32, 0.4);
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.dest-price-val {
  color: #ff2020;
  font-size: 1.65rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin: 0 0.25rem;
  text-shadow: 0 0 12px rgba(255, 32, 32, 0.6);
}

.btn-lihat-tarikh {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #ff2020 0%, #dc2626 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 32, 32, 0.45);
  transition: var(--transition);
}

.btn-lihat-tarikh:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 32, 32, 0.65);
  color: #ffffff;
}

@media (max-width: 768px) {
  .dest-header {
    padding: 3.5rem 1rem 3rem;
  }
  .dest-header-content {
    padding: 1.5rem 1.15rem;
    border-radius: var(--radius-md);
  }
  .dest-header-content h1 {
    font-size: 1.85rem;
  }
  .dest-header-content p {
    font-size: 0.95rem;
  }
  .dest-price-tag {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
  .dest-price-val {
    font-size: 1.35rem;
  }
  .btn-lihat-tarikh {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Image 1 Composite Banner Styling for Package Umrah Subpages - Smooth Blend & No Border */
.dest-header-composite {
  position: relative;
  min-height: 380px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  border: none !important;
  border-bottom: none !important;
}

.composite-center-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #fffbe6 60%, #ffffff 100%);
  z-index: 1;
}

.composite-pattern {
  position: absolute;
  inset: 0;
  background-image: url('images/madinah_bright.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: contrast(1.1) saturate(1.1);
  z-index: 2;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

.composite-photo-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
  mask-image: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0) 100%);
  filter: brightness(1.05) contrast(1.1);
}

.composite-photo-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0) 100%);
  filter: brightness(1.05) contrast(1.1);
}

.composite-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.composite-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #0f172a; /* Deep bold black */
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.composite-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.75rem;
}

.composite-price span {
  color: #0f172a;
  font-weight: 900;
}

.btn-composite-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff2a2a 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.65rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-composite-action:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.55);
  color: #ffffff;
}

@media (max-width: 992px) {
  .composite-photo-left, .composite-photo-right {
    width: 25%;
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .dest-header-composite {
    padding: 3rem 1rem;
    min-height: 300px;
  }
  .composite-photo-left {
    width: 22%;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  }
  .composite-photo-right {
    width: 22%;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  }
  .composite-title {
    font-size: 2.1rem;
  }
  .composite-price {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }
  .btn-composite-action {
    padding: 0.55rem 1.35rem;
    font-size: 0.78rem;
  }
}

/* Package Highlights 3-Grid Section */
.package-highlights-section {
  padding: 3rem 0 1.5rem;
  background: #f8fafc;
}

.package-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.highlight-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  border-top: 4px solid #c0262d;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(192, 38, 45, 0.15);
  border-color: #c0262d;
}

.highlight-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.highlight-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #1e3a8a;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.3);
}

.highlight-badge i {
  color: #fbbf24;
}

.highlight-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.highlight-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 0.6rem;
}

.highlight-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.highlight-meta {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
}

@media (max-width: 992px) {
  .package-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .package-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* Flight Dates Schedule Table Section (Matching Reference Screenshot) */
.package-dates-section {
  padding: 3.5rem 0 5rem;
  background: #ffffff;
}

.dates-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dates-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.dates-view-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.view-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.view-btn.active {
  background: linear-gradient(135deg, #ff2a2a 0%, #2563eb 100%);
  color: #ffffff;
  border-color: #ff2a2a;
}

/* Schedule Table Container */
.dates-table-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.dates-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

/* Smooth, Seamless & Centered Premium Modern Table Header */
.dates-table thead {
  background: linear-gradient(90deg, #dc2626 0%, #2563eb 100%) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dates-table th {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  padding: 1.25rem 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-align: center !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  vertical-align: middle !important;
}

/* Month Collapsible Header Row (Bright Ice Blue & Electric Blue) */
.month-row-header {
  background: #e0f2fe;
  border-bottom: 1.5px solid #bae6fd;
}

.month-title-cell {
  padding: 1rem 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #1d4ed8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

.month-flex i {
  color: #ff2a2a;
  font-size: 1.1rem;
}

/* Flight Data Row */
.flight-row {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.flight-row:hover {
  background: #f8fafc;
}

.flight-row td {
  padding: 1.25rem 1rem;
  vertical-align: middle;
  font-size: 0.95rem;
  color: #1e293b;
  text-align: center !important;
}

.td-date {
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}

.td-sector {
  font-weight: 700;
  color: #475569;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
}

.dates-table th:nth-child(3) {
  text-align: center;
}

.td-airline {
  text-align: center !important;
  vertical-align: middle !important;
}

.airline-badge {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.airline-logo-img {
  height: 85px;
  max-width: 240px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

/* Extra large size specifically for Malaysia Airlines logo */
.airline-logo-mas {
  height: 110px !important;
  max-width: 290px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 auto !important;
}

/* Extra large size specifically for Qatar Airways logo */
.airline-logo-qatar {
  height: 75px !important;
  max-width: 215px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 auto !important;
}

/* Slightly smaller size specifically for Saudi Airlines logo */
.airline-logo-saudi {
  height: 65px !important;
  max-width: 190px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 auto !important;
}

/* Extra large size specifically for Etihad Airways logo */
.airline-logo-etihad {
  height: 75px !important;
  max-width: 220px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 auto !important;
}

.airline-logo-img:hover {
  transform: scale(1.08);
}

.td-days {
  text-align: center;
}

.days-main {
  font-weight: 800;
  color: #0f172a;
  font-size: 0.92rem;
}

.days-sub {
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.td-price {
  text-align: center;
}

.price-main {
  font-weight: 900;
  color: #0f172a !important;
  font-size: 1.15rem;
}

.price-sub {
  font-size: 0.78rem;
  color: #2563eb;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 0.2rem;
  cursor: pointer;
  display: inline-block;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.price-sub:hover {
  color: #ff2a2a;
  transform: scale(1.05);
}

.td-action {
  text-align: center;
}

/* Vibrant Bright Red & Blue Combination DAFTAR Button */
.btn-daftar-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff2a2a 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.55rem 1.6rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-daftar-table:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.55);
  color: #ffffff;
}

/* Grid View Layout */
.dates-grid-container {
  display: none;
  flex-direction: column;
  gap: 2rem;
}

/* Month Grid Banner Header - Bright Red & Blue Combination */
.month-grid-banner {
  background: linear-gradient(135deg, #ff2a2a 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
}

.month-banner-title {
  text-align: center;
  flex-grow: 1;
}

.month-banner-title h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
}

.month-banner-title span {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
}

.month-banner-nav {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* 3 Cards Grid Container */
.cards-3grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

/* Individual Flight Grid Card - Bright Red Border & Electric Blue Pill */
.flight-card-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-left: 5px solid #ff2a2a;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.flight-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(255, 42, 42, 0.18);
  border-color: #ff2a2a;
}

/* Date Pill Badge - Electric Blue */
.card-date-pill {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Card Details Key-Value List */
.card-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.card-details-list li {
  display: flex;
  align-items: center;
}

.detail-label {
  width: 100px;
  color: #64748b;
  font-weight: 700;
}

.detail-colon {
  margin-right: 0.6rem;
  color: #64748b;
  font-weight: 700;
}

.detail-val {
  color: #0f172a;
  font-weight: 800;
}

/* Price Block */
.card-price-block {
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  margin-top: auto;
}

.card-price-main {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f172a;
}

.card-price-sub {
  font-size: 0.78rem;
  color: #86195d;
  font-weight: 700;
}

/* Full Width Bright Red-Blue Gradient DAFTAR Button */
.btn-daftar-card {
  width: 100%;
  background: linear-gradient(135deg, #ff2a2a 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.85rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
  text-align: center;
}

.btn-daftar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.55);
}

/* View Mode Toggling Classes */
.dates-table-wrapper.hide-table {
  display: none !important;
}

.dates-grid-container.show-grid {
  display: flex !important;
}

/* Mobile & Phone View Styling (Auto Grid View on Mobile max-width: 640px) */
@media (max-width: 640px) {
  .dates-title {
    font-size: 1.45rem;
  }
  .dates-table-wrapper {
    display: none !important; /* Hide list table on phone */
  }
  .dates-grid-container {
    display: flex !important; /* Show card grid on phone */
  }
}

/* Aturcara Perjalanan 12 Hari 10 Malam Section */
.package-itinerary-section {
  padding: 4rem 0 5rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.itinerary-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.itinerary-subtitle {
  color: #86195d;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.4rem;
}

.itinerary-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
}

/* Switch Tabs Bar */
.itinerary-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.itinerary-tab-btn {
  background: #ffffff;
  border: 2px solid #cbd5e1;
  color: #334155;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.itinerary-tab-btn i {
  color: #86195d;
}

.itinerary-tab-btn.active {
  background: linear-gradient(135deg, #86195d 0%, #9d174d 100%);
  color: #ffffff;
  border-color: #86195d;
  box-shadow: 0 8px 22px rgba(134, 25, 93, 0.35);
}

.itinerary-tab-btn.active i {
  color: #fbcfe8;
}

/* Timeline Layout */
.itinerary-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.2rem;
  border-left: 3px solid #cbd5e1;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.75rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(5px);
  border-color: #86195d;
  box-shadow: 0 12px 28px rgba(134, 25, 93, 0.1);
}

.timeline-badge-day {
  position: absolute;
  left: -3.35rem;
  top: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #86195d;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #f8fafc;
  box-shadow: 0 4px 10px rgba(134, 25, 93, 0.3);
}

.timeline-item-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.timeline-item-title i {
  color: #86195d;
}

.timeline-item-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  .itinerary-timeline {
    padding-left: 1.5rem;
  }
  .timeline-badge-day {
    left: -2.4rem;
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }
  .itinerary-tab-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Vertical Alternating Timeline (Matching Reference Screenshot Exactly) */
.itinerary-v2-section {
  padding: 4.5rem 0 6rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.itinerary-v2-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.itinerary-v2-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.itinerary-v2-duration-pill {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.4rem 1.4rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* Animated Slide Bar Tabs (Madinah / Makkah) */
.itinerary-v2-tabs {
  display: flex;
  justify-content: center;
  margin: 0 auto 3rem auto;
}

.v2-tab-slider-track {
  position: relative;
  display: flex;
  align-items: center;
  background: #e2e8f0;
  border-radius: 9999px;
  padding: 4px;
  width: 320px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08);
}

.v2-slider-pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: linear-gradient(135deg, #ff2a2a 0%, #2563eb 100%);
  border-radius: 9999px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
  z-index: 1;
  pointer-events: none !important;
}

.v2-tab-btn {
  flex: 1;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 800;
  color: #64748b;
  padding: 0.7rem 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 10;
  pointer-events: auto !important;
  transition: color 0.35s ease;
  text-align: center;
}

.v2-tab-btn.active {
  color: #ffffff;
}

/* Feature Hero Card Banner - Vibrant Luminous Blue to Red Gradient */
.itinerary-hero-card {
  background: linear-gradient(135deg, #2563eb 0%, #ff2a2a 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
  margin: 2.5rem auto;
  max-width: 960px;
  min-height: 180px;
}

.hero-card-left {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fbbf24;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

.hero-card-right {
  width: 36%;
  min-width: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Center-Line Alternating Timeline Container */
.alternating-timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 0;
}

.alternating-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #93c5fd;
  transform: translateX(-50%);
}

.timeline-row {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  width: 100%;
}

.timeline-row.row-left {
  justify-content: flex-start;
}

.timeline-row.row-right {
  justify-content: flex-end;
}

.timeline-content-box {
  width: 44%;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content-box:hover {
  transform: translateY(-4px);
  border-color: #ff2a2a;
  box-shadow: 0 15px 35px rgba(255, 42, 42, 0.18);
}

.box-heading {
  font-size: 1.1rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.box-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

.box-bullets li {
  position: relative;
  padding-left: 1.2rem;
}

.box-bullets li::before {
  content: '•';
  color: #ff2a2a;
  font-weight: 900;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.timeline-center-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  white-space: nowrap;
}

.node-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff2a2a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(255, 42, 42, 0.4);
}

.node-label-text {
  font-size: 0.78rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.row-left .node-label-text {
  position: absolute;
  left: 48px;
}

.row-right .node-label-text {
  position: absolute;
  right: 48px;
}

@media (max-width: 768px) {
  .hero-card-title {
    font-size: 1.6rem;
  }
  .hero-card-left {
    padding: 1.5rem;
  }
  .hero-card-right {
    width: 40%;
    height: 130px;
  }
  .alternating-timeline::before {
    left: 24px;
  }
  .timeline-row {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 55px;
  }
  .timeline-content-box {
    width: 100% !important;
  }
  .timeline-center-node {
    left: 24px;
    transform: translateX(-50%);
  }
  .row-left .node-label-text,
  .row-right .node-label-text {
    position: static;
    margin-left: 0.5rem;
  }
}

/* Jadual pakej: susun atur khusus telefon */
.mobile-timeline-day {
  display: none;
}

@media (max-width: 768px) {
  .itinerary-v2-section {
    padding: 3.5rem 0 4.5rem;
  }

  .itinerary-v2-header {
    margin-bottom: 1.75rem;
  }

  .itinerary-v2-title {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
    line-height: 1.35;
    letter-spacing: 0.5px;
    margin-inline: auto;
    max-width: 34rem;
  }

  .itinerary-v2-duration-pill {
    margin-bottom: 1.25rem;
  }

  .itinerary-v2-tabs {
    margin-bottom: 1.75rem;
  }

  .v2-tab-slider-track {
    width: min(100%, 20rem);
  }

  /* View Madinah berada di luar .container dalam markup sedia ada. */
  #v2ViewMadinah {
    padding-inline: 1.25rem;
  }

  .itinerary-hero-card {
    min-height: 0;
    margin: 1.5rem auto;
    border-radius: 1.15rem;
  }

  .hero-card-left {
    padding: 1.35rem 1.2rem;
  }

  .hero-card-right {
    width: 42%;
    min-width: 0;
    height: auto;
  }

  .hero-card-title {
    font-size: clamp(1.1rem, 4.6vw, 1.6rem);
    line-height: 1.45;
    letter-spacing: 0.4px;
  }

  .alternating-timeline {
    padding: 0.35rem 0 0.25rem;
  }

  .alternating-timeline::before {
    left: 18px;
    width: 2px;
  }

  .timeline-row {
    min-height: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 2.9rem;
  }

  .timeline-center-node {
    top: 1.15rem;
    left: 18px;
  }

  .node-icon-circle {
    width: 32px;
    height: 32px;
    border-width: 2px;
    font-size: 0.72rem;
  }

  .node-label-text {
    display: none;
  }

  .timeline-content-box {
    padding: 1rem 1.05rem 1.1rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
  }

  .mobile-timeline-day {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 0.55rem;
    padding: 0.24rem 0.55rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.45px;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .box-heading {
    font-size: 0.96rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
  }

  .box-bullets {
    gap: 0.35rem;
    font-size: 0.84rem;
    line-height: 1.55;
  }
}

@media (max-width: 576px) {
  #v2ViewMadinah {
    padding-inline: 1rem;
  }

  .v2-tab-btn {
    padding-inline: 0.5rem;
    font-size: 0.78rem;
  }
}

/* Interactive Price Details Modal Popup */
.price-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  overscroll-behavior: contain;
}

.price-modal-overlay.active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}

.price-modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 980px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #cbd5e1;
  outline: none !important;
  overscroll-behavior: contain;
}

.room-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.room-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  transition: all 0.25s ease;
  min-width: 0;
}

.room-price-card.card-dewasa {
  background: #fff5f5;
  border: 1.5px solid #fecaca;
}

.card-pax-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #64748b;
  white-space: nowrap;
}

.card-dewasa .card-pax-label {
  color: #ff2a2a;
}

.card-pax-price {
  font-size: 0.98rem;
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap !important;
}

.card-dewasa .card-pax-price {
  color: #ff2a2a;
}

@media (max-width: 992px) {
  .room-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
}

@media (max-width: 576px) {
  .room-cards-grid {
    grid-template-columns: 1fr;
  }
}

.price-modal-overlay.active .price-modal-card {
  transform: translateY(0) scale(1);
}

.price-modal-header {
  background: linear-gradient(135deg, #ff2a2a 0%, #2563eb 100%);
  color: #ffffff;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: none !important;
  outline: none !important;
}

.price-modal-title {
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.price-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.price-modal-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.price-modal-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: #f8fafc;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
}

.modal-summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.summary-item-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
}

.summary-item-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.modal-section-heading {
  font-size: 1.1rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #e0f2fe;
  padding-bottom: 0.4rem;
}

/* Maklumat lengkap di dalam modal "Lebih Lanjut" Pakej Saver */
.saver-included-details {
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
}

.saver-included-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #bfdbfe;
  background: linear-gradient(90deg, #eff6ff 0%, #f8fafc 100%);
}

.saver-included-heading span {
  display: block;
  color: #2563eb;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.saver-included-heading h4 {
  margin: 0.12rem 0 0;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
}

.saver-included-heading > i {
  color: #2563eb;
  font-size: 1.25rem;
}

.saver-included-table-wrap {
  overflow-x: auto;
}

.saver-included-table {
  width: 100%;
  border-collapse: collapse;
}

.saver-included-table th,
.saver-included-table td {
  padding: 0.68rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.saver-included-table tr:last-child th,
.saver-included-table tr:last-child td {
  border-bottom: 0;
}

.saver-included-table th {
  width: 37%;
  color: #334155;
  font-weight: 800;
  background: #f8fafc;
}

.saver-included-table td {
  color: #0f172a;
  font-weight: 600;
}

/* Modal Pricing Table */
.modal-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.modal-pricing-table th {
  background: #2563eb;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  text-align: left;
}

.modal-pricing-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: #334155;
}

.modal-pricing-table tr:nth-child(even) {
  background: #f8fafc;
}

.price-tag-highlight {
  font-weight: 900;
  color: #0f172a;
}

.modal-actions-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-modal-submit {
  background: linear-gradient(135deg, #ff2a2a 0%, #2563eb 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.7rem 1.75rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
}

.btn-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.55);
}

.btn-modal-close-text {
  background: #cbd5e1;
  color: #334155;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-close-text:hover {
  background: #94a3b8;
  color: #ffffff;
}

@media (max-width: 640px) {
  .modal-summary-grid {
    grid-template-columns: 1fr;
  }

  .saver-included-heading {
    padding: 0.9rem 1rem;
  }

  .saver-included-table th,
  .saver-included-table td {
    padding: 0.6rem 0.7rem;
    font-size: 0.75rem;
  }

  .saver-included-table th {
    width: 41%;
  }
}

/* Horizontal 3-Card Capsule Grid Layout for Room Pricing Modal (Matching Reference Screenshot Exactly) */
.room-pricing-matrix {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.room-pricing-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed #cbd5e1;
}

.room-pricing-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.room-type-heading {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.room-type-heading i {
  color: #ff2a2a;
}

/* Package Inclusions & Exclusions Section (Pakej Termasuk & Tidak Termasuk) */
.package-inclusions-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.inclusions-sec-header {
  text-align: center;
  margin-bottom: 3rem;
}

.inclusions-sec-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.inclusions-sec-subtitle {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.inc-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inc-card:hover {
  transform: translateY(-4px);
}

/* Card Includes (Termasuk - Blue Accent) */
.inc-card.card-termasuk {
  border-top: 5px solid #2563eb;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08);
}

.inc-card.card-termasuk .inc-card-title {
  color: #2563eb;
}

/* Card Excludes (Tidak Termasuk - Red Accent) */
.inc-card.card-tidak-termasuk {
  border-top: 5px solid #ff2a2a;
  box-shadow: 0 15px 35px rgba(255, 42, 42, 0.08);
}

.inc-card.card-tidak-termasuk .inc-card-title {
  color: #ff2a2a;
}

.inc-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed #e2e8f0;
}

.inc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
}

.inc-item-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}

.icon-check {
  background: #dcfce7;
  color: #16a34a;
}

.icon-cross {
  background: #fee2e2;
  color: #dc2626;
}

.inc-item-text {
  flex-grow: 1;
}

.inc-item-text strong {
  color: #0f172a;
  font-weight: 700;
}

@media (max-width: 900px) {
  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .inc-card {
    padding: 1.75rem;
  }
}

/* ============================================================
   AMAL SURCHARGE NOTIFICATION MODAL (Bright Red, Blue & White Theme)
   ============================================================ */
.amal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 18, 43, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.amal-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}

.amal-modal-card {
  background: #ffffff;
  border-radius: 24px;
  max-width: 580px;
  width: 100%;
  padding: 2.25rem 2.25rem 2rem 2.25rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  border: 2px solid #2563eb;
  z-index: 1000000 !important;
  pointer-events: auto !important;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.amal-modal-overlay.active .amal-modal-card {
  transform: translateY(0) scale(1);
}

.amal-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  color: #64748b;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  z-index: 1000001 !important;
  pointer-events: auto !important;
  transition: all 0.2s ease;
}

.amal-modal-close:hover {
  background: #ff2020;
  color: #ffffff;
}

.amal-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.amal-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fee2e2;
  color: #ff2020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1.5px solid #fca5a5;
}

.amal-header-text {
  flex-grow: 1;
}

.amal-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.6rem;
  border: 1px solid #bfdbfe;
}

.amal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  line-height: 1.25;
  letter-spacing: 0.3px;
  margin: 0;
}

.amal-modal-body {
  color: #334155;
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.amal-modal-body p {
  margin-bottom: 1rem;
}

.amal-modal-body strong {
  color: #0f172a;
  font-weight: 700;
}

.amal-note-box {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
}

.amal-note-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fee2e2;
  color: #ff2020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid #fca5a5;
}

.amal-note-text {
  font-size: 0.9rem;
  color: #0f172a;
  line-height: 1.5;
}

.amal-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
}

.btn-amal-secondary {
  background: transparent;
  border: none;
  color: #2563eb;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 1000001 !important;
  padding: 0.75rem 1rem;
  transition: color 0.2s ease;
}

.btn-amal-secondary:hover {
  color: #ff2020;
  text-decoration: underline;
}

.btn-amal-primary {
  background: linear-gradient(135deg, #ff2020 0%, #2563eb 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.85rem 2.25rem;
  border-radius: 14px;
  border: none;
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 1000001 !important;
  box-shadow: 0 6px 20px rgba(255, 32, 32, 0.35);
  transition: all 0.25s ease;
}

.btn-amal-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 32, 32, 0.5);
}

@media (max-width: 576px) {
  .amal-modal-card {
    padding: 1.75rem 1.25rem 1.5rem 1.25rem;
  }
  .amal-modal-header {
    flex-direction: column;
    gap: 0.75rem;
  }
  .amal-title {
    font-size: 1.15rem;
  }
  .amal-modal-footer {
    flex-direction: column-reverse;
    gap: 0.75rem;
  }
  .btn-amal-primary, .btn-amal-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   INTERACTIVE BOOKING ENGINE & ROOM COUNTER STYLES (Red, Blue & White)
   ============================================================ */
.booking-engine-section {
  padding: 3rem 0 5rem 0;
  background: #f8fafc;
}

.booking-engine-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.btn-download-quotation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1.15rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #dc2626 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-download-quotation:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 11px 25px rgba(37, 99, 235, 0.4);
}

.btn-download-quotation:disabled {
  cursor: wait;
  opacity: 0.75;
}

.btn-download-quotation i {
  font-size: 1.25rem;
}

@media (max-width: 1024px) {
  .booking-engine-grid {
    grid-template-columns: 1fr;
  }
}

/* Package Main Info Card (Gambar 2) */
.pkg-main-info-card {
  background: #ffffff;
  border: 2px solid #2563eb;
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.pkg-duration-pill {
  display: inline-block;
  background: #fee2e2;
  color: #ff2020;
  border: 1px solid #fca5a5;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.pkg-engine-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.flight-hotel-box {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 20px;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .flight-hotel-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.fh-column-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

/* Flight timeline steps */
.flight-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  padding-left: 1.5rem;
}

.flight-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #60a5fa;
}

.flight-step-item {
  position: relative;
}

.flight-step-item::before {
  content: '\f072';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: -1.5rem;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fee2e2;
  color: #ff2020;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid #fca5a5;
}

.flight-code {
  font-weight: 900;
  color: #0f172a;
  font-size: 1rem;
}

.flight-time-desc {
  font-size: 0.88rem;
  color: #2563eb;
  font-weight: 600;
  margin-top: 0.15rem;
}

/* Hotel Item Row */
.hotel-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hotel-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.hotel-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fee2e2;
  color: #ff2020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid #fca5a5;
}

.hotel-details-name {
  font-weight: 800;
  color: #0f172a;
  font-size: 0.95rem;
}

.hotel-details-dist {
  font-size: 0.82rem;
  color: #475569;
  margin-top: 0.15rem;
}

/* Butiran lengkap pakej: kekal padat dan hanya dikembangkan atas permintaan */
.pkg-details-accordion {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  background: #ffffff;
}

.pkg-details-accordion > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem 1.1rem;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease;
}

.pkg-details-accordion > summary::-webkit-details-marker {
  display: none;
}

.pkg-details-summary-title,
.pkg-details-summary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
}

.pkg-details-summary-title {
  font-size: 1.08rem;
}

.pkg-details-summary-title i {
  color: #2563eb;
}

.pkg-details-summary-action {
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.78rem;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.pkg-details-summary-action i {
  transition: transform 0.25s ease;
}

.pkg-details-accordion[open] .pkg-details-summary-action i {
  transform: rotate(180deg);
}

.pkg-details-accordion[open] > summary {
  background: #f8fbff;
}

.pkg-details-preview {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.95rem;
  padding-top: 0.9rem;
  border-top: 1px solid #dbeafe;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
}

.pkg-details-preview span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.pkg-details-preview i {
  color: #ff2020;
}

.pkg-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  background: #f8fbff;
}

.pkg-detail-item {
  min-width: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #ffffff;
}

.pkg-detail-item dt {
  margin: 0 0 0.15rem;
  color: #2563eb;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.pkg-detail-item dd {
  margin: 0;
  color: #0f172a;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .pkg-details-accordion > summary {
    gap: 0.75rem;
    padding: 1rem;
  }

  .pkg-details-summary-title {
    font-size: 0.92rem;
  }

  .pkg-details-summary-action {
    padding: 0.5rem 0.65rem;
    font-size: 0.7rem;
  }

  .pkg-details-preview {
    gap: 0.45rem 0.7rem;
    padding-top: 0.75rem;
    font-size: 0.7rem;
  }

  .pkg-details-grid {
    grid-template-columns: 1fr;
    padding: 0.75rem 0.8rem 0.85rem;
  }
}

/* Room Selection Cards (Gambar 4) */
.room-selection-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.room-type-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.room-type-card.selected {
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
}

.room-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #e2e8f0;
}

.room-card-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
}

.room-card-price-tag {
  font-size: 0.88rem;
  color: #475569;
}

.room-card-price-tag strong {
  color: #ff2020;
  font-size: 1.15rem;
  font-weight: 800;
}

/* 4-Box Counter Grid */
.pax-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

@media (max-width: 480px) {
  .pax-counters-grid {
    grid-template-columns: 1fr;
  }
}

.counter-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 1rem 0.75rem;
  text-align: center;
}

.counter-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #1d4ed8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.counter-label i {
  color: #ff2020;
  font-size: 0.7rem;
}

.counter-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-counter {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-counter:hover {
  background: #ff2020;
  color: #ffffff;
}

.counter-val {
  font-size: 1.1rem;
  font-weight: 900;
  color: #0f172a;
  min-width: 24px;
  text-align: center;
}

/* Sticky Booking Summary Card (Gambar 3) */
.booking-summary-sticky {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border: 2px solid #2563eb;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.summary-header-banner {
  background: linear-gradient(135deg, #09122b 0%, #1e3a8a 50%, #ff2020 100%);
  color: #ffffff;
  padding: 1.5rem 1.75rem;
}

.summary-header-banner h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 0 0.2rem 0;
}

.summary-header-banner p {
  font-size: 0.82rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.summary-body {
  padding: 1.5rem;
}

.summary-pax-count-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.summary-pax-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-pax-badge {
  background: #fee2e2;
  color: #ff2020;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  border: 1px solid #fca5a5;
}

/* Breakdown Area */
.summary-breakdown-box {
  border: 1.5px dashed #bfdbfe;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #64748b;
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-breakdown-box.has-items {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: #0f172a;
  font-size: 0.88rem;
}



.summary-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #eff6ff;
}

.summary-breakdown-item:last-child {
  border-bottom: none;
}

/* Total Bar */
.summary-total-bar {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.total-bar-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.total-bar-label span {
  display: block;
  font-size: 0.68rem;
  opacity: 0.8;
  font-weight: 600;
  margin-top: 0.15rem;
}

.total-bar-val {
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
  letter-spacing: -0.3px;
}

/* Action Button */
.btn-summary-submit {
  width: 100%;
  background: #cbd5e1;
  color: #64748b;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem;
  border-radius: 14px;
  border: none;
  cursor: not-allowed;
  transition: all 0.3s ease;
  margin-bottom: 1.25rem;
}

.btn-summary-submit.active {
  background: linear-gradient(135deg, #ff2020 0%, #2563eb 100%);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(255, 32, 32, 0.35);
}

.btn-summary-submit.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 32, 32, 0.5);
}

.summary-deposit-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: #334155;
  line-height: 1.5;
}

.summary-deposit-note i {
  color: #ff2020;
  margin-top: 2px;
}

.summary-deposit-note strong {
  color: #ff2020;
}

/* Auth Modal (Login / Sign Up) */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 18, 43, 0.65);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.auth-modal-overlay.active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}

.auth-modal-card {
  background: #ffffff;
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border: 2px solid #2563eb;
}

.auth-tab-buttons {
  display: flex;
  border-bottom: 2px solid #f1f5f9;
  margin-bottom: 1.75rem;
}

.auth-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 800;
  color: #64748b;
  padding: 0.75rem 0;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.auth-tab-btn.active {
  color: #ff2020;
  border-bottom-color: #ff2020;
}

/* Total Deposit Bar (Between KESELURAHAN & TEMPAH SEKARANG) */
.summary-deposit-bar {
  background: #fee2e2;
  border: 1.5px solid #fca5a5;
  color: #ff2020;
  border-radius: 16px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.summary-deposit-bar .total-bar-label {
  color: #991b1b;
}

.summary-deposit-bar .total-bar-label span {
  color: #dc2626;
  opacity: 0.9;
}

.summary-deposit-bar .total-bar-val {
  color: #ff2020;
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
  letter-spacing: -0.3px;
}

/* Strategic Partners Section (Before Footer) */
.strategic-partners-section {
  background: #ffffff;
  border-top: 1.5px solid #e2e8f0;
  border-bottom: 1.5px solid #e2e8f0;
  padding: 4rem 0;
  position: relative;
}

.partners-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.partners-subtitle {
  display: inline-block;
  color: #ff2020;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
}

.partners-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.75rem 0;
}

.partners-title-bar {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #ff2020 0%, #2563eb 100%);
  margin: 0 auto;
  border-radius: 9999px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.partner-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  height: 120px;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: #2563eb;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}

.partner-logo {
  max-height: 42px;
  max-width: 130px;
  object-fit: contain;
}

.partner-icon-wrap {
  font-size: 2.2rem;
  line-height: 1;
}

.partner-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
}

/* Tempah Auth Modal (Exact layout matching user screenshot with Beta Logo Transparent & WhatsApp Button) */
.tempah-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 18, 43, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.tempah-modal-overlay.active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}

.tempah-modal-card {
  background: #ffffff;
  border-radius: 24px;
  max-width: 620px;
  width: 100%;
  padding: 2.25rem 2.25rem 2rem 2.25rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border: 2px solid #2563eb;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tempah-modal-overlay.active .tempah-modal-card {
  transform: translateY(0) scale(1);
}

.tempah-modal-logo {
  height: 95px !important;
  max-height: 100px !important;
  max-width: 340px !important;
  width: auto !important;
  object-fit: contain !important;
  margin: 0 auto 1.5rem auto !important;
  display: block !important;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.tempah-auth-tabs {
  display: flex;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 1.75rem;
}

.tempah-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 800;
  color: #64748b;
  padding: 0.75rem 0;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.tempah-tab-btn.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

/* 2-Column Split with Vertical Divider */
.tempah-auth-split {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.tempah-auth-left {
  flex: 1;
}

.tempah-auth-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 0.5rem;
}

.tempah-auth-divider::before, .tempah-auth-divider::after {
  content: '';
  width: 1px;
  height: 70px;
  background: #cbd5e1;
}

.tempah-auth-divider span {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  margin: 0.5rem 0;
  text-transform: lowercase;
}

.tempah-auth-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 640px) {
  .tempah-auth-split {
    flex-direction: column;
    gap: 1.25rem;
  }
  .tempah-auth-divider {
    flex-direction: row;
    width: 100%;
  }
  .tempah-auth-divider::before, .tempah-auth-divider::after {
    width: 40%;
    height: 1px;
  }
  .tempah-auth-divider span {
    margin: 0 0.5rem;
  }
}

.input-with-eye {
  position: relative;
}

.input-with-eye input {
  padding-right: 2.75rem;
}

.eye-toggle-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
}

.eye-toggle-btn:hover {
  color: #0f172a;
}

.btn-google-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  color: #2563eb;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-google-login:hover {
  background: #eff6ff;
  border-color: #2563eb;
}

.btn-whatsapp-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.btn-whatsapp-direct:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
}

.month-row-header {
  cursor: pointer !important;
  user-select: none;
  transition: background-color 0.2s ease, filter 0.2s ease;
}

.month-row-header:hover {
  filter: brightness(0.96);
}

.month-flex {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.month-flex i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ff2020;
  font-size: 1.1rem;
}

.month-row-header.collapsed .month-flex i {
  transform: rotate(180deg);
}

/* ==========================================================================
   GOOGLE SEARCH STYLE SITE DIRECTORY / SITELINKS SECTION
   ========================================================================== */
.site-directory-section {
  padding: 4.5rem 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.directory-title-area {
  text-align: center;
  margin-bottom: 2.5rem;
}

.directory-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  border: 1px solid #bfdbfe;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directory-main-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.directory-main-subtext {
  color: #64748b;
  font-size: 0.95rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Google-inspired Search Result Container Card */
.google-search-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  max-width: 1000px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-search-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

/* Search Result Top Breadcrumb */
.google-result-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.google-result-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  padding: 4px;
}

.google-result-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.google-result-url-box {
  display: flex;
  flex-direction: column;
}

.google-result-domain {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.google-result-url {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.2;
}

.google-translate-tag {
  margin-left: auto;
  font-size: 0.78rem;
  color: #2563eb;
  background: #eff6ff;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Search Result Main Title */
.google-main-link {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a0dab;
  text-decoration: none;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.google-main-link:hover {
  text-decoration: underline;
  color: #150aa1;
}

.google-main-snippet {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

/* Sitelinks 2-Column Grid */
.google-sitelinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2.5rem;
}

@media (max-width: 768px) {
  .google-sitelinks-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .google-search-card {
    padding: 1.5rem;
  }
  .directory-main-heading {
    font-size: 1.75rem;
  }
}

.sitelink-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sitelink-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a0dab;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.sitelink-title:hover {
  text-decoration: underline;
  color: #2563eb;
}

.sitelink-snippet {
  font-size: 0.86rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

