@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;700;800;900&display=swap');

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --primary: #10B981;
  --primary-dark: #0D9668;
  --primary-light: #34D399;
  --secondary: #F59E0B;
  --dark: #2d373c;
  --dark2: #162b32;
  --white: #ffffff;
  --light: #f5f5f5;
  --gray: #888;
  --border: #ebebeb;
  --text: #5e5e5e;
  --text-mid: #64748b;
  --text-muted: #94a3b8;
  --heading: #2d373c;
  --radius: 5px;
  --radius-lg: 10px;
  --shadow: 0 3px 25px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --nav-h: 90px;
  /* Font variables */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 0;
  margin-top: 0;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   FONT CONSISTENCY
   ============================================================ */

/* Headings - Playfair Display */
h1, h2, h3, h4, h5, h6,
.section-title-head h2,
.hero-title,
.cta-title,
.tour-card-title,
.dest-name,
.footer-heading,
.hero-stat-val,
.price-amount,
.page-banner h1,
.page-heading h1,
.widget-title,
.enq-modal-header h4,
.footer-logo-text,
.logo-text,
.team-card h4,
.feature-title,
.test-name,
.blog-title,
.about-section h2,
.about-section h3,
.faq-title,
.gallery-title,
.page-banner .stat-number,
.section-title-head h2 span,
.hero-title span,
.cta-title span,
.tour-card-title a,
.blog-title a,
.test-name,
.team-card h4,
.feature-title,
.footer-logo-text,
.logo-text,
.price-amount,
.widget-title,
.enq-modal-header h4,
.hero-stat-val,
.faq-question-text,
.testimonial-card .test-name {
  font-family: var(--font-heading) !important;
  font-weight: 700;
}

.hero-title {
  font-weight: 900;
  letter-spacing: -0.5px;
}
.section-title-head h2 {
  font-weight: 800;
  letter-spacing: -0.5px;
}
.dest-name {
  font-weight: 800;
  letter-spacing: 0.5px;
}
.tour-card-title {
  font-weight: 800;
}
.cta-title {
  font-weight: 900;
}
.page-banner h1 {
  font-weight: 900;
}

/* Body Text - Inter */
p, span, div, li, a,
.form-control, .btn, .meta-item,
.price-from, .price-amount, .rating-count,
.test-text, .test-role, .feature-desc,
.blog-excerpt, .blog-meta, .blog-cat,
.footer-about, .footer-links a, .footer-contact li,
.top-bar, .hero-subtitle, .hero-badge,
.hero-stat-lbl, .search-field label,
.breadcrumb, .page-breadcrumb,
.flash-alert, .enq-modal-body,
.cta-text, .section-title-head p,
.dest-count, .tour-card-location,
.tour-card-meta, .tour-card-stars,
.team-role, .team-bio,
.gallery-dest, .gallery-category,
.site-header .main-nav ul li a,
.btn, .btn-hero-primary, .btn-hero-outline,
.btn-primary-roavio, .btn-outline-roavio,
.btn-search, .btn-view-tour,
input, select, textarea, button,
.budget-inputs .input-group input,
.dest-count,
.footer-bottom-inner,
.page-breadcrumb,
.hero-stat-lbl,
.test-role,
.blog-meta,
.gallery-info,
.rating-count,
.price-from,
.price-old,
.meta-item,
.tour-card-location,
.team-role,
.team-bio,
.footer-about,
.footer-links a,
.footer-contact li,
.top-bar a,
.search-field label,
.flash-alert,
.cta-text,
.section-title-head p {
  font-family: var(--font-body) !important;
}

/* Navigation */
.site-header .main-nav ul li a {
  font-family: var(--font-body) !important;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Buttons */
.btn, .btn-hero-primary, .btn-hero-outline,
.btn-primary-roavio, .btn-outline-roavio,
.btn-search, .btn-view-tour,
button, input[type="submit"] {
  font-family: var(--font-body) !important;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-title-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-title-head p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title-head h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
}

.section-title-head h2 span { color: var(--primary); }

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 12px auto 0;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 7px;
  background: var(--secondary);
  border-radius: 2px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 90px 0; }
