/* ============================================
   Deluxe142 — Premium Travel Agency Styles
   ============================================ */

:root {
  --primary: #2c1d1d;
  --primary-light: #1a1010;
  --primary-mid: #140c0c;
  --accent: #f00;
  --accent-hover: #B91C1C;
  --accent-light: rgba(220, 38, 38, 0.14);
  --accent-glow: rgba(220, 38, 38, 0.35);
  --white: #ffffff;
  --off-white: #faf8f8;
  --gray-100: #f3f0f0;
  --gray-200: #e8e4e4;
  --gray-400: #9a9595;
  --gray-600: #5c5858;
  --text: #2c2828;
  --shadow-sm: 0 4px 14px rgba(12, 8, 8, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 8, 8, 0.12);
  --shadow-lg: 0 24px 70px rgba(12, 8, 8, 0.18);
  --shadow-gold: 0 8px 32px rgba(220, 38, 38, 0.28);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent), var(--accent-hover));
  border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- Typography Utilities ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  position: relative;
}

.text-center .section-label::before,
.text-center .section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.text-center .section-label::before {
  right: calc(100% + 12px);
  background: linear-gradient(90deg, transparent, var(--accent));
}

.text-center .section-label::after {
  left: calc(100% + 12px);
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.text-center .section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  margin: 1.1rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.text-accent {
  color: var(--accent) !important;
}

/* ---- Buttons ---- */
.btn-gold {
  background: linear-gradient(135deg, #fca5a5 0%, var(--accent) 50%, var(--accent-hover) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.8rem 2.1rem;
  border: none;
  border-radius: 50px;
  transition: all var(--transition);
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-gold:hover::before {
  transform: translateX(100%);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-hover), #7f1d1d);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.45);
}

.btn-outline-gold {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.78rem 2.1rem;
  border: 2px solid rgba(220, 38, 38, 0.7);
  border-radius: 50px;
  transition: all var(--transition);
  display: inline-block;
}

.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.65rem 1.75rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  transition: all var(--transition);
  display: inline-block;
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 0.45rem 1.35rem !important;
  margin-left: 0.5rem;
  font-weight: 600 !important;
  box-shadow: var(--shadow-gold);
}

.btn-nav-cta::after {
  display: none !important;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

/* ---- Navbar ---- */
.navbar-deluxe {
  background: transparent;
  padding: 1.25rem 0;
  transition: all var(--transition);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
}

.navbar-deluxe.scrolled {
  background: rgba(12, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
}

.navbar-deluxe .navbar-brand {
  padding: 0;
  margin-right: 0;
}

/* ---- Creative Logo ---- */
.logo-deluxe {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none !important;
  color: var(--white) !important;
  transition: transform var(--transition);
}

.logo-deluxe:hover {
  transform: translateY(-1px);
  color: var(--white) !important;
}

.logo-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(220, 38, 38, 0.25), rgba(220, 38, 38, 0.08));
  border: 1.5px solid rgba(220, 38, 38, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.2);
  overflow: hidden;
}

.logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
}

.logo-mark-letter {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.logo-plane {
  position: absolute;
  bottom: 4px;
  right: 3px;
  font-size: 0.55rem;
  color: var(--accent);
  transform: rotate(-35deg);
  opacity: 0.9;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-gold {
  color: var(--accent);
  background: linear-gradient(135deg, #fecaca, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(220, 38, 38, 0.85);
  margin-top: 2px;
}

.logo-deluxe--footer .logo-mark {
  width: 48px;
  height: 48px;
}

.logo-deluxe--footer .logo-title {
  font-size: 1.55rem;
}

.footer-brand.logo-deluxe {
  margin-bottom: 1rem;
}

.navbar-deluxe .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color var(--transition);
}

.navbar-deluxe .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.navbar-deluxe .nav-link:hover,
.navbar-deluxe .nav-link.active {
  /* color: var(--accent) !important; */
}

.navbar-deluxe .nav-link:hover::after,
.navbar-deluxe .nav-link.active::after {
  width: 60%;
}

.navbar-deluxe .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0.6rem;
}

.navbar-deluxe .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28220, 38, 38, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-deluxe .navbar-collapse {
  transition: all var(--transition);
}

@media (max-width: 991.98px) {
  .navbar-deluxe .navbar-collapse {
    background: rgba(20, 10, 10, 0.98);
    padding: 1rem;
    margin-top: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(220, 38, 38, 0.2);
  }

  .navbar-deluxe .nav-link::after {
    display: none;
  }
}

/* ---- Hero Sections ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
  linear-gradient(135deg, rgb(12, 8, 8) 0%, rgba(12, 8, 8, 0.57) 45%, rgb(12, 8, 8) 100%), radial-gradient(ellipse at 20% 80%, rgba(220, 38, 38, 0.21) 0%, transparent 55%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 8, 8, 0.5), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  animation: fadeInUp 1s ease 1s both;
  transition: color var(--transition);
}

.hero-scroll:hover {
  color: var(--accent);
}

.hero-scroll-icon {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(220, 38, 38, 0.5);
  border-radius: 14px;
  position: relative;
}

.hero-scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.45);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.5rem 1.35rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  background: linear-gradient(135deg, #fecaca 0%, var(--accent) 45%, #991b1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-inner {
  min-height: 60vh;
}

.page-hero {
  min-height: 55vh;
}

.page-hero .hero-content {
  padding-top: 120px;
  padding-bottom: 60px;
}

/* ---- Sections ---- */
section {
  padding: 5rem 0;
}

section.bg-light {
  background-color: var(--off-white);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(12, 8, 8, 0.03) 0%, transparent 50%);
}

