/* ================================================
   Fly5Star Travel – Design System v2
   Navy #0A1628 | Gold #C9A84C | White #FFFFFF
================================================ */
:root {
  --primary: #0A1628;
  --primary-light: #1A2E4A;
  --primary-mid: #162340;
  --accent: #C9A84C;
  --accent-light: #E8C97A;
  --accent-dark: #A8892E;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  /* ✅ was missing – used in input icons */
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --text-dark: #1F2937;
  --muted: #6B7280;
  /* ✅ was missing – used in dashboard */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .15);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, .35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --t: all .3s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

/* --- Utilities --- */
.text-gold {
  color: var(--accent) !important;
}

.text-gold-light {
  color: var(--accent-light) !important;
}

.text-navy {
  color: var(--primary) !important;
}

.bg-navy {
  background: var(--primary) !important;
}

.bg-soft {
  background: var(--gray-50) !important;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
}

.section-title span {
  color: var(--accent);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, .12);
  color: var(--accent);
  border: 1px solid rgba(201, 168, 76, .3);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: .8rem;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 3px;
  margin: .8rem 0 1.2rem;
}

.section-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  border: none;
  transition: var(--t);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  background: transparent;
  transition: var(--t);
}

.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-navy {
  background: var(--primary);
  color: var(--accent);
  border: none;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  transition: var(--t);
}

.btn-navy:hover {
  background: var(--primary-light);
  color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, .5);
  color: #fff;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  background: transparent;
  transition: var(--t);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--primary);
}

/* --- Top Bar --- */
.top-bar {
  background: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 0;
  transition: all 0.4s ease;
}

#mainNav.scrolled .top-bar {
  margin-top: -45px;
  opacity: 0;
}

.top-info {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.top-info i {
  color: var(--accent);
  margin-right: 5px;
}

.top-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-left: 15px;
  transition: var(--t);
}

.top-social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* --- Navbar --- */
/* NOTE: .collapse visibility override removed — it breaks Bootstrap mobile dropdown animation */

#mainNav {
  background: transparent;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  top: 40px;
  /* Offset for top-bar */
}

#mainNav.scrolled {
  background: rgba(10, 22, 40, 0.9) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  top: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

#mainNav.page-nav {
  background: var(--primary) !important;
  top: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.brand-name span {
  color: var(--accent);
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, var(--accent) 0%, #fff 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoShimmer 3s linear infinite;
}

@keyframes logoShimmer {
  to {
    background-position: 200% center;
  }
}

.brand-tagline {
  font-size: .6rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 20px;
}

.nav-link-custom:hover {
  color: var(--accent) !important;
  transform: translateY(-1px);
}

.nav-link-custom.active {
  color: var(--accent) !important;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  background: rgba(12, 22, 46, .98);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: var(--radius-md);
  padding: .5rem;
  min-width: 220px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  margin-top: 0 !important;
}

.dropdown-item {
  color: rgba(255, 255, 255, .75) !important;
  font-size: .875rem;
  font-weight: 500;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--t);
}

.dropdown-item:hover {
  background: rgba(201, 168, 76, .12) !important;
  color: var(--accent) !important;
  padding-left: 1.3rem;
}

.dropdown-item i {
  width: 16px;
  color: var(--accent);
  margin-right: 8px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary) !important;
  font-weight: 700 !important;
  border-radius: 50px;
  padding: 0.6rem 1.4rem !important;
  font-size: 0.82rem !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.navbar-toggler {
  border: 0;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 52px;
  height: 42px;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s ease;
}

.navbar-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.navbar-toggler span:nth-child(2) {
  width: 18px;
}

.navbar-toggler span:nth-child(3) {
  width: 12px;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}


