/* ============================================
   UMRA TRAVEL — PREMIUM CSS
   ============================================ */

/* ----- CSS Variables ----- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7B2F;
  --green-dark: #0D3B2A;
  --green-mid: #1A5C3E;
  --green-light: #2A7D55;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --gray-100: #F8F6F2;
  --gray-200: #EEE8DC;
  --gray-300: #D4C9B5;
  --gray-600: #7A7060;
  --gray-800: #3A3028;
  --dark: #0A0A0A;
  --dark-card: #111111;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

/* ----- Utility ----- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-300);
  font-size: 1.05rem;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-crescent {
  font-size: 4rem;
  color: var(--gold);
  animation: loaderSpin 1.5s linear infinite;
  display: block;
  margin-bottom: 1rem;
}

@keyframes loaderSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

.loader p {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 30, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.logo-icon {
  color: var(--gold);
  font-size: 1.6rem;
}

.logo-accent {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 20, 15, 0.85) 0%,
    rgba(13, 59, 42, 0.7) 40%,
    rgba(10, 20, 15, 0.75) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--duration) ease-in-out var(--delay) infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  max-width: 750px;
  margin-left: 10%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,168,76,0.3);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  animation: bounce 2s ease-in-out infinite;
  margin-top: 0.25rem;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-inner span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, #0A1A12 50%, var(--dark) 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.package-card {
  background: linear-gradient(145deg, #111B15, #0D1610);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.package-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.1);
}

.package-card:hover::before { opacity: 1; }

.package-card.popular {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(145deg, #141F18, #0F1A13);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-gold);
}

.package-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.package-card.vip {
  background: linear-gradient(145deg, #1A1508, #120F05);
  border-color: rgba(201,168,76,0.3);
}

.pkg-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 0.3rem 1.2rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pkg-badge {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.pkg-badge-blue { background: rgba(59,130,246,0.15); color: #60A5FA; border: 1px solid rgba(59,130,246,0.3); }
.pkg-badge-green { background: rgba(34,197,94,0.15); color: #4ADE80; border: 1px solid rgba(34,197,94,0.3); }
.pkg-badge-gold { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.pkg-badge-platinum { background: rgba(168,168,168,0.15); color: #C0C0C0; border: 1px solid rgba(168,168,168,0.3); }

.pkg-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pkg-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
}

.amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.per {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.pkg-duration {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.pkg-features li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.feat-yes { color: rgba(255,255,255,0.85); }
.feat-no { color: rgba(255,255,255,0.3); text-decoration: line-through; }

.pkg-btn {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(201,168,76,0.4);
  color: var(--gold);
  background: transparent;
  transition: var(--transition);
}

.pkg-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

.pkg-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: transparent;
}

.pkg-btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.pkg-btn-platinum {
  background: linear-gradient(135deg, #9A8A6A, #C0C0C0);
  color: var(--dark);
  border-color: transparent;
}

.pkg-btn-platinum:hover {
  box-shadow: 0 4px 20px rgba(192,192,192,0.3);
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations {
  padding: 7rem 0;
  background: #050D08;
}

.destinations-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 400px;
  gap: 1rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.dest-card.dest-large {
  grid-row: span 1;
}

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

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

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  transition: var(--transition);
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(13,59,42,0.9) 0%, rgba(0,0,0,0.3) 60%);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.dest-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.dest-card.dest-large .dest-info h3 {
  font-size: 1.8rem;
}

.dest-info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.dest-tag {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, #081410 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(201,168,76,0.2);
  background: linear-gradient(145deg, rgba(201,168,76,0.07), rgba(13,59,42,0.07));
  transform: translateY(-6px);
}

.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 7rem 0;
  background: #050D08;
  overflow: hidden;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: linear-gradient(145deg, #111B15, #0D1610);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.author-info span {
  color: var(--gray-600);
  font-size: 0.8rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

.t-dots {
  display: flex;
  gap: 0.5rem;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}

.t-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.booking-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 59, 42, 0.95) 0%,
    rgba(10, 15, 12, 0.92) 100%
  );
}

.booking-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.booking-info > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2);
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-item a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.contact-item a:hover { color: var(--gold); }

/* Form Card */
.booking-form-card {
  background: rgba(10, 20, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.booking-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group select option {
  background: #0D3B2A;
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: #F87171;
}

.form-error {
  display: block;
  color: #F87171;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  min-height: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 0.5s ease;
}

.form-success.visible { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  border: none;
  margin-bottom: 0.75rem;
  padding: 0;
}

.form-success p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 7rem 0;
  background: linear-gradient(180deg, #050D08 0%, var(--dark) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(201,168,76,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.75rem;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  gap: 1rem;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.75rem 1.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 7rem 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: linear-gradient(145deg, #111B15, #0D1610);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-card a,
.contact-card span {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  transition: var(--transition);
}

.contact-card a:hover { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #040A06;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: var(--dark);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}

/* ============================================
   TRANSPORT SLIDER SECTION (YANGI)
   ============================================ */
.transport-slider-wrapper {
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.trans-controls {
  display: flex;
  gap: 0.5rem;
}

.trans-ctrl-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trans-ctrl-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  transform: scale(1.05);
}

.transport-track-container {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.transport-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.transport-card {
  flex: 0 0 calc(25% - 1.125rem); /* Default 4 columns side by side */
  min-width: 250px;
  background: linear-gradient(145deg, #111B15, #080F0B);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.transport-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 15px rgba(201,168,76,0.1);
}

.trans-img-container {
  position: relative;
  width: 100%;
  height: 160px;
  background: #050A07;
  overflow: hidden;
}

.trans-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.transport-card:hover .trans-img-container img {
  transform: scale(1.08);
}

.trans-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(59, 130, 246, 0.25);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.trans-badge-comfort {
  background: rgba(34, 197, 94, 0.25);
  color: #4ADE80;
  border-color: rgba(34, 197, 94, 0.4);
}

.trans-badge-business {
  background: rgba(245, 158, 11, 0.25);
  color: #FBBF24;
  border-color: rgba(245, 158, 11, 0.4);
}

.trans-badge-vip {
  background: rgba(201, 168, 76, 0.25);
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.trans-badge-royal {
  background: rgba(236, 72, 153, 0.25);
  color: #F472B6;
  border-color: rgba(236, 72, 153, 0.4);
}

.trans-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.trans-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.trans-info p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.trans-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--gray-300);
}

/* Responsive updates for Transport slider */
@media (max-width: 1024px) {
  .transport-card {
    flex: 0 0 calc(33.333% - 1rem); /* 3 columns on tablet */
  }
}

@media (max-width: 768px) {
  .transport-card {
    flex: 0 0 calc(50% - 0.75rem); /* 2 columns on small screens */
  }
}

@media (max-width: 480px) {
  .transport-card {
    flex: 0 0 100%; /* 1 column on mobile */
  }
}

/* ============================================
   GUIDES SLIDER SECTION (YANGI)
   ============================================ */
.guides-slider-wrapper {
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.guides-controls {
  display: flex;
  gap: 0.5rem;
}

.guides-ctrl-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guides-ctrl-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  transform: scale(1.05);
}

.guide-card {
  flex: 0 0 calc(25% - 1.125rem); /* Default 4 columns */
  min-width: 250px;
  background: linear-gradient(145deg, #111B15, #080F0B);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 15px rgba(201,168,76,0.1);
}

.guide-img-container {
  position: relative;
  width: 100%;
  height: 240px;
  background: #050A07;
  overflow: hidden;
}

.guide-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

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

.guide-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.guide-badge-shariah {
  background: rgba(16, 185, 129, 0.25);
  color: #34D399;
  border-color: rgba(16, 185, 129, 0.4);
}

.guide-badge-leader {
  background: rgba(59, 130, 246, 0.25);
  color: #60A5FA;
  border-color: rgba(59, 130, 246, 0.4);
}

.guide-badge-manager {
  background: rgba(245, 158, 11, 0.25);
  color: #FBBF24;
  border-color: rgba(245, 158, 11, 0.4);
}

.guide-badge-translator {
  background: rgba(139, 92, 246, 0.25);
  color: #A78BFA;
  border-color: rgba(139, 92, 246, 0.4);
}

.guide-badge-medical {
  background: rgba(239, 68, 68, 0.25);
  color: #F87171;
  border-color: rgba(239, 68, 68, 0.4);
}

.guide-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.guide-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.guide-info p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.guide-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--gray-300);
}

/* Responsive updates for Guides slider */
@media (max-width: 1024px) {
  .guide-card {
    flex: 0 0 calc(33.333% - 1rem); /* 3 columns on tablet */
  }
}

@media (max-width: 768px) {
  .guide-card {
    flex: 0 0 calc(50% - 0.75rem); /* 2 columns */
  }
}

@media (max-width: 480px) {
  .guide-card {
    flex: 0 0 100%; /* 1 column */
  }
}

/* ============================================
   HOTELS SLIDER SECTION (YANGI)
   ============================================ */
.hotels-slider-wrapper {
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.hotels-controls {
  display: flex;
  gap: 0.5rem;
}

.hotels-ctrl-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  background: transparent;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotels-ctrl-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  transform: scale(1.05);
}

.hotel-card {
  flex: 0 0 calc(25% - 1.125rem); /* Default 4 columns */
  min-width: 250px;
  background: linear-gradient(145deg, #111B15, #080F0B);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 15px rgba(201,168,76,0.1);
}

.hotel-img-container {
  position: relative;
  width: 100%;
  height: 160px;
  background: #050A07;
  overflow: hidden;
}

.hotel-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.hotel-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.hotel-badge-medina {
  background: rgba(16, 185, 129, 0.25);
  color: #34D399;
  border-color: rgba(16, 185, 129, 0.4);
}

.hotel-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hotel-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hotel-info p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.hotel-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--gray-300);
}

/* Responsive updates for Hotels slider */
@media (max-width: 1024px) {
  .hotel-card {
    flex: 0 0 calc(33.333% - 1rem); /* 3 columns on tablet */
  }
}

@media (max-width: 768px) {
  .hotel-card {
    flex: 0 0 calc(50% - 0.75rem); /* 2 columns */
  }
}

@media (max-width: 480px) {
  .hotel-card {
    flex: 0 0 100%; /* 1 column */
  }
}

/* ============================================
   CONSTRUCTOR SECTION
   ============================================ */
.constructor-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, #0c1a11 50%, var(--dark) 100%);
}

.constructor-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.constructor-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.option-card {
  background: linear-gradient(145deg, #111B15, #0D1610);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.option-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.radio-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.radio-box:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}

.radio-box input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}

.radio-box input[type="radio"]:checked + .radio-custom {
  border-color: var(--gold);
}

.radio-box input[type="radio"]:checked + .radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radio-box input[type="radio"]:checked ~ .option-name {
  color: var(--gold);
  font-weight: 600;
}

.option-name {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.option-price {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Summary Card */
.summary-card {
  background: rgba(10, 20, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-gold);
}

.summary-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding-bottom: 0.75rem;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}

.summary-item span {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.summary-item strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

.summary-price-box {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-bottom: 1.5rem;
}

.summary-price-box > span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 0.5rem;
}

.total-price {
  font-family: 'Calibri', 'Calibri Bold', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--gold) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

#sum-total-price {
  font-family: 'Calibri', 'Calibri Bold', Arial, sans-serif;
  font-size: 3.5rem;
  color: var(--gold) !important;
  font-weight: bold;
}

.custom-booking-form input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  outline: none;
  font-family: var(--font-body);
}

.custom-booking-form input:focus {
  border-color: var(--gold);
}

/* ============================================
   ADMIN PORTAL
   ============================================ */
.admin-portal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-portal.active {
  display: flex;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.admin-container {
  position: relative;
  background: #0B110E;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  z-index: 2001;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: scaleUp 0.3s ease;
}

@keyframes scaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  background: rgba(13, 59, 42, 0.4);
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.admin-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.admin-close:hover {
  color: #F87171;
}

.admin-login-box {
  max-width: 400px;
  margin: 4rem auto;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  text-align: center;
  width: 100%;
}

.admin-login-box h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.admin-login-box p {
  color: var(--gray-600);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.admin-dashboard-content {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

/* Stats */
.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.stat-icon {
  font-size: 2.2rem;
}

.stat-details h5 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat-details p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Filter bar */
.admin-filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.admin-filter-bar input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  outline: none;
}

.admin-filter-bar input:focus {
  border-color: var(--gold);
}

.admin-filter-bar select {
  background: #0D3B2A;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  outline: none;
  cursor: pointer;
}

/* Table */
.admin-table-wrapper {
  overflow-x: auto;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.admin-table th,
.admin-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-table th {
  background: rgba(13, 59, 42, 0.3);
  color: var(--gold);
  font-weight: 600;
}

.admin-table tr:hover {
  background: rgba(255,255,255,0.02);
}

.admin-table td strong {
  color: var(--white);
}

.badge-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-pending { background: rgba(245,158,11,0.15); color: #F59E0B; border: 1px solid rgba(245,158,11,0.3); }
.badge-contacted { background: rgba(59,130,246,0.15); color: #3B82F6; border: 1px solid rgba(59,130,246,0.3); }
.badge-confirmed { background: rgba(16,185,129,0.15); color: #10B981; border: 1px solid rgba(16,185,129,0.3); }
.badge-cancelled { background: rgba(239,68,68,0.15); color: #EF4444; border: 1px solid rgba(239,68,68,0.3); }

.admin-table select {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  outline: none;
}

.admin-table select option {
  background: #0D3B2A;
}

.btn-delete {
  background: none;
  border: none;
  color: rgba(239,68,68,0.7);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.25rem;
  transition: var(--transition);
}

.btn-delete:hover {
  color: #EF4444;
  transform: scale(1.15);
}

.no-bookings-msg {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-600);
}

/* Responsive adjustment */
@media (max-width: 950px) {
  .constructor-wrapper {
    grid-template-columns: 1fr;
  }
  
  .summary-card {
    position: static;
  }

  .admin-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .admin-stats-row {
    grid-template-columns: 1fr;
  }
}

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

  .package-card.popular {
    transform: scale(1);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 30, 20, 0.98);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open .nav-link {
    font-size: 1.5rem;
  }

  .hero-content {
    margin-left: 0;
    text-align: center;
    padding: 7rem 2rem 4rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .dest-card {
    height: 280px;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 0rem);
  }
}

@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   VISA TYPES SECTION (YANGI)
   ============================================ */
.visa-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, #08110b 50%, var(--dark) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.visa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.visa-card {
  background: linear-gradient(145deg, #111B15, #0D1610);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.visa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.visa-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 40px rgba(201,168,76,0.15);
}

.visa-card:hover::before {
  opacity: 1;
}

.visa-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.visa-card:hover .visa-icon-box {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  transform: scale(1.05);
}

.visa-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.visa-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.visa-price span {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 400;
}

.visa-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.visa-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  width: 100%;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.visa-features li {
  font-size: 0.88rem;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.visa-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
}

.visa-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.visa-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Responsive updates for Visa */
@media (max-width: 992px) {
  .visa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .visa-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CUSTOM SELECT DROPDOWNS FOR CONSTRUCTOR
   ============================================ */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.8rem;
  color: var(--gold);
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: var(--transition);
}

.custom-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.2);
}

.custom-select option {
  background: #0B110E;
  color: var(--white);
  padding: 1rem;
}

/* ============================================
   TOTAL PRICE CURRENCY CONVERTER (UZS)
   ============================================ */
.total-price-uzs {
  font-family: 'Calibri', 'Calibri Bold', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.rate-info {
  font-size: 0.72rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