.section-bg { background: #f5f9f5; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: #0d9668;
  color: rgba(255,255,255,0.8);
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-top: 0;
}

.top-bar .top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar a { color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.top-bar a:hover { color: #fff; }

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-left a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.top-bar-left a i { color: #fff; font-size: 13px; }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-right .social-links { display: flex; gap: 6px; }

.top-bar-right .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  transition: all 0.2s ease;
}

.top-bar-right .social-links a:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}

.top-bar-right .admin-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s ease;
}

.top-bar-right .admin-link:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.15);
}

/* ============================================================
   SITE HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header .site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-header .site-logo img {
  height: 40px;
  width: auto;
  max-height: 40px;
  object-fit: contain;
}

.site-header .site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.site-header .main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-header .main-nav ul li a {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s ease;
  display: block;
}

.site-header .main-nav ul li a:hover {
  color: var(--primary);
  background: rgba(16,185,129,0.06);
}

.site-header .main-nav ul li a.active {
  color: var(--primary);
  background: rgba(16,185,129,0.08);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.mobile-toggle:hover { background: rgba(0,0,0,0.04); }

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--dark2);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.4);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.hero-badge i { color: var(--secondary); }

.hero-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-badge:hover::before { opacity: 1; }

.hero-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-title span { color: var(--secondary); }

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary);
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,.4);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.5);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stat-val {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg { transform: scale(1.05); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(22,43,50,0.85) 0%, rgba(13,150,104,0.6) 100%);
}

.hero-slider-btn, .hero-slider-dots { display: none !important; }

/* ============================================================
   HERO VIDEO SLIDE SUPPORT
   ============================================================ */
.hero-video-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-video-slide .hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  min-width: 100%;
  min-height: 100%;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.hero-slide .hero-video-slide { display: none; }
.hero-slide.active .hero-video-slide { display: block; }

/* Responsive video */
@media (max-width: 768px) {
  .hero-video-slide .hero-video-iframe {
    height: 100vh;
    width: 100vw;
  }
}
@media (max-width: 480px) {
  .hero-video-slide .hero-video-iframe {
    height: 100vh;
    width: 100vw;
  }
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  margin-top: 36px;
  max-width: 860px;
}

.search-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.search-field { flex: 1; min-width: 150px; }

.search-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 5px;
}

.search-field select,
.search-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color .15s;
  background: #fff;
}

.search-field select:focus,
.search-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16,185,129,.1);
}

.btn-search {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, transform .15s;
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: flex-end;
}

.btn-search:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ============================================================
   CATEGORY TABS
   ============================================================ */
.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--gray);
  cursor: pointer;
  transition: all .3s ease;
  font-weight: 600;
  white-space: nowrap;
  background: #fff;
}

.cat-tab:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
}

.cat-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============================================================
   TOUR CARDS WITH IMAGE SCROLL
   ============================================================ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.tour-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(0.34,1.56,0.64,1), box-shadow .3s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tour-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--light);
}

.tour-card-img .image-slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-card-img .image-slider-wrapper .slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.tour-card-img .image-slider-wrapper .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card-img .slider-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.tour-card-img .slider-controls .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.tour-card-img .slider-controls .dot.active {
  background: var(--secondary);
  transform: scale(1.2);
  border-color: var(--secondary);
}

.tour-card-img .slider-controls .dot:hover { background: rgba(255,255,255,0.8); }

.tour-card-img .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.tour-card-img:hover .slider-nav { opacity: 1; }
.tour-card-img .slider-nav:hover { background: rgba(255,255,255,0.4); }
.tour-card-img .slider-nav.prev { left: 8px; }
.tour-card-img .slider-nav.next { right: 8px; }

.tour-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 5;
}