/* --- Hero --- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #04080f 0%, #0a1628 35%, #162340 65%, #0f1e38 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, .04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-radial {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, .07) 0%, transparent 70%);
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: .4;
  }

  90% {
    opacity: .1;
  }

  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--accent-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title .gold-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--accent));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, .7);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
}

.trust-badge i {
  color: var(--accent);
}

.hero-globe {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .15);
}

.globe-ring-1 {
  width: 400px;
  height: 400px;
  animation: spin 25s linear infinite;
}

.globe-ring-2 {
  width: 300px;
  height: 300px;
  top: 50px;
  left: 50px;
  animation: spin 18s linear infinite reverse;
}

.globe-ring-3 {
  width: 200px;
  height: 200px;
  top: 100px;
  left: 100px;
  animation: spin 12s linear infinite;
  border-style: dashed;
}

.globe-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.5rem;
  filter: drop-shadow(0 0 30px rgba(201, 168, 76, .5));
  animation: float 3s ease-in-out infinite;
}

.globe-popup {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, .3);
  border-radius: 14px;
  padding: 10px 16px;
}

.globe-popup .num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.globe-popup .lbl {
  font-size: .7rem;
  color: rgba(255, 255, 255, .6);
}

/* --- Stats --- */
.stats-bar {
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  padding: 3rem 0;
  border-top: 1px solid rgba(201, 168, 76, .1);
  border-bottom: 1px solid rgba(201, 168, 76, .1);
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-lbl {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
}

.stat-sep {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  height: 50px;
  align-self: center;
}

/* --- Booking Widget --- */
#booking-section {
  margin-top: -40px;
  position: relative;
  z-index: 20;
}

.booking-widget {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22), 0 0 0 1px rgba(201, 168, 76, .1);
}

.booking-tab-btn {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-500);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  padding: .6rem 1.2rem;
  border-radius: 50px;
  font-size: .85rem;
  transition: var(--t);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.booking-tab-btn.active,
.booking-tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
}

.booking-widget label {
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-500);
  display: block;
  margin-bottom: 5px;
}

.booking-field {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--primary);
  width: 100%;
  transition: var(--t);
  font-family: 'Inter', sans-serif;
  background: #fff;
  outline: none;
}

.booking-field:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
}

.btn-search-flights {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--accent);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  border: none;
  border-radius: var(--radius-md);
  padding: .8rem 1rem;
  font-size: 1rem;
  width: 100%;
  transition: var(--t);
  cursor: pointer;
}

.btn-search-flights:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* --- Service Cards --- */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  transition: var(--t);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201, 168, 76, .4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--t);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
}

/* --- Offer Cards --- */
.offer-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: var(--t);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.offer-img-wrap {
  height: 230px;
  position: relative;
  overflow: hidden;
}

.offer-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s;
}

.offer-card:hover .offer-bg {
  transform: scale(1.08);
}

.offer-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}

.offer-body {
  padding: 1.5rem;
}

.offer-price-new {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--accent);
}

.offer-price-old {
  font-size: .9rem;
  color: var(--gray-300);
  text-decoration: line-through;
}

/* --- Why Us --- */
.why-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2040 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.why-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--t);
}

.why-card:hover {
  background: rgba(201, 168, 76, .08);
  border-color: rgba(201, 168, 76, .4);
  transform: translateY(-6px);
}

.why-card h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: .8rem;
}

.why-card p {
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  line-height: 1.7;
}

.why-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  box-shadow: 0 0 0 8px rgba(201, 168, 76, .1);
}

/* --- Destinations --- */
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--t);
}

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, .9) 0%, rgba(10, 22, 40, .2) 50%, transparent 100%);
}

.dest-img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.dest-card:hover .dest-img {
  transform: scale(1.1);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.dest-country {
  font-size: .72rem;
  color: var(--accent-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.dest-city {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 3px 0;
}

.dest-price {
  font-size: .95rem;
  color: var(--accent);
  font-weight: 700;
}

.dest-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
}

/* --- Partners Marquee --- */
.partners-track-wrapper {
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner-logo-card {
  min-width: 190px;
  padding: 1.5rem 1.8rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: var(--t);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.partner-logo-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.partner-logo-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.partner-logo-card .p-name {
  font-weight: 800;
  font-size: .9rem;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
}

.partner-logo-card .p-sub {
  font-size: .65rem;
  color: var(--gray-500);
}

/* --- Testimonials --- */
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: var(--t);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -5px;
  left: 18px;
  font-size: 6rem;
  color: var(--accent);
  opacity: .15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.testi-stars {
  color: var(--accent);
  letter-spacing: 3px;
  font-size: 1.1rem;
  display: block;
  margin-bottom: .5rem;
  filter: drop-shadow(0 2px 4px rgba(201, 168, 76, .4));
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

/* --- Blog --- */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: var(--t);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.blog-img-wrap {
  height: 200px;
  overflow: hidden;
}

.blog-bg {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s;
}

.blog-card:hover .blog-bg {
  transform: scale(1.08);
}

.blog-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201, 168, 76, .1);
  padding: 3px 10px;
  border-radius: 50px;
}

.blog-body {
  padding: 1.5rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--accent-dark));
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--primary);
  font-weight: 900;
}

