/* 
  CHITOUSON SERVICES - LUXURY TRAVEL & TOURISM DESIGN SYSTEM
  DEVELOPER: Glory (09075722604)
  THEME: Premium Gold, Navy Blue, Sky Blue, and Emerald
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Dark Mode Default */
  --bg-primary: #040a15;
  --bg-secondary: #081225;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-input: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(212, 175, 55, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-gold: #dfb743;
  --accent-emerald: #10b981;
  --accent-sky: #0ea5e9;
  --accent-sky-dark: #0284c7;
  --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #dfb743 100%);
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --accent-glow: rgba(223, 183, 67, 0.15);
  --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --nav-bg: rgba(4, 10, 21, 0.75);
  --transition-speed: 0.4s;
}

.light-mode {
  /* Light Mode Variables */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: rgba(15, 23, 42, 0.03);
  --bg-input: rgba(15, 23, 42, 0.05);
  --border-color: rgba(15, 23, 42, 0.08);
  --border-glow: rgba(180, 138, 28, 0.3);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --accent-gold: #b48a1c;
  --accent-emerald: #059669;
  --accent-sky: #0284c7;
  --accent-sky-dark: #0369a1;
  --gradient-primary: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
  --gradient-gold: linear-gradient(135deg, #d97706 0%, #b48a1c 100%);
  --gradient-emerald: linear-gradient(135deg, #059669 0%, #047857 100%);
  --accent-glow: rgba(180, 138, 28, 0.1);
  --card-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  --nav-bg: rgba(248, 250, 252, 0.85);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  transition: background-color var(--transition-speed), color var(--transition-speed);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-sky);
}

/* Custom Cursor */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  mix-blend-mode: difference;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-sky);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}

.custom-cursor.hovered {
  width: 45px;
  height: 45px;
  background-color: rgba(223, 183, 67, 0.2);
  border-color: var(--accent-gold);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #040a15;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(223, 183, 67, 0.1);
  border-left-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
}

.preloader-spinner::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 4px solid rgba(14, 165, 233, 0.1);
  border-right-color: var(--accent-sky);
  border-radius: 50%;
  animation: spin 1.5s linear infinite reverse;
}

.preloader-brand {
  margin-top: 24px;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s ease infinite;
}

.preloader-credit {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #64748b;
  letter-spacing: 0.1em;
}

/* Top Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-gold);
  width: 0%;
  z-index: 9999;
}

/* Layout Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  transition: all 0.3s ease;
  padding: 20px 0;
}

header.scrolled {
  background-color: var(--nav-bg);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.navbar-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.3rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.btn-theme-toggle:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-glow);
}

.light-mode-icon {
  display: none;
}

.light-mode .dark-mode-icon {
  display: none;
}

.light-mode .light-mode-icon {
  display: block;
}

.btn-cta {
  background: var(--gradient-gold);
  color: #040a15 !important;
  font-weight: 600 !important;
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 15px var(--accent-glow);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(223, 183, 67, 0.4);
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.burger-menu span {
  width: 30px;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Glassmorphism Section UI Utility */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.glass-panel:hover {
  border-color: var(--border-glow);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Floating Elements Utility */
.floating-element-1 {
  animation: float1 6s ease-in-out infinite;
}
.floating-element-2 {
  animation: float2 8s ease-in-out infinite;
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(-3deg); }
}

/* Buttons */
.btn-primary {
  background: var(--gradient-gold);
  color: #040a15 !important;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  box-shadow: 0 4px 15px var(--accent-glow);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(223, 183, 67, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Banner/Hero Grid template */
.hero-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-background-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}

.hero-content-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(223, 183, 67, 0.1);
  border: 1px solid rgba(223, 183, 67, 0.2);
  border-radius: 30px;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollMouse 1.8s infinite;
}

@keyframes scrollMouse {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* Sections Structure */
section {
  padding: 100px 0;
  position: relative;
}

.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
  color: var(--accent-sky);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-secondary);
}

/* Feature Highlights Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.feature-card:nth-child(3n+1) .feature-icon-wrapper {
  background: rgba(223, 183, 67, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(223, 183, 67, 0.2);
}
.feature-card:nth-child(3n+2) .feature-icon-wrapper {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.feature-card:nth-child(3n) .feature-icon-wrapper {
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent-sky);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.feature-card-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Popular Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.destination-card {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  height: 420px;
}

.destination-image-box {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.destination-card:hover .destination-img-placeholder {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(4, 10, 21, 0.95) 0%, rgba(4, 10, 21, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 2;
}

.destination-tag {
  align-self: flex-start;
  padding: 6px 12px;
  background: var(--gradient-gold);
  color: #040a15;
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.destination-name {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.destination-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.destination-price {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.destination-price span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Statistics Counters */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-card {
  padding: 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: 'Sora', sans-serif;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

/* Why Choose Us Grid */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.choose-card {
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.choose-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(223, 183, 67, 0.1);
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.choose-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.choose-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Testimonials Carousel System */
.testimonial-carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.testimonial-slide {
  min-width: calc(33.333% - 20px);
  padding: 40px;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--accent-gold);
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background-color: var(--accent-gold);
  width: 25px;
  border-radius: 5px;
}

/* Visa Page Timeline */
.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--bg-primary);
  border: 4px solid var(--accent-gold);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -10px;
}