.intro-section img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.intro-section img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(12, 8, 8, 0.2);
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(220, 38, 38, 0.15);
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
}

.trust-item {
  text-align: center;
  padding: 0.5rem 1rem;
}

.trust-item i {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.trust-item h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.15rem;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0;
  letter-spacing: 0.5px;
}

section.bg-dark {
  background-color: var(--primary);
  color: var(--white);
}

section.bg-dark h2,
section.bg-dark h3,
section.bg-dark h4 {
  color: var(--white);
}

/* ---- Destination Cards ---- */
.destination-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.destination-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  z-index: 3;
  transition: border-color var(--transition);
  pointer-events: none;
}

.destination-card:hover::before {
  border-color: rgba(220, 38, 38, 0.5);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(12, 8, 8, 0.25);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 10, 10, 0.95) 0%, rgba(20, 10, 10, 0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--transition);
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(20, 10, 10, 0.98) 0%, rgba(20, 10, 10, 0.4) 70%);
}

.destination-overlay h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.destination-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ---- Package Cards ---- */
.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  position: relative;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 2;
}

.package-card:hover::before {
  transform: scaleX(1);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 38, 38, 0.35);
}

.package-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-card-img img {
  transform: scale(1.06);
}

.package-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 8, 8, 0.55) 0%, transparent 50%);
  pointer-events: none;
}

.package-duration {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}

.package-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.package-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.package-highlights li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.package-highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.65rem;
  top: 0.45rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.package-price .from {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.package-price .amount {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
}

.package-price .per {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ---- Feature / Why Choose Cards ---- */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transition: width var(--transition);
}

.feature-card:hover::after {
  width: 60%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(220, 38, 38, 0.3);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent-light), rgba(220, 38, 38, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--accent);
  transition: all var(--transition);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--primary);
}

.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  border-left: 4px solid var(--accent);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-author h5 {
  font-size: 0.95rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

/* ---- About Page ---- */
.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent);
  border-radius: 12px;
  z-index: -1;
}

.mission-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
}

.mission-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.stats-box {
  text-align: center;
  padding: 2rem;
}

.stats-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stats-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

/* ---- Contact Page ---- */
.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background: rgba(220, 38, 38, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h5 {
  color: var(--accent);
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.map-placeholder {
  border-radius: 12px;
  overflow: hidden;
  height: 350px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Attraction / Info Cards ---- */
.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  border: 1px solid var(--gray-200);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(220, 38, 38, 0.3);
}

.info-card-img {
  height: 180px;
  overflow: hidden;
}

.info-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.info-card:hover .info-card-img img {
  transform: scale(1.05);
}

.info-card-body {
  padding: 1.25rem;
}

.info-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.info-card-body p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

/* ---- FAQ Accordion ---- */
.accordion-deluxe .accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: 8px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.accordion-deluxe .accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--white);
  padding: 1.15rem 1.5rem;
  box-shadow: none;
}

.accordion-deluxe .accordion-button:not(.collapsed) {
  background: var(--accent-light);
  color: var(--primary);
}

.accordion-deluxe .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DC2626'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-deluxe .accordion-body {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 0 1.5rem 1.25rem;
}