.cta-banner p {
  color: rgba(10, 22, 40, .75);
}

/* --- Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, #04080f 0%, #0a1628 40%, #162340 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, .04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 900;
}

.page-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  max-width: 560px;
}

.breadcrumb-nav a,
.breadcrumb-nav span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
}

.breadcrumb-nav a:hover,
.breadcrumb-nav .current {
  color: var(--accent);
}

/* --- Contact --- */
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  height: 100%;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.form-label-custom {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-500);
  display: block;
  margin-bottom: 6px;
}

.form-control-custom {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: .8rem 1rem;
  font-size: .93rem;
  color: var(--primary);
  transition: var(--t);
  width: 100%;
  outline: none;
  font-family: 'Inter', sans-serif;
  background: #fff;
}

.form-control-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .1);
}

/* --- Auth --- */
.auth-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #04080f, #0a1628, #162340);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-card {
  background: rgba(255, 255, 255, .97);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
}

.auth-tab-btn {
  flex: 1;
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-500);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  padding: .65rem;
  border-radius: var(--radius-md);
  transition: var(--t);
  cursor: pointer;
}

.auth-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
}

/* --- Gallery --- */
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--t);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  font-weight: 700;
}

/* --- FAQ --- */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, .3);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.faq-question h6 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.faq-question .faq-icon {
  color: var(--accent);
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-question {
  background: rgba(201, 168, 76, .05);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s, padding .3s;
}

.faq-answer.open {
  max-height: 400px;
  padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin: 0;
}

/* --- Footer --- */
#footer {
  background: linear-gradient(180deg, #04080f, var(--primary));
  color: rgba(255, 255, 255, .7);
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--accent), transparent) 1;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}

.footer-brand span {
  color: var(--accent);
}

.footer-brand i {
  animation: float-sm 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes float-sm {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.footer-link {
  display: block;
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .5rem;
  transition: var(--t);
}

.footer-link:hover {
  color: var(--accent);
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(201, 168, 76, .3);
}

.footer-link i {
  transition: transform .3s;
}

.footer-link:hover i {
  transform: scale(1.1);
  color: var(--accent);
}

.footer-bottom-link {
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--t);
}

.footer-bottom-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  transition: var(--t);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.footer-newsletter input {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px 0 0 12px;
  color: #fff;
  padding: .75rem 1rem;
  font-size: .875rem;
  outline: none;
  flex: 1;
  transition: border-color .3s;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.footer-newsletter input:focus {
  border-color: var(--accent);
}

.footer-newsletter button {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  border: none;
  border-radius: 0 12px 12px 0;
  padding: .75rem 1.4rem;
  font-weight: 700;
  font-size: 1rem;
  min-width: 52px;
  min-height: 48px;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-newsletter button:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: var(--shadow-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.payment-icon {
  background: rgba(255, 255, 255, .07);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .08);
}

/* --- Back to top / Toast --- */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-4px);
}

.toast-notif {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  border: 1px solid rgba(201, 168, 76, .4);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  z-index: 9999;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .4s;
  min-width: 300px;
  pointer-events: none;
}

.toast-notif.show {
  opacity: 1;
}

.toast-notif i {
  color: var(--accent);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s, transform .7s;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s, transform .7s;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive --- */
@media(max-width:992px) {
  .hero-globe {
    width: 300px;
    height: 300px;
  }

  .globe-ring-1 {
    width: 300px;
    height: 300px;
  }

  .globe-ring-2 {
    width: 220px;
    height: 220px;
    top: 40px;
    left: 40px;
  }

  .globe-ring-3 {
    width: 140px;
    height: 140px;
    top: 80px;
    left: 80px;
  }

  .globe-center {
    font-size: 3rem;
  }
}

@media(max-width:768px) {
  #hero {
    padding-top: 70px;
  }

  .stat-sep {
    display: none;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
  }
}

@media(max-width:576px) {
  .page-hero {
    padding: 6rem 0 3rem;
  }

  .booking-widget {
    padding: 1.25rem;
  }

  .booking-tab-btn {
    font-size: .78rem;
    padding: .5rem .9rem;
  }
}

/* ================================================
   INNER PAGE COMPONENTS
================================================ */

/* --- Page Hero (sub-pages) --- */
.page-hero {
  background: linear-gradient(135deg, #04080f 0%, var(--primary) 40%, var(--primary-light) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, .04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
}

.page-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: .95rem;
  max-width: 600px;
  line-height: 1.8;
}

/* --- Breadcrumb --- */
.breadcrumb-nav {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .45);
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.breadcrumb-nav a:hover {
  color: var(--accent);
}

.breadcrumb-nav .sep {
  color: rgba(255, 255, 255, .25);
}

.breadcrumb-nav .current {
  color: var(--accent);
}

/* --- Form Controls --- */
.form-control-custom,
.form-label-custom {
  width: 100%;
}

.form-label-custom {
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-500);
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  font-size: .9rem;
  color: var(--primary);
  transition: var(--t);
  font-family: 'Inter', sans-serif;
  background: #fff;
  outline: none;
  width: 100%;
}

