/* ============================================
   TRAVELSBOOKIG - Premium Tourism CSS
   Light Blue Luxury Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,500&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary: #1a9fd4;
  --primary-dark: #0f7ab0;
  --primary-light: #5bc5f0;
  --accent: #f0a500;
  --accent-light: #f5c842;
  --sky: #e8f6fd;
  --sky-mid: #c5ebf9;
  --white: #ffffff;
  --off-white: #f7fbfe;
  --text-dark: #0d1f2d;
  --text-mid: #2d4a5e;
  --text-light: #5a7a90;
  --glass-bg: rgba(255,255,255,0.15);
  --glass-border: rgba(255,255,255,0.3);
  --card-shadow: 0 8px 40px rgba(26,159,212,0.12);
  --card-shadow-hover: 0 20px 60px rgba(26,159,212,0.22);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --nav-height: 80px;
  --container: 1280px;
}

/* Dark Mode */
[data-theme="dark"] {
  --sky: #0a1929;
  --sky-mid: #0f2744;
  --off-white: #071420;
  --white: #0d1f2d;
  --text-dark: #e8f4fd;
  --text-mid: #9bbfcf;
  --text-light: #6a95af;
  --glass-bg: rgba(13,31,45,0.5);
  --glass-border: rgba(26,159,212,0.2);
  --card-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* ============================================
   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(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading-screen {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, #0f7ab0 0%, #1a9fd4 50%, #5bc5f0 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  opacity: 1;
  visibility: visible;
}
#loading-screen.hidden,
#loading-screen[style*="visibility: hidden"] {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease;
}
.loader-logo span { color: var(--accent-light); font-style: italic; }

.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: white;
  border-radius: 99px;
  animation: loadBar 1.8s ease-in-out forwards;
}
@keyframes loadBar { from { width: 0; } to { width: 100%; } }

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  padding: 0 2rem;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,159,212,0.15);
  box-shadow: 0 4px 30px rgba(26,159,212,0.1);
}

[data-theme="dark"] #navbar.scrolled {
  background: rgba(7,20,32,0.92);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
#navbar.scrolled .nav-logo { color: var(--primary); }
.nav-logo span { color: var(--accent-light); font-style: italic; }
#navbar.scrolled .nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
  overflow: visible;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
#navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { background: rgba(255,255,255,0.15); color: white; }
#navbar.scrolled .nav-links a:hover { background: var(--sky); color: var(--primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: var(--transition);
  font-size: 1rem;
}
#navbar.scrolled .btn-theme-toggle {
  background: var(--sky);
  color: var(--primary);
  border-color: var(--sky-mid);
}
.btn-theme-toggle:hover { transform: rotate(20deg); }

.btn-nav-book {
  padding: 0.55rem 1.2rem;
  background: var(--accent);
  color: white;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(240,165,0,0.3);
}
.btn-nav-book:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,165,0,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: white;
  border-radius: 99px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sky-mid);
  padding: 1rem;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
[data-theme="dark"] .mobile-menu { background: rgba(7,20,32,0.97); }
.mobile-menu.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--sky); color: var(--primary); }

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

.hero-slider {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* Default slides (CSS fallback — overridden by JS when settings exist) */
.hero-slide:nth-child(1):not([style*="background-image"]) {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
    url('https://images.unsplash.com/photo-1588416499018-d8c621ef7050?w=1920&q=80');
}
.hero-slide:nth-child(2):not([style*="background-image"]) {
  background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1546961342-ea5f60d193cf?w=1920&q=80');
}
.hero-slide:nth-child(3):not([style*="background-image"]) {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1920&q=80');
}
.hero-slide:nth-child(4):not([style*="background-image"]) {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
    url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&q=80');
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,50,80,0.2) 0%,
    rgba(0,0,0,0.1) 50%,
    rgba(10,50,80,0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease 0.3s both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.9s ease 0.5s both;
}
.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent-light);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s ease 0.7s both;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.9s ease 0.9s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 1.1s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(26,159,212,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(26,159,212,0.5);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  border-radius: 99px;
  font-weight: 500;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08);
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  transform: translateY(-2px);
}