/* ---- Footer ---- */
.footer {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand:not(.logo-deluxe) {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
}

.footer-brand:not(.logo-deluxe) span {
  color: var(--accent);
}

/* ---- Intro Section ---- */
.intro-section img {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.intro-content h2 {
  margin-bottom: 1.25rem;
}

.intro-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

.hero .fade-up.delay-1 { transition-delay: 0.15s; }
.hero .fade-up.delay-2 { transition-delay: 0.3s; }
.hero .fade-up.delay-3 { transition-delay: 0.45s; }

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 1040;
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
}

/* ---- Breadcrumb ---- */
.breadcrumb-deluxe {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-deluxe .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.breadcrumb-deluxe .breadcrumb-item.active {
  color: var(--accent);
  font-size: 0.85rem;
}

.breadcrumb-deluxe .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Travel Guide List ---- */
.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.guide-list li:last-child {
  border-bottom: none;
}

.guide-list-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.guide-list h5 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.guide-list p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  section {
    padding: 3.5rem 0;
  }

  .hero {
    background-attachment: scroll;
  }

  .destination-card {
    height: 350px;
  }

  .page-hero .hero-content {
    padding-top: 110px;
    padding-bottom: 3rem;
  }
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-bottom: 2.5rem;
  }

  .hero:not(.page-hero) {
    min-height: 88vh;
    align-items: center;
    padding-bottom: 3rem;
  }

  .page-hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    width: 100%;
  }

  .page-hero .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
    word-break: break-word;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 0.4rem 0.85rem;
    margin-bottom: 1rem;
  }

  .breadcrumb-deluxe {
    margin-bottom: 0.75rem;
  }

  .breadcrumb-deluxe .breadcrumb-item a,
  .breadcrumb-deluxe .breadcrumb-item.active {
    font-size: 0.8rem;
  }

  .navbar-deluxe {
    padding: 0.75rem 0;
  }

  .navbar-deluxe .navbar-brand {
    max-width: calc(100% - 3.5rem);
  }

  .logo-title {
    font-size: 1.2rem;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .logo-mark-letter {
    font-size: 1.15rem;
  }

  .logo-subtitle {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  .hero-scroll {
    display: none;
  }

  .text-center .section-label::before,
  .text-center .section-label::after {
    width: 24px;
  }

  .navbar-deluxe > .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btn-nav-cta {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    text-align: center;
    display: inline-block;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .destination-card {
    height: 300px;
  }

  .destination-overlay {
    padding: 1.25rem;
  }

  .destination-overlay h3 {
    font-size: 1.4rem;
  }

  .btn-gold,
  .btn-outline-gold {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
  }

  .hero .d-flex.flex-wrap.gap-3 .btn-gold,
  .hero .d-flex.flex-wrap.gap-3 .btn-outline-gold,
  .cta-section .d-flex .btn-gold,
  .cta-section .d-flex .btn-outline-gold,
  .destination-overlay .btn-gold,
  .package-card .btn-gold {
    width: auto;
  }

  .package-card .btn-gold,
  .destination-overlay .btn-gold {
    width: 100%;
  }

  .about-image::after {
    display: none;
  }

  .mission-card {
    padding: 1.75rem;
  }

  .mission-card:hover {
    transform: none;
  }

  .stats-number {
    font-size: 2.25rem;
  }

  .package-price {
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
  }

  .package-price .amount {
    font-size: 1.2rem;
  }

  .contact-form,
  .contact-info-card {
    padding: 1.75rem;
  }

  .footer {
    padding-top: 3rem;
  }

  .scroll-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .page-hero .hero-content {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .navbar-deluxe .navbar-brand {
    max-width: calc(100% - 3rem);
  }

  .logo-title {
    font-size: 1.1rem;
  }

  .logo-subtitle {
    display: none;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .package-card-img {
    height: 180px;
  }

  .package-card-body {
    padding: 1.15rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }
}

/* ============================================
   Premium Enhancements — Loader, Search, Filter
   ============================================ */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: rgba(220, 38, 38, 0.15);
  border: 2px solid rgba(220, 38, 38, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: loaderPulse 1.5s ease infinite;
}

.loader-logo span {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.loader-logo i {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 0.65rem;
  color: var(--accent);
  transform: rotate(-35deg);
}

.loader-text {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.loader-progress {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: 3px;
  animation: loaderSlide 1.2s ease infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(220, 38, 38, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(220, 38, 38, 0.25); }
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Search Glass Panel */
.search-section {
  margin-top: -4rem;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
}

.search-glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-lg);
}

.search-glass h2 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.search-glass .form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.search-glass .form-control,
.search-glass .form-select {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

.search-glass .form-control:focus,
.search-glass .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

/* Package Filters */
.package-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.35rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-color: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

/* Hotel Rating on Cards */
.package-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.hotel-stars {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.hotel-stars .bi-star {
  color: var(--gray-200);
}

.hotel-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.3px;
}

.package-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.btn-view-details {
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-align: center;
  transition: all var(--transition);
  display: block;
}

.btn-view-details:hover {
  background: var(--primary);
  color: var(--white);
}

/* Travel Services */
.service-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(220, 38, 38, 0.35);
  transform: translateY(-6px);
}

.service-card i {
  font-size: 2.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.service-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin: 0;
}

/* Stats Counter Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 60%);
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-box i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}

/* Team Section */
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 38, 38, 0.35);
}

.team-img {
  height: 260px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.06);
}

.team-body {
  padding: 1.5rem;
}

.team-body h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.team-body p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

/* Experience Timeline */
.experience-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.experience-item:last-child {
  border-bottom: none;
}

.experience-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 70px;
  line-height: 1;
  padding-top: 0.15rem;
}

.experience-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.experience-item p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin: 0;
}