.form-control-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
}

/* --- Contact Page --- */
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), #162340);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon-wrap {
  width: 42px;
  height: 42px;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-item .lbl {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 3px;
}

.contact-info-item .val {
  font-size: .875rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.6;
}

.contact-info-item .val a {
  color: rgba(255, 255, 255, .85);
  transition: color .2s;
}

.contact-info-item .val a:hover {
  color: var(--accent);
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  height: 100%;
}

/* --- Auth Pages --- */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0d2040 60%, var(--primary-light) 100%);
  padding: 2rem 1rem 4rem;
}

.auth-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .35);
  margin-top: 2rem;
}

.auth-tab-btn {
  flex: 1;
  padding: .65rem 1rem;
  border: 2px solid var(--gray-200);
  background: transparent;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--t);
}

.auth-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
}

/* --- Dashboard Sidebar --- */
.sidebar-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1.5rem;
  color: rgba(255, 255, 255, .65);
  font-size: .875rem;
  font-weight: 500;
  transition: var(--t);
  text-decoration: none;
}

.sidebar-item:hover,
.sidebar-item.active {
  color: var(--accent);
  background: rgba(201, 168, 76, .07);
}

.sidebar-item i {
  width: 18px;
  color: var(--accent);
  opacity: .75;
}

/* --- Blog Cards --- */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.blog-img-wrap {
  height: 200px;
  overflow: hidden;
}

.blog-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s;
}

.blog-card:hover .blog-bg {
  transform: scale(1.07);
}

.blog-body {
  padding: 1.5rem;
}

.blog-tag {
  display: inline-block;
  background: rgba(201, 168, 76, .1);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.blog-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: .5rem;
}

.blog-excerpt {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .3rem;
}

/* --- Gallery --- */
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  border: 1px solid var(--gray-200);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --- Countdown Timer --- */
.countdown-wrap {
  display: flex;
  gap: .5rem;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 8px;
  padding: .4rem .7rem;
  min-width: 52px;
}

.countdown-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.countdown-lbl {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .45);
}

/* Countdown inside cards (white bg) */
.offer-card .countdown-wrap {
  flex-wrap: wrap;
}

.offer-card .countdown-item {
  background: var(--gray-50);
  border-color: var(--gray-200);
  min-width: 44px;
}

.offer-card .countdown-num {
  font-size: 1.1rem;
  color: var(--primary);
}

.offer-card .countdown-lbl {
  color: var(--gray-500);
}

/* --- Footer Social --- */
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  transition: var(--t);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ================================================
   UI/UX IMPROVEMENTS v3