.timeline-content {
  padding: 20px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  position: relative;
}

.timeline-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

/* Interactive Quiz */
.quiz-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
}

.quiz-option {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
}

.quiz-option.selected {
  background: rgba(223, 183, 67, 0.1);
  border-color: var(--accent-gold);
  color: var(--text-primary);
  font-weight: 600;
}

/* Quote Calculator */
.calc-card {
  max-width: 650px;
  margin: 0 auto;
  padding: 40px;
}

.calc-group {
  margin-bottom: 24px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.calc-label span {
  color: var(--accent-gold);
}

.calc-range {
  width: 100%;
  height: 6px;
  background: var(--border-color);
  outline: none;
  border-radius: 3px;
  -webkit-appearance: none;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.1s;
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.calc-result-box {
  margin-top: 30px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px dashed var(--accent-emerald);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.calc-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-emerald);
  margin-top: 5px;
}

/* Multistep Booking Wizard */
.wizard-steps {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.wizard-steps::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.wizard-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.wizard-step.active {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-glow);
}

.wizard-step.completed {
  background-color: var(--accent-emerald);
  border-color: var(--accent-emerald);
  color: #fff;
}

.booking-form-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* User Dashboard Layout */
.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
  padding-top: 80px;
}

.dashboard-sidebar {
  width: 280px;
  background-color: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.dashboard-menu-link:hover,
.dashboard-menu-link.active {
  background-color: rgba(223, 183, 67, 0.1);
  color: var(--accent-gold);
  font-weight: 600;
}

.dashboard-main {
  flex: 1;
  padding: 40px;
  background-color: var(--bg-primary);
  overflow-y: auto;
}

.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.dashboard-stat-card {
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dashboard-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(223, 183, 67, 0.1);
  color: var(--accent-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
}

.dashboard-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 4px;
}

.dashboard-card-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.dashboard-table-box {
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 40px;
  overflow-x: auto;
}

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

.dashboard-table th {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.dashboard-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.badge-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-status.approved {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald);
}

.badge-status.processing {
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--accent-sky);
}

.badge-status.pending {
  background-color: rgba(223, 183, 67, 0.1);
  color: var(--accent-gold);
}

/* Auth Cards Glassmorphism */
.auth-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  padding: 40px;
}

.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.auth-tab-btn {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  position: relative;
}

.auth-tab-btn.active {
  color: var(--text-primary);
}

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

.password-input-wrapper {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.1rem;
}

/* Tour packages filter and listing grid */
.filters-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.filter-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-tag-btn {
  padding: 8px 20px;
  border-radius: 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tag-btn.active,
.filter-tag-btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #040a15;
  font-weight: 600;
}

/* Premium Details Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 10, 21, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  width: 90%;
  max-width: 650px;
  padding: 40px;
  position: relative;
  animation: modalIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes modalIn {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  color: var(--accent-gold);
}

/* Floating Action Button Support and expandable menu */
.fab-support-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.fab-main-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-emerald);
  color: #ffffff;
  border: none;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
}

.fab-main-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-emerald);
  animation: pulse-ring 2s infinite;
}

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

.fab-main-btn:hover {
  transform: scale(1.08);
}