@media (max-width: 767.98px) {
  .search-section {
    margin-top: -2rem;
  }

  .search-glass {
    padding: 1.5rem;
  }

  .team-img {
    height: 220px;
  }
}

/* ============================================
   Layout V2 — Editorial Split Design
   ============================================ */

.site-v2 .navbar-deluxe {
  top: 1.25rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 1180px;
  border-radius: 100px;
  background: rgba(12, 8, 8, 0.88);
  backdrop-filter: blur(20px);
  padding: 0.55rem 0.5rem 0.55rem 1.25rem;
  border: 1px solid rgba(220, 38, 38, 0.18);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.site-v2 .navbar-deluxe.scrolled {
  top: 0.75rem;
  padding: 0.45rem 0.5rem 0.45rem 1.15rem;
}

.site-v2 .navbar-deluxe .container {
  max-width: 100%;
  padding: 0 0.5rem;
}

@media (max-width: 991.98px) {
  .site-v2 .navbar-deluxe {
    border-radius: 16px;
    top: 0.75rem;
    width: calc(100% - 1.5rem);
  }

  .site-v2 .navbar-deluxe .navbar-collapse {
    border-radius: 12px;
    margin-top: 0.5rem;
  }
}

/* Split Hero */
.site-v2 .hero-split {
  min-height: auto;
  background: var(--primary);
  display: block;
  padding-top: 6.5rem;
}

.site-v2 .hero-split::before,
.site-v2 .hero-split::after {
  display: none;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 2rem);
  max-height: 900px;
}

.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem 3rem clamp(1.5rem, 5vw, 5rem);
  background: var(--primary);
  position: relative;
}

.hero-split-content::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(220, 38, 38, 0.3), transparent);
}

.hero-split-inner h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-split-inner h1 span {
  background: linear-gradient(135deg, #fecaca, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-split-inner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-search-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem;
  backdrop-filter: blur(12px);
}

.hero-search-panel h2 {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.hero-search-panel h2 i {
  margin-right: 0.5rem;
}

.hero-search-fields {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.hero-search-field {
  flex: 1;
  min-width: 120px;
}

.hero-search-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.hero-search-field .form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
}

.hero-search-field .form-select option {
  color: var(--primary);
}

.hero-search-btn {
  padding: 0.65rem 1.75rem !important;
  white-space: nowrap;
}

.hero-split-visual {
  position: relative;
  overflow: hidden;
}

.hero-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 8, 8, 0.35) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1rem 1.35rem;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--accent);
}

.hero-float-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary);
  line-height: 1;
}

.hero-float-card span {
  font-size: 0.75rem;
  color: var(--gray-600);
  letter-spacing: 0.5px;
}

.hero-float-card--top {
  top: 15%;
  left: -1.5rem;
}

.hero-float-card--bottom {
  bottom: 12%;
  right: 2rem;
}

/* Trust Bar Ribbon */
.site-v2 .trust-bar {
  padding: 0;
  border: none;
}

