/* =============================================
   UNIQUE SAHARA TOURS - Main Stylesheet
   Colors: Deep Red #8B1A1A | Orange #D4691E | Gold #F5A623
   ============================================= */

/* Fonts loaded via <link> in header.php */

:root {
  --primary: #8B1A1A;
  --primary-dark: #6B1212;
  --secondary: #D4691E;
  --accent: #F5A623;
  --gold: #FFD700;
  --light-bg: #FFF8F0;
  --text-dark: #1A0A00;
  --text-gray: #6B7280;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(139,26,26,0.12);
  --shadow-lg: 0 8px 40px rgba(139,26,26,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

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

img { max-width: 100%; height: auto; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(139,26,26,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px; width: auto; max-width: 160px;
}
.nav-logo-text .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.nav-logo-text .brand-sub {
  font-size: 10px; color: rgba(255,255,255,0.8);
  letter-spacing: 2px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--primary) !important;
  padding: 10px 22px; border-radius: 25px; font-weight: 600 !important;
  font-size: 13px !important;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
  width: 42px; height: 42px; flex-shrink: 0;
}
.hamburger span {
  width: 24px; height: 2px; background: white;
  border-radius: 2px; transition: var(--transition);
  transform-origin: center;
}
/* Hamburger → X animation */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 998; backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* ---- HERO ---- */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2D0000 0%, #8B1A1A 40%, #D4691E 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(139,26,26,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%; max-width: 750px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.4);
  color: var(--gold); padding: 8px 18px; border-radius: 25px;
  font-size: 13px; font-weight: 500; margin-bottom: 25px;
  backdrop-filter: blur(10px);
}
.hero-badge i { font-size: 14px; }
.hero h1 {
  font-size: clamp(38px, 6vw, 70px);
  color: white; line-height: 1.1; margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 18px; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 35px; max-width: 550px;
}
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white; padding: 15px 35px; border-radius: 35px;
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  box-shadow: 0 6px 25px rgba(212,105,30,0.4);
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(212,105,30,0.5);
  color: white;
}
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 13px 30px; border-radius: 35px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white; color: white;
  transform: translateY(-2px);
}
.hero-stats {
  position: absolute; bottom: 50px; left: 5%;
  z-index: 2; display: flex; gap: 40px;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--gold); display: block;
}
.hero-stat .label {
  font-size: 12px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 1px;
}
.hero-scroll {
  position: absolute; bottom: 40px; right: 5%; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
  font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 2px;
  text-transform: uppercase; writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,215,0,0.8), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ---- SEARCH BAR ---- */