================================================ */

/* --- Toast: repositioned above back-to-top, type colors --- */
.toast-notif {
  position: fixed;
  bottom: 5.5rem;
  /* pushed up above back-to-top btn */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--primary);
  color: #fff;
  border: 1px solid rgba(201, 168, 76, .4);
  border-radius: 14px;
  padding: .85rem 1.4rem;
  z-index: 10000;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  min-width: 280px;
  max-width: 90vw;
  pointer-events: none;
}

.toast-notif.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-notif span {
  flex: 1;
}

.toast-success {
  border-color: rgba(201, 168, 76, .45);
}

.toast-error {
  border-color: rgba(239, 68, 68, .45);
  background: #1a0a0a;
}

.toast-warn {
  border-color: rgba(251, 191, 36, .45);
  background: #1a1400;
}

.toast-success i {
  color: var(--accent);
}

.toast-error i {
  color: #ef4444;
}

.toast-warn i {
  color: #fbbf24;
}

/* --- Countdown Units (used by JS-generated countdown) --- */
.countdown-unit {
  background: var(--primary);
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 50px;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, .15);
}

.countdown-unit .countdown-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.countdown-unit .countdown-lbl {
  font-size: .58rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-top: 2px;
}

/* Countdown inside white offer cards */
.offer-card .countdown-unit {
  background: #f4f5f7;
  border-color: var(--gray-200);
}

.offer-card .countdown-unit .countdown-num {
  font-size: 1.1rem;
  color: var(--primary);
}

.offer-card .countdown-unit .countdown-lbl {
  color: var(--gray-500);
}

/* --- Password toggle wrapper --- */
.password-field-wrap {
  position: relative;
}

.password-field-wrap input {
  padding-right: 2.8rem;
}

.password-toggle {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--gray-400);
  font-size: 1rem;
  transition: color .2s;
  line-height: 1;
}

.password-toggle:hover {
  color: var(--primary);
}

/* --- Booking tabs mobile — scrollable, no wrap --- */
@media (max-width: 576px) {
  #bookingTabGroup {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: .5rem;
    padding-bottom: 2px;
  }

  #bookingTabGroup::-webkit-scrollbar {
    display: none;
  }

  .booking-tab-btn {
    flex-shrink: 0;
    font-size: .78rem;
    padding: .45rem .85rem;
    white-space: nowrap;
  }

  /* Stack search row form fields nicely */
  #searchForm .row>[class*="col-"] {
    margin-bottom: 0;
  }
}

/* --- Booking tab btn improves active visual --- */
.booking-tab-btn {
  border-radius: 50px;
  font-size: .85rem;
  padding: .5rem 1.2rem;
}

/* --- Stat counter label font size fix --- */
.stat-lbl {
  font-size: .82rem;
  letter-spacing: .3px;
}

/* --- Improved button hover micro-animations --- */
.btn-gold:hover,
.btn-gold:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .35);
}

.btn-outline-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, .2);
}

.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, .4);
}

/* --- Active nav link gold indicator --- */
#mainNav .nav-link.active {
  color: var(--accent) !important;
}

#mainNav .nav-link.active::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin: 3px auto 0;
}

/* --- Scrolled nav elevation --- */
#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}

/* --- Auth card tab smooth animation --- */
#loginPane,
#registerPane {
  animation: fadeInUp .3s ease;
}

/* --- Dashboard main content top padding (below sticky nav) --- */
.dashboard-wrapper {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* --- Offer img wrap — taller for better emoji display --- */
.offer-img-wrap {
  height: 240px;
}

/* --- Section badge improvement --- */
.section-badge {
  background: linear-gradient(135deg, rgba(201, 168, 76, .12), rgba(201, 168, 76, .06));
  border: 1px solid rgba(201, 168, 76, .3);
}

/* --- Destination filter btn min-width fix --- */
[data-filter] {
  min-width: 90px;
  text-align: center;
}

/* --- Stats bar icon subtle animation on hover --- */
.stats-bar .col-6:hover i {
  transform: scale(1.15);
  transition: transform .2s;
}

/* --- Footer newsletter input/button alignment fix --- */
.footer-newsletter {
  display: flex;
  align-items: stretch;
}

.footer-newsletter input {
  border-radius: 12px 0 0 12px !important;
  height: 44px;
  align-self: stretch;
}

.footer-newsletter button {
  border-radius: 0 12px 12px 0 !important;
  height: 44px;
  align-self: stretch;
  white-space: nowrap;
  padding: 0 1.2rem;
}

/* --- Service feature list items spacing --- */
.service-feature-list li {
  padding: 3px 0;
  font-size: .84rem;
}

/* --- Back-to-top ensure it doesn't get behind toast --- */
#backToTop {
  z-index: 9998;
}