.site-v2 .trust-bar .row {
  display: flex;
  flex-wrap: wrap;
}

.site-v2 .trust-item {
  border-right: 1px solid rgba(220, 38, 38, 0.15);
  padding: 1.75rem 1rem;
}

.site-v2 .trust-bar .col-md-3:last-child .trust-item {
  border-right: none;
}

/* Section Headers — Left Aligned */
.section-header-left {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.section-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.75;
  line-height: 1;
  min-width: 60px;
}

.section-header-left .section-label::before,
.section-header-left .section-label::after {
  display: none;
}

.section-header-left .section-title {
  margin-bottom: 0.35rem;
}

.section-header-left .section-title::after {
  display: none;
}

.section-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
  max-width: 400px;
}

.section-num--light {
  color: rgba(220, 38, 38, 0.85);
}

.site-v2 section.bg-dark .section-title {
  color: var(--white);
}

/* Intro Overlap Frame */
.intro-overlap {
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}

.intro-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(220, 38, 38, 0.4);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
  margin: 1rem;
}

.intro-image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Bento Destinations */
.destinations-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  min-height: 480px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none !important;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card:hover img {
  transform: scale(1.05);
}

.bento-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 8, 8, 0.92) 0%, rgba(12, 8, 8, 0.15) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.bento-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.bento-content h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.bento-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  max-width: 380px;
}

.bento-link {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}

.bento-card:hover .bento-link {
  gap: 0.85rem;
}

/* Horizontal Package Cards */
.packages-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.package-card--horizontal {
  flex-direction: row !important;
  align-items: stretch;
}

.package-card--horizontal .package-card-img {
  width: 280px;
  min-width: 280px;
  /* height: auto;
  min-height: 200px; */
  flex-shrink: 0;
}

.package-card--horizontal .package-card-body {
  flex: 1;
  padding: 1.35rem 1.75rem;
}

.package-card--horizontal .package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  margin-bottom: 0.75rem;
}

.package-card--horizontal .package-highlights li {
  flex: 0 0 auto;
  padding-left: 1rem;
}

.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-200);
}

.package-card-footer .package-price {
  margin: 0;
  padding: 0;
  border: none;
}

.package-card-footer .btn-view-details {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
}

/* Package pages — horizontal list */
.site-v2 #hong-kong-packages .row.g-4,
.site-v2 #macau-packages .row.g-4 {
  flex-direction: column;
}

.site-v2 #hong-kong-packages .package-card,
.site-v2 #macau-packages .package-card {
  flex-direction: row;
}

.site-v2 #hong-kong-packages .package-card-img,
.site-v2 #macau-packages .package-card-img {
  width: 300px;
  min-width: 300px;
  /* height: auto;
  min-height: 220px; */
}

.site-v2 #hong-kong-packages .package-card-body,
.site-v2 #macau-packages .package-card-body {
  flex: 1;
}

.site-v2 #hong-kong-packages .package-card-actions,
.site-v2 #macau-packages .package-card-actions {
  flex-direction: row;
  align-items: center;
}

/* Feature Strips */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-strip {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-strip::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-hover));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.feature-strip:hover::before {
  transform: scaleY(1);
}

.feature-strip:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.feature-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  min-width: 36px;
}

.feature-strip .feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 1.35rem;
  margin: 0;
  border-radius: 12px;
}

.feature-strip h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.feature-strip p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

/* Services — horizontal strip on v2 */
.site-v2 #services .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.site-v2 .service-card {
  text-align: left;
  padding: 1.75rem;
  border-radius: var(--radius-md);
}

.site-v2 .service-card i {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

/* Testimonials Masonry */
.testimonials-masonry {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.testimonial-featured {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  background: var(--primary);
  border-left: none;
  border-top: 4px solid var(--accent);
}

.testimonial-featured .testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  flex: 1;
}

.testimonial-featured .testimonial-author h5 {
  color: var(--white);
}

.testimonials-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonials-side .testimonial-card {
  flex: 1;
  border-left: none;
  border-top: 3px solid var(--accent);
}

/* Stats inline ribbon */
.site-v2 .stats-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(220, 38, 38, 0.15);
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
}

.site-v2 .stats-section .row {
  display: flex;
}