.search-section {
  background: var(--primary);
  padding: 30px 5%;
}
.search-box {
  background: white; border-radius: 60px;
  padding: 8px 8px 8px 30px;
  display: flex; align-items: center; gap: 15px;
  max-width: 900px; margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.search-box select, .search-box input {
  flex: 1; border: none; outline: none;
  font-size: 14px; color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  background: transparent;
}
.search-box .divider {
  width: 1px; height: 30px; background: #E5E7EB;
}
.search-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border: none; padding: 14px 30px;
  border-radius: 50px; cursor: pointer; font-size: 14px; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.search-btn:hover { transform: scale(1.03); }

/* ---- SECTIONS ---- */
.section { padding: 90px 5%; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--primary); color: white; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(212,105,30,0.12);
  color: var(--secondary); font-size: 13px; font-weight: 600;
  padding: 6px 18px; border-radius: 20px; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 15px;
}
.section-dark .section-tag { background: rgba(255,215,0,0.15); color: var(--gold); }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25; margin-bottom: 15px;
  color: var(--text-dark);
}
.section-dark .section-title { color: white; }
.section-subtitle {
  font-size: 16px; color: var(--text-gray);
  max-width: 550px; margin: 0 auto; line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ---- TOUR CARDS ---- */
.tours-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.tour-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); position: relative;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.tour-card-image {
  height: 240px; overflow: hidden; position: relative;
}
.tour-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-image img { transform: scale(1.08); }
.tour-badge {
  position: absolute; top: 15px; left: 15px;
  background: var(--primary); color: white;
  padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.tour-badge.featured { background: var(--gold); color: var(--primary); }
.tour-price-badge {
  position: absolute; bottom: 15px; right: 15px;
  background: rgba(0,0,0,0.75); color: white; backdrop-filter: blur(8px);
  padding: 8px 15px; border-radius: 25px; text-align: right;
}
.tour-price-badge .from { font-size: 10px; opacity: 0.8; }
.tour-price-badge .amount {
  font-size: 20px; font-weight: 700; color: var(--gold);
  font-family: 'Playfair Display', serif;
}
.tour-card-body { padding: 22px; }
.tour-meta {
  display: flex; gap: 15px; margin-bottom: 12px; flex-wrap: wrap;
}
.tour-meta span {
  font-size: 12px; color: var(--text-gray);
  display: flex; align-items: center; gap: 4px;
}
.tour-meta i { color: var(--secondary); font-size: 12px; }
.tour-card h3 {
  font-size: 19px; color: var(--text-dark); margin-bottom: 8px;
  line-height: 1.3;
}
.tour-card h3 a:hover { color: var(--primary); }
.tour-card p { font-size: 13px; color: var(--text-gray); line-height: 1.6; margin-bottom: 18px; }
.tour-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 15px; border-top: 1px solid #F3F4F6;
}
.btn-book {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; padding: 10px 22px; border-radius: 25px;
  font-size: 13px; font-weight: 600; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-book:hover { transform: scale(1.05); color: white; }
.tour-rating {
  display: flex; align-items: center; gap: 4px;
}
.tour-rating .stars { color: var(--gold); font-size: 13px; }
.tour-rating span { font-size: 12px; color: var(--text-gray); }

/* ---- WHY CHOOSE US ---- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  text-align: center; padding: 40px 25px;
  border-radius: var(--radius-lg);
  background: white; box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 75px; height: 75px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 30px; color: white;
}
.feature-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--text-dark); }
.feature-card p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ---- DESTINATIONS ---- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 15px;
}
.dest-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
}
.dest-card:first-child { grid-row: span 2; grid-column: span 2; }
.dest-card .dest-img {
  width: 100%; height: 100%; min-height: 200px;
  object-fit: cover; transition: transform 0.5s;
  display: block;
}
.dest-card:first-child .dest-img { min-height: 100%; height: 100%; }
.dest-card:hover .dest-img { transform: scale(1.05); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139,26,26,0.8) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.dest-name {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 20px; font-weight: 700;
}
.dest-card:first-child .dest-name { font-size: 30px; }
.dest-count { color: var(--gold); font-size: 13px; margin-top: 4px; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.testimonial-card {
  background: rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  padding: 30px; border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 15px; }
.testi-text {
  font-size: 15px; color: rgba(255,255,255,0.85);
  line-height: 1.7; font-style: italic; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: white; font-size: 18px; flex-shrink: 0;
}
.testi-info .name { font-weight: 600; color: white; font-size: 15px; }
.testi-info .country { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ---- BLOG ---- */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.blog-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 210px; overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; }
.blog-category {
  display: inline-block; background: rgba(139,26,26,0.1);
  color: var(--primary); font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 15px; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 12px;
}
.blog-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 13px; color: var(--text-gray); line-height: 1.6; margin-bottom: 15px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-date { font-size: 12px; color: var(--text-gray); display: flex; align-items: center; gap: 5px; }
.read-more {
  font-size: 13px; color: var(--primary); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}
.read-more:hover { color: var(--secondary); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 90px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/pattern.png') repeat;
  opacity: 0.05;
}
.cta-section h2 { font-size: clamp(28px, 4vw, 48px); color: white; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 550px; margin: 0 auto 35px; }
.btn-gold {
  background: var(--gold); color: var(--primary);
  padding: 16px 40px; border-radius: 35px;
  font-size: 16px; font-weight: 700; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 25px rgba(255,215,0,0.3);
}
.btn-gold:hover { background: white; transform: translateY(-3px); color: var(--primary); }

