/* =============================================
   GLOBAL
   ============================================= */
:root {
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --primary-dark: #0f172a;
  --section-gap: 6rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: #1e293b;
  overflow-x: hidden;
}

.py-6 { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }

/* =============================================
   ACCENT COLOR UTILITIES
   ============================================= */
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}
.text-accent { color: var(--accent) !important; }
.bg-accent   { background-color: var(--accent) !important; }

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
  padding: 1.1rem 0;
}
#mainNav.scrolled {
  background: rgba(15, 23, 42, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: 0.6rem 0;
}
.navbar-brand { letter-spacing: -0.5px; }
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.08); }

/* =============================================
   HERO
   ============================================= */
#hero {
  height: 100vh;
  min-height: 680px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0c4a6e 100%),
              url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1600&q=80') center/cover no-repeat;
  background-blend-mode: multiply;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(14,165,233,0.15) 100%);
}
#hero .badge {
  background: rgba(14,165,233,0.2);
  border: 1px solid rgba(14,165,233,0.4);
  color: #7dd3fc;
  font-weight: 500;
  border-radius: 50px;
  letter-spacing: 0.3px;
}
.stats-row { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem; }

/* =============================================
   SECTION LABELS
   ============================================= */
.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}
.section-sub { color: #64748b; max-width: 580px; margin: 0 auto; }

/* =============================================
   SERVICE CARDS
   ============================================= */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.bg-blue-soft   { background: #e0f2fe; color: #0284c7; }
.bg-green-soft  { background: #dcfce7; color: #16a34a; }
.bg-purple-soft { background: #ede9fe; color: #7c3aed; }
.bg-orange-soft { background: #ffedd5; color: #ea580c; }
.bg-red-soft    { background: #fee2e2; color: #dc2626; }
.bg-teal-soft   { background: #ccfbf1; color: #0d9488; }

/* =============================================
   WHY US
   ============================================= */
.why-image-wrapper { position: relative; display: inline-block; }
.why-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  min-width: 190px;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #f8fafc;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
}
.why-icon {
  color: var(--accent);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   DESTINATION CARDS
   ============================================= */
.dest-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform 0.25s, box-shadow 0.25s;
  background: #fff;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.14); }
.dest-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.dest-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 1rem;
}
.dest-flag { font-size: 1.8rem; line-height: 1; margin-bottom: 0.25rem; }
.dest-body { padding: 0.75rem 1rem 1rem; }
.dest-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* =============================================
   REVIEWS
   ============================================= */
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
  border: 1px solid #f1f5f9;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.review-featured {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff;
  border-color: transparent;
}
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6366f1);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rv-dark { background: rgba(255,255,255,0.15); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, #0c4a6e 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(14,165,233,0.12);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(99,102,241,0.1);
}
.cta-section .container { position: relative; z-index: 1; }

/* =============================================
   CONTACT
   ============================================= */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), #6366f1);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0,0,0,.09);
}
.form-control, .form-select {
  border-radius: 10px;
  border-color: #e2e8f0;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

/* =============================================
   FOOTER
   ============================================= */
.footer-section { background: #0f172a; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--accent); color: #fff; }
.footer-link { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: #fff; }

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 991.98px) {
  #hero { height: auto; min-height: 100vh; padding: 8rem 0 4rem; }
  .why-badge { position: static; margin-top: 1.5rem; }
  .why-image-wrapper { display: block; }
}

@media (max-width: 575.98px) {
  .stats-row { gap: 1.5rem !important; }
  .stats-row .vr { display: none; }
}