.hero-slider-nav {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}
.hero-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 99px;
  transition: all 0.4s;
  cursor: pointer;
}
.hero-dot.active {
  width: 28px;
  background: white;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   STATS COUNTER BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #2eb8f0);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  color: white;
  padding: 1rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-suffix { color: var(--accent-light); }
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section { padding: 5rem 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--sky);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
[data-theme="dark"] .section-tag { background: rgba(26,159,212,0.15); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  margin-bottom: 3rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   DESTINATIONS
   ============================================ */
#destinations { background: var(--off-white); }

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

.dest-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.dest-card:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }
.dest-card:nth-child(5) { grid-row: span 2; aspect-ratio: auto; }

.dest-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: var(--sky-mid);
  background-size: cover;
  background-position: center;
}
.dest-card:hover .dest-img { transform: scale(1.08); }

.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,50,0.85) 0%, transparent 60%);
  transition: var(--transition);
}
.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(10,30,50,0.9) 0%, rgba(10,30,50,0.2) 70%);
}

.dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  transform: translateY(4px);
  transition: var(--transition);
}
.dest-card:hover .dest-info { transform: translateY(0); }

.dest-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}
.dest-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.dest-description {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.05s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dest-card:hover .dest-description {
  opacity: 1;
  transform: translateY(0);
}
.dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}
.dest-card:hover .dest-btn { opacity: 1; transform: translateY(0); }
.dest-btn:hover { gap: 0.7rem; }

/* ============================================
   TOURS SECTION
   ============================================ */
#tours { background: var(--white); }
[data-theme="dark"] #tours { background: var(--sky); }

.tours-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--sky);
  border: 1px solid transparent;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
[data-theme="dark"] .filter-btn { background: rgba(26,159,212,0.1); }

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

.tour-card {
  background: var(--off-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
[data-theme="dark"] .tour-card { background: rgba(13,31,45,0.6); }
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--sky-mid);
}

.tour-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-card-img img, .tour-card-img .tour-img-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-img-bg { transform: scale(1.08); }

.tour-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
}
.tour-badge.featured { background: var(--accent); }

.tour-wishlist {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.tour-wishlist:hover, .tour-wishlist.active {
  color: #e74c3c;
  transform: scale(1.1);
}

.tour-card-body {
  padding: 1.5rem;
}

.tour-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-light);
}
.tour-meta-item i { color: var(--primary); font-size: 0.75rem; }

.tour-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.tour-description {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--sky-mid);
}

.tour-price {
  display: flex;
  flex-direction: column;
}
.tour-price-old {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.tour-price-current {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}
.tour-price-current small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

.btn-book-tour {
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26,159,212,0.3);
}
.btn-book-tour:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,159,212,0.4);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
#why-us {
  background: linear-gradient(135deg, var(--sky) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] #why-us {
  background: linear-gradient(135deg, var(--sky) 0%, var(--off-white) 100%);
}
#why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,159,212,0.08) 0%, transparent 70%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-image {
  position: relative;
}
.why-us-img-main {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--card-shadow-hover);
}
.why-us-img-main .img-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  background-image: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=800&q=80');
  background-size: cover;
  background-position: center;
}

.why-us-img-badge {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: white;
  border-radius: var(--border-radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 40px rgba(26,159,212,0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}
[data-theme="dark"] .why-us-img-badge { background: var(--text-dark); }

.why-badge-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.why-badge-label {
  font-size: 0.78rem;
  color: var(--text-light);
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--sky), var(--sky-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
[data-theme="dark"] .feature-icon { background: rgba(26,159,212,0.15); }
.feature-item:hover .feature-icon {
  background: var(--primary);
  color: white;
  transform: rotate(5deg);
}
.feature-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.feature-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   GALLERY
   ============================================ */
#gallery { background: var(--off-white); }

.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gallery-grid {
  columns: 4;
  column-gap: 1rem;
  gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--card-shadow);
}
.gallery-item img, .gallery-item .gallery-img-bg {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  background-size: cover;
  background-position: center;
}
.gallery-item:hover img,
.gallery-item:hover .gallery-img-bg { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(26,159,212,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
  color: white;
  font-size: 1.8rem;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--border-radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--primary); }

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
#reviews {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
#reviews::before {
  content: '"';
  position: absolute;
  top: -2rem; left: 2rem;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}

.reviews-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.review-card {
  min-width: calc(33.333% - 1rem);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  flex-shrink: 0;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.review-stars i { color: var(--accent-light); font-size: 0.9rem; }

.review-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}
.review-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.review-country {
  font-size: 0.78rem;
  opacity: 0.7;
}

.slider-controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.slider-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: var(--transition);
  font-size: 1rem;
}
.slider-btn:hover {
  background: white;
  color: var(--primary);
}