.badge-hot {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.badge-featured {
  background: var(--secondary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.badge-sale {
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.tour-card-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 16px;
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  border: none;
  cursor: pointer;
  transform: translateY(-10px);
  opacity: 0;
  z-index: 5;
}

.tour-card:hover .tour-card-wish { transform: translateY(0); opacity: 1; }
.tour-card-wish:hover { color: #ef4444; transform: scale(1.1); }
.tour-card-wish.liked { color: #ef4444; }
.tour-card-wish.liked i { font-weight: 900; }

.tour-card-body { padding: 20px; }

.tour-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.tour-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-title a { color: var(--heading); transition: color .2s; }
.tour-card-title a:hover { color: var(--primary); }

.tour-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--gray);
}

.meta-item i { color: var(--primary); font-size: 12px; }

.tour-card-stars { margin-bottom: 14px; }

.tour-card-stars .stars i {
  transition: transform .2s ease;
  cursor: default;
}

.tour-card-stars .stars i:hover { transform: scale(1.2); }

.stars i { color: var(--secondary); font-size: 12px; }
.stars .far.fa-star { color: #d1d5db; }

.rating-count {
  font-size: 12px;
  color: var(--gray);
  margin-left: 4px;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}

.price-from {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.price-amount {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 13px;
  text-decoration: line-through;
  color: #aaa;
  margin-left: 4px;
  font-weight: 400;
}

.btn-view-tour {
  background: var(--primary);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: background .15s, transform .15s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-view-tour:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ============================================================
   DESTINATION CARDS - Full Image (Index & Destinations Page)
   ============================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.dest-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.dest-card .dest-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.dest-card .dest-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dest-card:hover .dest-image-wrapper img {
  transform: scale(1.08);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.3s ease;
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%);
}

.dest-name {
  font-family: var(--font-heading) !important;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  transition: transform 0.3s ease;
  letter-spacing: 0.5px;
}

.dest-card:hover .dest-name {
  transform: translateY(-2px);
}

.dest-count {
  font-family: var(--font-body) !important;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

.dest-count i {
  color: var(--secondary);
  margin-right: 6px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-roavio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: all .2s;
  cursor: pointer;
}

.btn-primary-roavio:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16,185,129,.3);
}

.btn-outline-roavio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: all .2s;
  cursor: pointer;
}

.btn-outline-roavio:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  transition: color .2s;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  background: #fff;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(16,185,129,.1);
}

.form-control::placeholder { color: #bbb; }

textarea.form-control { resize: vertical; min-height: 110px; }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 36px;
}

/* ============================================================
   FEATURE BOXES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.feature-box {
  text-align: center;
  padding: 36px 24px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(0.34,1.56,0.64,1), box-shadow .3s ease;
  height: 100%;
  border: 1px solid var(--border);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(16,185,129,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 18px;
  transition: all .3s ease;
}

.feature-box:hover .feature-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading);
}

.feature-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .4s cubic-bezier(0.34,1.56,0.64,1), box-shadow .3s ease;
  border: 1px solid var(--border);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '\201C';
  font-size: 80px;
  color: rgba(16,185,129,.12);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

.test-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.test-author { display: flex; align-items: center; gap: 12px; }

.test-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  transition: transform .3s ease, border-color .3s ease;
}

.testimonial-card:hover .test-avatar {
  transform: scale(1.05);
  border-color: var(--secondary);
}

.test-avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  border: 2px solid var(--primary);
  transition: transform .3s ease, border-color .3s ease;
  flex-shrink: 0;
}

.testimonial-card:hover .test-avatar-placeholder {
  transform: scale(1.05);
  border-color: var(--secondary);
}

.test-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--heading);
}

.test-role { font-size: 13px; color: var(--gray); }

.test-stars { margin-bottom: 12px; }
.test-stars i { color: var(--secondary); font-size: 13px; }
.test-stars .far.fa-star { color: #d1d5db; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(0.34,1.56,0.64,1), box-shadow .3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--light);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(0.25,0.46,0.45,0.94), opacity .3s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.blog-card:hover .blog-card-img::after { opacity: 1; }

.blog-card-body { padding: 20px; }

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.blog-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-title a { color: var(--heading); transition: color .2s; }
.blog-title a:hover { color: var(--primary); }

.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-meta i { color: var(--primary); margin-right: 4px; }

.blog-excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.2s ease;
}

.blog-read-more:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-grid .gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: var(--light);
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(0.34,1.56,0.64,1);
}

.gallery-grid .gallery-item:hover img { transform: scale(1.08); }

.gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-grid .gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-grid .gallery-item .gallery-overlay i {
  color: #fff;
  font-size: 28px;
  transform: scale(0);
  transition: transform .4s cubic-bezier(0.34,1.56,0.64,1);
}

.gallery-grid .gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* ============================================================
   TEAM GRID - Professional Photos
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  justify-content: center;
  margin-top: 20px;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover::before { opacity: 1; }

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 4px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  background: #f1f5f9;
  flex-shrink: 0;
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid transparent;
  transition: all 0.4s ease;
  pointer-events: none;
}

.team-card:hover .team-avatar {
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(16,185,129,0.2);
}

.team-card:hover .team-avatar::after {
  border-color: var(--secondary);
  border-width: 4px;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover .team-avatar img { transform: scale(1.05); }

.team-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.team-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--heading);
  transition: color 0.3s ease;
}

.team-card:hover h4 { color: var(--primary); }

.team-role {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--dark2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.cta-title span { color: var(--secondary); }

.cta-text {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 28px;
}

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.page-banner {
  background: var(--dark2);
  padding: 80px 0 50px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .3;
}

.page-banner-content { position: relative; z-index: 2; text-align: center; }

.page-banner h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  flex-wrap: wrap;
}

.page-breadcrumb a { color: var(--secondary); transition: color .2s; }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-widget {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.widget-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.page-link {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: all .15s;
  background: #fff;
  padding: 0 12px;
}

.page-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.page-link.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.page-link.prev::before, .page-link.next::after,
.page-link::before, .page-link::after {
  display: none !important;
  content: none !important;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16,185,129,0.4);
  transition: all .3s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16,185,129,0.5);
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.page-loader .loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-wrap {
  position: fixed;
  top: calc(var(--nav-h) + 10px);
  right: 20px;
  z-index: 9999;
  min-width: 280px;
  max-width: 380px;
}

.flash-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideIn .4s cubic-bezier(0.34,1.56,0.64,1);
  margin-bottom: 10px;
  border-left: 4px solid;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.flash-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; border-left-color: #16a34a; }
.flash-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; border-left-color: #dc2626; }
.flash-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; border-left-color: #2563eb; }

.flash-alert .flash-icon { font-size: 18px; flex-shrink: 0; }
.flash-alert .flash-close { display: none !important; }

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
.enq-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.enq-modal-overlay.open { display: flex; animation: fadeIn .2s ease; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.enq-modal {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 25px 70px rgba(0,0,0,.3);
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleUp .2s ease;
}

@keyframes scaleUp {
  from { transform: scale(.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.enq-modal-header {
  background: var(--primary);
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px 10px 0 0;
}

.enq-modal-header h4 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.enq-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.8);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}

.enq-close:hover { color: #fff; }
.enq-modal-body { padding: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark2);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.footer-about {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: all .15s;
}

.social-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links a::before, .footer-links a::after {
  display: none !important;
  content: none !important;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
  display: inline-block;
  padding: 2px 0;
}

.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact a:hover { color: var(--primary); }

.footer-newsletter-input {
  display: flex;
  gap: 0;
  margin-top: 12px;
}

.footer-newsletter-input input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 14px;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  transition: background .3s, border-color .3s;
}

.footer-newsletter-input input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter-input input:focus { background: rgba(255,255,255,.12); }
.footer-newsletter-input input.success-state { border: 1px solid var(--primary); background: rgba(16,185,129,.1); }
.footer-newsletter-input input.error-state { border: 1px solid #ef4444; background: rgba(239,68,68,.05); }

.footer-newsletter-input button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 11px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-size: 16px;
  transition: background .15s, transform .15s;
}

.footer-newsletter-input button:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

.footer-newsletter-input button.success { background: var(--primary); }
.footer-newsletter-input button.error { background: #ef4444; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.35);
}

.footer-bottom a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-bottom a:hover { color: var(--primary); }

/* ============================================================
   PRICE SLIDER STYLES
   ============================================================ */
.budget-filter-section {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px;
  margin-bottom: 16px;
}

.budget-filter-section .budget-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  color: var(--text);
}

.budget-filter-section .budget-label i { color: var(--primary); }

.budget-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.budget-inputs .input-group label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 3px;
}