/* ---- CONTACT FORM ---- */
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start;
}
.contact-info h3 {
  font-size: 28px; color: var(--primary); margin-bottom: 15px;
}
.contact-info p { color: var(--text-gray); line-height: 1.7; margin-bottom: 30px; }
.contact-item {
  display: flex; gap: 15px; margin-bottom: 20px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
}
.contact-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: 13px; color: var(--text-gray); margin: 0; }
.whatsapp-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 14px 25px; border-radius: 12px; font-weight: 600;
  margin-top: 25px; transition: var(--transition);
}
.whatsapp-btn:hover { background: #1abe55; color: white; transform: scale(1.02); }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid #E5E7EB;
  border-radius: 10px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text-dark); transition: var(--transition); background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.1);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-submit {
  width: 100%; padding: 15px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border: none; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  font-family: 'Inter', sans-serif; display: flex;
  align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---- BREADCRUMB ---- */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 120px 5% 60px; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover; opacity: 0.2;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { color: white; font-size: clamp(30px, 5vw, 52px); margin-bottom: 10px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  list-style: none; font-size: 14px;
}
.breadcrumb li { color: rgba(255,255,255,0.7); }
.breadcrumb li a { color: var(--gold); }
.breadcrumb li::after { content: '/'; margin-left: 8px; }
.breadcrumb li:last-child::after { display: none; }

/* ---- PAGINATION ---- */
.pagination {
  display: flex; justify-content: center; gap: 8px; margin-top: 50px;
}
.page-btn {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #E5E7EB; font-size: 14px;
  transition: var(--transition); color: var(--text-dark);
}
.page-btn:hover, .page-btn.active {
  background: var(--primary); border-color: var(--primary); color: white;
}

/* ---- TOUR DETAIL ---- */
.tour-detail-hero {
  height: 500px; position: relative; overflow: hidden;
}
.tour-detail-hero img {
  width: 100%; height: 100%; object-fit: cover;
}
.tour-detail-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139,26,26,0.7) 0%, transparent 60%);
}
.tour-detail-wrapper {
  display: grid; grid-template-columns: 1fr 380px; gap: 50px;
  padding: 50px 5%; align-items: start;
}
.tour-detail-sidebar {
  position: sticky; top: 100px;
}
.booking-card {
  background: white; border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
}
.booking-card .price-display {
  text-align: center; margin-bottom: 25px;
}
.booking-card .price-display .amount {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; color: var(--primary);
}
.booking-card .price-display .per { font-size: 14px; color: var(--text-gray); }
.tour-includes {
  margin-bottom: 20px;
}
.tour-includes h4 { font-size: 16px; margin-bottom: 12px; color: var(--text-dark); }
.include-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; font-size: 13px; color: var(--text-gray);
  border-bottom: 1px solid #F3F4F6;
}
.include-item i.fa-check { color: #10B981; }
.include-item i.fa-times { color: #EF4444; }

.itinerary-item {
  margin-bottom: 20px; padding: 20px;
  border-radius: var(--radius); border-left: 3px solid var(--secondary);
  background: var(--light-bg);
}
.itinerary-day {
  font-size: 13px; font-weight: 700; color: var(--secondary);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px;
}
.itinerary-title { font-size: 17px; margin-bottom: 8px; }
.itinerary-desc { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* ---- FOOTER ---- */
footer {
  background: #0D0500; color: rgba(255,255,255,0.75); padding: 70px 5% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--gold); margin-bottom: 15px; display: block;
}
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.7);
  transition: var(--transition); font-size: 15px;
}
.social-btn:hover {
  background: var(--primary); color: white; transform: translateY(-3px);
}
.footer-col h4 {
  color: white; font-size: 16px; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact-item {
  display: flex; gap: 10px; margin-bottom: 12px;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; font-size: 14px; width: 16px; }
.footer-contact-item span { font-size: 13px; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 25px; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: gap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--gold); }

/* ---- ALERTS ---- */
.alert {
  padding: 15px 20px; border-radius: 10px; margin-bottom: 20px;
  font-size: 14px; display: flex; align-items: center; gap: 10px;
}
.alert-success { background: #D1FAE5; color: #065F46; border-left: 4px solid #10B981; }
.alert-error { background: #FEE2E2; color: #991B1B; border-left: 4px solid #EF4444; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition); animation: pulse 2s infinite;
}
.whatsapp-float:hover { background: #1abe55; transform: scale(1.1); color: white; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 999;
  width: 44px; height: 44px; background: var(--primary);
  border-radius: 10px; display: none; align-items: center;
  justify-content: center; color: white; font-size: 18px;
  box-shadow: var(--shadow); transition: var(--transition); cursor: pointer;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--secondary); transform: translateY(-3px); }

/* ---- LOADING ---- */
.page-loader {
  position: fixed; inset: 0; background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: var(--gold); margin-bottom: 25px;
}
.loader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,0.2);
  border-radius: 10px; overflow: hidden; margin: 0 auto;
}
.loader-fill {
  height: 100%; background: var(--gold); border-radius: 10px;
  animation: loading 1.5s ease-out forwards;
}
@keyframes loading { from { width: 0; } to { width: 100%; } }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-secondary { color: var(--secondary); }
.mt-auto { margin-top: auto; }
.fw-bold { font-weight: 700; }