.site-v2 .stat-box {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.site-v2 .stat-box:last-child {
  border-right: none;
}

/* CTA Split */
.cta-split-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.cta-split-text h2 {
  text-align: left;
  margin-bottom: 0.5rem;
}

.cta-split-text p {
  margin: 0;
  max-width: 520px;
  text-align: left;
}

.cta-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* Inner Page Heroes */
.site-v2 .page-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  background-attachment: scroll;
}

.site-v2 .page-hero::before {
  background: linear-gradient(to top, var(--primary) 0%, rgba(12, 8, 8, 0.45) 55%, rgba(12, 8, 8, 0.25) 100%);
}

.site-v2 .page-hero .hero-content {
  padding-top: 7rem;
  padding-bottom: 3rem;
  width: 100%;
}

.site-v2 .page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Footer V2 */
.site-v2 .footer {
  border-top: 3px solid var(--accent);
}

.site-v2 .footer .row {
  align-items: flex-start;
}

/* Filter pills V2 */
.site-v2 .package-filters {
  justify-content: flex-start;
  margin-bottom: 2rem;
}

/* Contact page layout */
.site-v2 .contact-form {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

/* Responsive V2 */
@media (max-width: 991.98px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .hero-split-content {
    padding: 2rem 1.5rem;
    order: 2;
  }

  .hero-split-content::after {
    display: none;
  }

  .hero-split-visual {
    order: 1;
    min-height: 280px;
  }

  .hero-float-card--top {
    top: 1rem;
    left: 1rem;
  }

  .hero-float-card--bottom {
    bottom: 1rem;
    right: 1rem;
  }

  .destinations-bento {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bento-large {
    min-height: 320px;
  }

  .bento-small {
    min-height: 240px;
  }

  .package-card--horizontal {
    flex-direction: column !important;
  }

  .package-card--horizontal .package-card-img {
    width: 100%;
    min-width: 100%;
    height: 200px;
  }

  .site-v2 #hong-kong-packages .package-card,
  .site-v2 #macau-packages .package-card {
    flex-direction: column;
  }

  .site-v2 #hong-kong-packages .package-card-img,
  .site-v2 #macau-packages .package-card-img {
    width: 100%;
    min-width: 100%;
    /* height: 220px; */
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-masonry {
    grid-template-columns: 1fr;
  }

  .site-v2 #services .row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-split-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-split-text h2,
  .cta-split-text p {
    text-align: center;
  }

  .cta-split-actions {
    justify-content: center;
  }

  .site-v2 .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
  }

  .site-v2 .stat-box {
    border-right: none;
  }
}

@media (max-width: 575.98px) {
  .hero-search-fields {
    flex-direction: column;
  }

  .hero-search-btn {
    width: 100%;
  }

  .package-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-v2 #services .row {
    grid-template-columns: 1fr;
  }

  .section-num {
    font-size: 2rem;
    min-width: 44px;
  }
}

/* ============================================
   Footer V2 Layout
   ============================================ */

.footer-v2 {
  padding-top: 0;
}

.footer-v2::before {
  display: none;
}

.footer-cta-bar {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  padding: 2.25rem 0;
  position: relative;
  overflow: hidden;
}

.footer-cta-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-cta-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.35rem;
}

.footer-cta-inner h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0;
  font-family: var(--font-heading);
}

.footer-cta-inner .btn-gold {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.footer-cta-inner .btn-gold:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-body {
  padding: 3.5rem 0 2rem;
}

.footer-v2-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-v2-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 1rem 0 0;
  max-width: 320px;
}

.footer-v2-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-v2-col h5,
.footer-v2-contact h5 {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(220, 38, 38, 0.35);
  display: inline-block;
}

.footer-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  transition: all var(--transition);
}

.footer-info-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateX(4px);
}

.footer-info-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(220, 38, 38, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.footer-info-card strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.footer-info-card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.footer-info-card a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer-info-card a:hover {
  color: var(--accent);
}

.footer-bottom-v2 {
  margin-top: 0;
  padding: 1.25rem 0;
  background: rgba(0, 0, 0, 0.25);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  margin: 0;
  text-align: left;
}

.footer-bottom-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-bottom-nav a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-bottom-nav a:hover {
  color: var(--accent);
}

.site-v2 .footer-v2 {
  border-top: none;
}

@media (max-width: 991.98px) {
  .footer-v2-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-v2-contact {
    grid-column: 1 / -1;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-inner .btn-gold {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .footer-v2-grid,
  .footer-v2-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-inner p {
    text-align: center;
  }

  .footer-bottom-nav {
    justify-content: center;
  }
}