.budget-inputs .input-group input {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
}

.budget-inputs .input-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

.price-slider-container {
  padding: 8px 4px;
}

.price-slider-container .slider-track {
  position: relative;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  margin: 16px 0;
}

.price-slider-container .slider-track .track-fill {
  position: absolute;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.price-slider-container .slider-track .thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2.5px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.price-slider-container .slider-track .thumb:hover {
  border-color: var(--primary-dark);
  box-shadow: 0 2px 10px rgba(16,185,129,0.3);
  transform: translate(-50%, -50%) scale(1.1);
}

.price-slider-container .slider-track .thumb:active { cursor: grabbing; }

.price-slider-container .price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

.skeleton-text { height: 14px; margin-bottom: 8px; border-radius: 4px; }
.skeleton-image { height: 200px; border-radius: var(--radius) var(--radius) 0 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-title { font-size: clamp(36px, 5vw, 54px); }
  
  .site-header .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 99;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .site-header .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .site-header .main-nav ul { flex-direction: column; gap: 2px; }
  .site-header .main-nav ul li a { display: block; padding: 10px 16px; width: 100%; font-size: 15px; border-radius: var(--radius); }
  .mobile-toggle { display: flex !important; }
  
  .mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  .mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  
  .top-bar .top-bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; padding: 0 16px; }
  .top-bar-left { gap: 12px; font-size: 12px; flex-wrap: wrap; }
  .top-bar-left a { font-size: 12px; }
  .top-bar-right { width: 100%; justify-content: space-between; }
  .top-bar-right .admin-link { font-size: 11px; padding: 3px 12px; }
  
  .site-header .header-inner { padding: 0 16px; }
  .site-header .site-logo img { height: 36px; max-height: 36px; }
  .site-header .site-logo .logo-text { font-size: 15px; }
  .site-header .main-nav { padding: 12px 16px; max-height: 75vh; }
  .site-header .main-nav ul li a { padding: 8px 14px; font-size: 14px; }
  
  .hero-banner { min-height: 75vh; }
  .hero-stats { gap: 24px; }
  .hero-title { font-size: 36px; }
  .hero-stat-val { font-size: 28px; }
  .hero-content { padding: 60px 20px; }
  
  .tours-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .dest-card { height: 260px; }
  .dest-name { font-size: 20px; }
  .dest-count { font-size: 13px; }
  
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
  
  .section-padding { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  
  .search-wrap { padding: 16px; margin-top: 20px; }
  .search-form { flex-direction: column; gap: 8px; }
  .search-field { min-width: 100%; }
  .btn-search { width: 100%; justify-content: center; }
  
  .budget-inputs { grid-template-columns: 1fr; gap: 8px; }
  .price-slider-container .slider-track .thumb { width: 16px; height: 16px; }
  
  .testimonial-card { padding: 20px; }
  .flash-wrap { min-width: auto; max-width: 90%; right: 10px; top: calc(var(--nav-h) + 10px); }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .section-title-head h2 { font-size: 28px; }
  
  .site-footer { padding: 40px 0 0; }
  .page-banner { padding: 60px 0 40px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
  
  .cta-section { padding: 50px 0; }
  .cta-title { font-size: 28px; }
  .cta-text { font-size: 16px; }
  
  .team-grid { gap: 16px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .team-avatar { width: 140px; height: 140px; }
  .team-initials { font-size: 40px; }
  .team-card { padding: 20px 16px 18px; }
  .team-card h4 { font-size: 17px; }
  
  .tour-card-img .slider-nav,
  .dest-card .dest-image-slider .slider-nav {
    opacity: 1 !important;
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .top-bar-left a { font-size: 11px; }
  .top-bar-left a i { font-size: 11px; }
  .top-bar-right .social-links a { width: 24px; height: 24px; font-size: 10px; }
  
  .site-header .site-logo img { height: 32px; max-height: 32px; }
  .site-header .site-logo .logo-text { font-size: 13px; }
  
  .tours-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .dest-card { height: 200px; border-radius: 10px; }
  .dest-card-overlay { padding: 16px; }
  .dest-name { font-size: 16px; }
  .dest-count { font-size: 11px; }
  
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; max-width: 280px; margin: 0 auto; }
  
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 16px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
  
  .section-padding { padding: 40px 0; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  
  .hero-stats { gap: 16px; }
  .hero-stat-val { font-size: 22px; }
  
  .hero-btns .btn-hero-primary,
  .hero-btns .btn-hero-outline {
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  
  .tour-card-img { height: 180px; }
  .scroll-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 15px; }
  .search-wrap { padding: 12px; }
  
  .page-banner h1 { font-size: 24px; }
  .page-banner { padding: 40px 0 30px; }
  
  .cta-section { padding: 40px 0; }
  .cta-title { font-size: 24px; }
  .cta-text { font-size: 14px; }
  .cta-buttons .btn-hero-primary,
  .cta-buttons .btn-hero-outline { width: 100%; justify-content: center; }
  
  .team-avatar { width: 120px; height: 120px; }
  .team-initials { font-size: 32px; }
  .team-card { padding: 16px 12px 14px; }
  .team-card h4 { font-size: 15px; }
  .team-role { font-size: 12px; }
  .team-bio { font-size: 12px; }
}

@media (max-width: 380px) {
  .dest-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .dest-card { height: 240px; }
  .team-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .team-avatar { width: 140px; height: 140px; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .main-navbar, .site-footer, .hero-banner, .search-wrap,
  .btn-primary-roavio, .btn-hero-primary, .btn-hero-outline,
  .pagination, .scroll-top, .flash-wrap, .enq-modal-overlay,
  .mob-menu, .hamburger, .tour-card-wish, .btn-view-tour,
  .cta-section, .tour-card-img .slider-nav, .dest-card .dest-image-slider .slider-nav,
  .tour-card-img .slider-controls, .dest-card .dest-image-slider .slider-controls {
    display: none !important;
  }
  
  body { padding-top: 0 !important; background: #fff !important; color: #000 !important; }
  .container { max-width: 100% !important; padding: 0 15px !important; }
  .section-padding { padding: 20px 0 !important; }
  
  .tour-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    page-break-inside: avoid;
    margin-bottom: 20px;
  }
  .tour-card-img img { max-height: 150px; object-fit: contain; }
  
  .dest-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    height: auto !important;
    min-height: 120px;
    page-break-inside: avoid;
  }
  .dest-card-overlay { background: rgba(0,0,0,0.6) !important; position: relative !important; }
  .dest-name { color: #000 !important; }
  .dest-count { color: #555 !important; }
  
  .hero-stats { display: none !important; }
  .tour-card-body { padding: 12px !important; }
  
  .testimonial-card, .blog-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    page-break-inside: avoid;
  }
  
  .footer-grid { display: block !important; }
  .footer-grid .footer-col { margin-bottom: 20px; }
  .page-banner { background: #333 !important; padding: 30px 0 !important; }
  .page-banner h1 { color: #000 !important; }
}

/* ============================================================
   GLOBAL FIXES - Remove All Symbols & Support
   ============================================================ */
.fa-chevron-left, .fa-chevron-right, .fa-angle-left, .fa-angle-right,
.fa-arrow-left, .fa-arrow-right, .fa-times, .fa-xmark, .fa-close {
  display: none !important;
}

.pagination .page-link::before, .pagination .page-link::after,
.site-footer .footer-links a::before, .site-footer .footer-links a::after {
  display: none !important;
  content: none !important;
}

.hero-slider-btn, .hero-slider-dots, .scroll-btn,
.scroll-left, .scroll-right, .scroll-btn-left, .scroll-btn-right {
  display: none !important;
}

.flash-alert .flash-close { display: none !important; }

/* ============================================================
   LOGO TEXT WITH SUBTITLE
   ============================================================ */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-logo .logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.site-logo .logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-logo .logo-text {
        font-size: 15px;
    }
    .site-logo .logo-sub {
        font-size: 7px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .site-logo .logo-text {
        font-size: 13px;
    }
    .site-logo .logo-sub {
        font-size: 6px;
        letter-spacing: 0.8px;
    }
}

/* ============================================================
   FOOTER LOGO WITH SUBTITLE
   ============================================================ */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-wrap .footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.1;
}

.footer-logo-wrap .footer-logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay - no green */
}