/* ============================================
   BLOG
   ============================================ */
#blog { background: var(--white); }
[data-theme="dark"] #blog { background: var(--sky); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.blog-card {
  background: var(--off-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
[data-theme="dark"] .blog-card { background: rgba(13,31,45,0.6); }
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.blog-img {
  height: 200px;
  overflow: hidden;
  background: var(--sky-mid);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img { transform: scale(1.05); }

.blog-body {
  padding: 1.5rem;
}
.blog-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-title { color: var(--primary); }
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
}
.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.blog-read-more:hover { gap: 0.6rem; }

/* ============================================
   BOOKING SECTION
   ============================================ */
#booking-section {
  background: var(--sky);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] #booking-section { background: var(--sky); }

.booking-section-inner {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}
[data-theme="dark"] .booking-section-inner { background: var(--text-dark); }

.booking-info {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 3rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.booking-info-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.2;
}
.booking-info-title strong { display: block; font-weight: 600; }
.booking-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.9;
}
.booking-contact-item i {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.booking-form {
  padding: 3rem;
}
.booking-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: span 2; }

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

.form-input, .form-select, .form-textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sky-mid);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background: rgba(26,159,212,0.05);
  border-color: rgba(26,159,212,0.2);
  color: var(--text-dark);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,159,212,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(26,159,212,0.3);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,159,212,0.4);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.whatsapp-btn {
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waBounce 2s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.whatsapp-tooltip {
  background: white;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

.back-to-top {
  position: fixed;
  bottom: 6.5rem; right: 2rem;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(26,159,212,0.3);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] #footer { background: #040d14; }
#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-dark), var(--primary), var(--accent), var(--primary));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  display: block;
}
.footer-logo span { color: var(--accent-light); font-style: italic; }
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.65;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-links a:hover {
  color: var(--primary-light);
  gap: 0.6rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item i {
  color: var(--primary-light);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* AOS-like classes */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ============================================
   WEATHER WIDGET
   ============================================ */
.weather-widget {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--sky-mid);
  max-width: 320px;
}
[data-theme="dark"] .weather-widget { background: rgba(13,31,45,0.8); }
.weather-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.weather-city { font-weight: 600; color: var(--text-dark); }
.weather-temp {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.weather-desc { font-size: 0.85rem; color: var(--text-light); }

/* ============================================
   CURRENCY CONVERTER
   ============================================ */
.currency-converter {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--sky-mid);
}
[data-theme="dark"] .currency-converter { background: rgba(13,31,45,0.8); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-card:nth-child(1) { grid-row: 1; }
  .dest-card:nth-child(5) { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-nav-book { display: none; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:nth-child(1), .dest-card:nth-child(5) { grid-row: auto; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-image { display: none; }
  .booking-section-inner { grid-template-columns: 1fr; }
  .booking-info { display: none; }
  .reviews-track .review-card { min-width: calc(100% - 0px); }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .destinations-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 1; }
  .features-list { grid-template-columns: 1fr; }
  .hero-scroll-hint { display: none; }
  .booking-form { padding: 2rem 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 6rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text-dark);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0;
  transition: all 0.35s;
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.toast.success { background: #27ae60; }
.toast.error { background: #e74c3c; }
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 8000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  max-width: 680px; width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transform: scale(0.95);
  transition: var(--transition);
}
.modal-overlay.open .modal-box { transform: scale(1); }
[data-theme="dark"] .modal-box { background: var(--sky); }

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--sky-mid);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
}
.modal-close {
  width: 36px; height: 36px;
  background: var(--sky);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  font-size: 1rem;
}
.modal-close:hover { background: #e74c3c; color: white; }
.modal-body { padding: 2rem; }