/* =============================================
   RESPONSIVE — TABLET & MOBILE
   ============================================= */

/* ---- TABLET (≤992px) ---- */
@media (max-width: 992px) {
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:first-child { grid-column: span 2; }
  .tour-detail-wrapper { grid-template-columns: 1fr; }
  .tour-detail-sidebar { position: static; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- MOBILE (≤768px) ---- */
@media (max-width: 768px) {

  /* --- Navbar --- */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100dvh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 40px;
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 13px 16px;
    font-size: 15px; font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active {
    background: rgba(255,255,255,0.12);
    color: var(--gold);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    background: var(--gold) !important;
    color: var(--primary) !important;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    display: block;
  }
  .hamburger { display: flex; }
  /* Ensure hamburger is above overlay */
  .nav-container { position: relative; z-index: 1001; }

  /* --- Hero --- */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 6%; padding-top: 20px; max-width: 100%; }
  .hero h1 { font-size: clamp(28px, 8vw, 44px); }
  .hero p { font-size: 15px; }
  .hero-stats {
    bottom: 20px; left: 0; right: 0;
    justify-content: center; gap: 20px;
    padding: 0 5%;
  }
  .hero-stat .number { font-size: 22px; }
  .hero-stat .label { font-size: 10px; }
  .hero-scroll { display: none; }

  /* --- Search --- */
  .search-box {
    flex-direction: column; padding: 18px;
    border-radius: 16px; gap: 12px;
  }
  .search-box .divider { width: 100%; height: 1px; }
  .search-box select, .search-box input { width: 100%; padding: 10px 0; }
  .search-btn { width: 100%; justify-content: center; }

  /* --- Grids --- */
  .tours-grid, .blog-grid, .testimonials-grid,
  .features-grid, .destinations-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: auto; }

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

  /* --- Contact --- */
  .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }

  /* --- Tours page sidebar --- */
  .tours-page-layout { grid-template-columns: 1fr !important; }
  .tours-sidebar { position: static !important; }

  /* --- Blog detail --- */
  .blog-detail-grid { grid-template-columns: 1fr !important; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* --- About --- */
  .about-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .about-grid img { height: 280px !important; }

  /* --- Tour detail --- */
  .tour-detail-hero { height: 260px; }
  .tour-detail-wrapper { padding: 25px 4%; gap: 25px; }

  /* --- Page header --- */
  .page-header { padding: 100px 5% 40px; }
  .page-header h1 { font-size: clamp(24px, 7vw, 40px); }

  /* --- Whatsapp & scroll-top --- */
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 23px; }
  .scroll-top { bottom: 85px; right: 16px; }
}

/* ---- SMALL MOBILE (≤480px) ---- */
@media (max-width: 480px) {
  .section { padding: 55px 4%; }
  .section-title { font-size: clamp(24px, 7vw, 34px); }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-outline {
    width: 100%; text-align: center;
    justify-content: center; padding: 14px 20px;
  }
  .hero-stats { flex-wrap: wrap; gap: 14px 24px; }
  .tour-card-image { height: 200px; }
  .cta-section { padding: 60px 4%; }
  .cta-section h2 { font-size: 24px; }
  .booking-card { padding: 20px; }
  .booking-card .price-display .amount { font-size: 34px; }
  .search-section { padding: 20px 4%; }
  /* Footer columns always single on tiny screens */
  .footer-grid { gap: 24px; }
}