/* --- Responsive: hero title size on small screens --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-sub {
    font-size: .9rem;
  }

  .page-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .auth-card {
    padding: 1.75rem 1.25rem;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem 1.25rem;
  }
}

/* --- Card consistent hover lift shadow --- */
.service-card:hover,
.offer-card:hover,
.dest-card:hover,
.blog-card:hover,
.testi-card:hover,
.why-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, .14);
}

/* ================================================
   ICON WRAPPERS (emoji replacement) v4
   ================================================ */

/* --- Destination card icon --- */
.dest-icon-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .45));
}

.dest-icon-wrap i {
  font-size: 3.2rem;
}

/* --- Offer card icon --- */
.offer-dest-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
  border: 2px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .4));
}

.offer-dest-icon i {
  font-size: 3rem;
}

/* --- Blog card icon --- */
.blog-icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .4));
}

.blog-icon-wrap i {
  font-size: 2.8rem;
  color: rgba(255, 255, 255, .9);
}

/* Blog image background is taller / centered */
.blog-bg {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* --- Gallery icon --- */
.gallery-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .4));
  position: relative;
  z-index: 2;
}

.gallery-icon-wrap i {
  font-size: 2.4rem;
}

/* --- CTA icon circle (replaces large emoji in CTAs) --- */
.cta-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 12px 36px rgba(201, 168, 76, .35);
}

.cta-icon-circle i {
  font-size: 2rem;
  color: var(--primary);
}

/* --- Section badge icon sizing --- */
.section-badge i {
  font-size: .8em;
  vertical-align: middle;
}

/* --- Filter button icons --- */
.btn i.fa-globe,
.btn i.fa-landmark,
.btn i.fa-torii-gate,
.btn i.fa-mosque,
.btn i.fa-city,
.btn i.fa-globe-americas {
  font-size: .82em;
  vertical-align: middle;
}

/* --- Destination image area improvements --- */
.dest-img-icon {
  position: relative;
  overflow: hidden;
}

.dest-img-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .07) 0%, transparent 70%);
  z-index: 1;
}

.dest-img-icon .dest-icon-wrap {
  position: relative;
  z-index: 2;
}

/* --- Offer card height consistency --- */
.offer-img-wrap {
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.offer-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* --- Subtle radial glow behind icon circles --- */
.offer-bg::before,
.dest-img-icon::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
  z-index: 1;
}

.offer-dest-icon {
  position: relative;
  z-index: 2;
}

/* --- Why card improved icon shadow on hover --- */
.why-card:hover .why-icon {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 40px rgba(201, 168, 76, .5);
}

/* --- Smooth transition for why icon on hover --- */
.why-icon {
  transition: transform .3s ease, box-shadow .3s ease;
}

/* --- Service Feature List Improvements --- */
.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  min-height: 120px;
}

.service-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: var(--gray-700);
  margin-bottom: 10px;
  line-height: 1.5;
  transition: transform .3s ease;
}

.service-check:hover {
  transform: translateX(4px);
}

.service-check .check-icon {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- Premium Toast Notifications --- */
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

/* --- Toast Notifications --- */
.premium-toast {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  color: #fff;
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(120%);
  max-width: 400px;
  position: relative;
  overflow: hidden;
}

.premium-toast.show {
  transform: translateX(0);
}

.premium-toast.hide {
  transform: translateX(120%);
  opacity: 0;
}

.premium-toast.error i {
  color: #ff4d4d;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  width: 100%;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  transform-origin: left;
}