.fab-menu {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 280px;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.fab-support-container.active .fab-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.fab-menu-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.fab-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background-color: var(--bg-card);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.fab-menu-link:hover {
  border-color: var(--accent-gold);
  background-color: rgba(223, 183, 67, 0.1);
}

/* Floating Live Chat Widget */
.chat-widget-container {
  position: fixed;
  bottom: 110px;
  right: 30px;
  z-index: 999;
  width: 350px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.chat-widget-container.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.chat-widget-header {
  padding: 16px 20px;
  background: var(--gradient-primary);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-widget-title {
  font-size: 1rem;
  font-weight: 700;
}

.chat-widget-status {
  font-size: 0.8rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-widget-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  display: inline-block;
}

.chat-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}

.chat-widget-body {
  height: 280px;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: var(--bg-secondary);
}

.chat-message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.chat-message.support {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-message.user {
  background-color: var(--accent-sky);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-widget-footer {
  padding: 12px 16px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  gap: 10px;
}

.chat-input {
  flex: 1;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 8px 16px;
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
}

.chat-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

#back-to-top:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* Security Elements */
.security-badges-container {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 8px;
  color: var(--accent-emerald);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Footer structure */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background-color: rgba(223, 183, 67, 0.1);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}

.footer-credit-link {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: underline;
}

.footer-credit-link:hover {
  color: var(--text-primary);
}

/* Scroll reveal items */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s ease;
}

.reveal-fade.active {
  opacity: 1;
}

/* CSS Responsive Grid Utilities */
.responsive-grid-2col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.responsive-grid-equal-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Card Text Readability Overlay Override (Always White & Clear Contrast) */
.destination-overlay {
  color: #ffffff !important;
  background: linear-gradient(to top, rgba(4, 10, 21, 0.95) 0%, rgba(4, 10, 21, 0.5) 60%, transparent 100%) !important;
}

.destination-name, 
.destination-card-title,
.destination-overlay h3,
.destination-overlay span,
.destination-overlay p,
.destination-overlay a {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.destination-price {
  color: var(--accent-gold) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.destination-price span, 
.destination-overlay p {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Desktop Navigation Layout Compactness */
@media (max-width: 1280px) {
  .nav-links {
    gap: 15px;
  }
  .navbar-container {
    width: 95%;
  }
  .logo {
    font-size: 1.25rem;
    gap: 6px;
  }
}

/* Mobile Responsive Adjustments (Switches earlier to mobile nav at 1150px) */
@media (max-width: 1150px) {
  .hero-content-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-actions {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .dashboard-wrapper {
    flex-direction: column;
  }
  
  .dashboard-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
  }
  
  .timeline-container::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item::after {
    left: 21px;
  }
  
  .timeline-right {
    left: 0%;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .calc-checkboxes {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slide {
    min-width: 100%;
  }
  
  /* Responsive Grids */
  .responsive-grid-2col,
  .responsive-grid-equal-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* Floating Support FAB Mobile Scaling */
  .fab-main-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .fab-menu {
    bottom: 65px;
    right: 0;
    width: 250px;
  }
  
  #back-to-top {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
    bottom: 20px;
    left: 20px;
  }
  
  .fab-support-container {
    bottom: 20px;
    right: 20px;
  }
  
  /* Wizard / Form Margins to prevent floating elements overlap */
  .wizard-card-step, 
  form, 
  .dashboard-sidebar, 
  .glass-panel {
    margin-bottom: 15px;
  }
  
  /* Prevent Turkey card truncating */
  .destination-name {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

/* Custom Hamburger Active Animation */
.burger-menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.open span:nth-child(2) {
  opacity: 0;
}

.burger-menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* Dynamic Mobile Overlay Navigation */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-nav-links a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--accent-gold);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 80%;
  max-width: 300px;
}

.mobile-nav-actions .btn-theme-toggle {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
}

.mobile-nav-actions .btn-cta {
  width: 100%;
  text-align: center;
}

/* BLOG PAGE EXCLUSIVE STYLES */
.blog-search-wrapper {
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
}

.blog-search-box {
  width: 100%;
  padding-right: 50px;
}

.blog-search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 1.1rem;
  pointer-events: none;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--card-shadow);
}

.blog-card-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  background: var(--gradient-gold);
  color: #040a15;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  z-index: 2;
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}

.blog-card-link:hover {
  color: var(--text-primary);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.blog-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-page-btn.active,
.blog-page-btn:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #040a15;
}

.blog-page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Extra Mobile Adjustments */
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .stat-title {
    font-size: 0.75rem;
  }
  
  /* Form containers responsive padding to maximize horizontal input width */
  .booking-form-box,
  .calc-card,
  .auth-card,
  .modal-box,
  .glass-panel {
    padding: 24px 16px !important;
  }
  
  /* Form controls touch friendly height & hit areas */
  .form-control,
  select.form-control,
  .chat-input {
    padding: 12px 14px !important;
    font-size: 0.9rem !important;
  }
  
  .form-label {
    font-size: 0.85rem !important;
    margin-bottom: 6px !important;
  }
  
  /* Booking Step numbers mobile styling */
  .wizard-steps {
    max-width: 320px;
    margin-bottom: 30px;
  }
  .wizard-step {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  
  /* Chat widget mobile ergonomics to prevent overlaps and scaling issues */
  .chat-widget-container {
    width: 90% !important;
    right: 5% !important;
    left: 5% !important;
    bottom: 85px !important;
    max-height: 70vh !important;
    border-radius: 16px !important;
  }
  .chat-widget-header {
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
    padding: 12px 16px !important;
  }
  .chat-widget-footer {
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
    padding: 10px 12px !important;
  }
  .chat-widget-body {
    height: 220px !important;
    padding: 15px !important;
  }
  
  /* Mobile details modal visual scaling */
  .modal-box {
    width: 95% !important;
    margin: 10px !important;
    padding: 24px !important;
  }
  .modal-tour-title {
    font-size: 1.5rem !important;
  }
}

/* Premium Lively Hover Effects & Micro-animations */
.destination-card, .choose-card, .feature-card, .blog-card {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.destination-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 15px 35px rgba(223, 183, 67, 0.15), 0 0 25px var(--accent-glow) !important;
}

.choose-card:hover, .feature-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 12px 25px rgba(223, 183, 67, 0.08), 0 0 20px var(--accent-glow) !important;
}

.btn-primary, .btn-secondary, .btn-cta, .btn-theme-toggle {
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.btn-primary:hover, .btn-cta:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 20px rgba(223, 183, 67, 0.3), 0 0 15px var(--accent-glow) !important;
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1) !important;
}
