/* ===========================
   INVICTUS SAFARIS COLOR BRANDING
   Safari-Inspired Color Palette
=========================== */

:root {
  /* Primary Safari Colors */
  --safari-sunset-orange: #D2691E;
  --safari-warm-orange: #FF8C42;
  --safari-light-orange: #FFB366;
  --safari-deep-orange: #B8460E;
  
  /* Earth Tones */
  --safari-earth-brown: #8B4513;
  --safari-dark-brown: #654321;
  --safari-rich-brown: #A0522D;
  --safari-light-brown: #D2B48C;
  
  /* Neutral Safari Tones */
  --safari-sand: #F5DEB3;
  --safari-cream: #FFF8DC;
  --safari-warm-beige: #F7E7CE;
  --safari-dusty-beige: #E6D3B7;
  
  /* Accent Colors */
  --safari-sunset-red: #CD853F;
  --safari-golden-yellow: #DAA520;
  --safari-savanna-green: #9ACD32;
  --safari-acacia-green: #556B2F;
  
  /* Dark Elements */
  --safari-charcoal: #2F2F2F;
  --safari-dark-grey: #4A4A4A;
  --safari-medium-grey: #6B6B6B;
  
  /* Gradients */
  --safari-sunset-gradient: linear-gradient(135deg, #FF8C42 0%, #D2691E 50%, #B8460E 100%);
  --safari-earth-gradient: linear-gradient(135deg, #F5DEB3 0%, #D2B48C 50%, #A0522D 100%);
  --safari-warm-gradient: linear-gradient(135deg, #FFF8DC 0%, #F7E7CE 50%, #E6D3B7 100%);
}

/* ===========================
   GLOBAL COLOR APPLICATIONS
=========================== */

/* Background Colors */
.bg-safari-orange { background-color: var(--safari-warm-orange); }
.bg-safari-sunset { background-color: var(--safari-sunset-orange); }
.bg-safari-brown { background-color: var(--safari-earth-brown); }
.bg-safari-sand { background-color: var(--safari-sand); }
.bg-safari-cream { background-color: var(--safari-cream); }
.bg-safari-beige { background-color: var(--safari-warm-beige); }

/* Text Colors */
.text-safari-orange { color: var(--safari-warm-orange); }
.text-safari-sunset { color: var(--safari-sunset-orange); }
.text-safari-brown { color: var(--safari-earth-brown); }
.text-safari-dark { color: var(--safari-charcoal); }
.text-safari-cream { color: var(--safari-cream); }

/* Border Colors */
.border-safari-orange { border-color: var(--safari-warm-orange); }
.border-safari-brown { border-color: var(--safari-earth-brown); }
.border-safari-sand { border-color: var(--safari-sand); }

/* ===========================
   COMPONENT COLOR STYLING
=========================== */

/* Header/Navigation */
.safari-header {
  background: var(--safari-warm-gradient);
  border-bottom: 3px solid var(--safari-sunset-orange);
}

.safari-nav-link {
  color: var(--safari-dark-brown);
  transition: color 0.3s ease;
}

.safari-nav-link:hover {
  color: var(--safari-sunset-orange);
}

/* Hero Section */
.safari-hero {
  background: var(--safari-sunset-gradient);
  position: relative;
  overflow: hidden;
}

.safari-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 66, 0.8) 0%,
    rgba(210, 105, 30, 0.6) 50%,
    rgba(184, 70, 14, 0.4) 100%
  );
}

/* Card Components */
.safari-card {
  background: var(--safari-cream);
  border: 1px solid var(--safari-dusty-beige);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(210, 105, 30, 0.15);
  transition: all 0.3s ease;
}

.safari-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(210, 105, 30, 0.25);
  border-color: var(--safari-sunset-orange);
}

/* Buttons */
.btn-safari-primary {
  background: var(--safari-sunset-gradient);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-safari-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(210, 105, 30, 0.4);
  color: white;
}

.btn-safari-secondary {
  background: transparent;
  border: 2px solid var(--safari-sunset-orange);
  color: var(--safari-sunset-orange);
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-safari-secondary:hover {
  background: var(--safari-sunset-orange);
  color: white;
  transform: translateY(-2px);
}

/* Section Backgrounds */
.safari-section-light {
  background: var(--safari-cream);
}

.safari-section-warm {
  background: var(--safari-warm-beige);
}

.safari-section-earth {
  background: var(--safari-earth-gradient);
  color: white;
}

/* Price Tags */
.safari-price {
  background: var(--safari-sunset-orange);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.2em;
  display: inline-block;
}

/* Testimonials */
.safari-testimonial {
  background: var(--safari-cream);
  border-left: 5px solid var(--safari-sunset-orange);
  padding: 25px;
  border-radius: 10px;
  position: relative;
}

.safari-testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 4em;
  color: var(--safari-sunset-orange);
  font-family: serif;
}

/* Footer */
.safari-footer {
  background: var(--safari-dark-brown);
  color: var(--safari-sand);
}

.safari-footer a {
  color: var(--safari-light-orange);
  transition: color 0.3s ease;
}

.safari-footer a:hover {
  color: var(--safari-warm-orange);
}

/* ===========================
   SPECIALTY COLOR EFFECTS
=========================== */

/* Sunset Overlay Effect */
.safari-sunset-overlay {
  position: relative;
}

.safari-sunset-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 140, 66, 0.3) 0%,
    rgba(210, 105, 30, 0.2) 50%,
    rgba(184, 70, 14, 0.1) 100%
  );
  pointer-events: none;
}

/* Earth Tone Accents */
.safari-accent-border {
  border-bottom: 3px solid var(--safari-sunset-orange);
  position: relative;
}

.safari-accent-border::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--safari-golden-yellow);
}

/* Warm Glow Effect */
.safari-warm-glow {
  box-shadow: 0 0 20px rgba(255, 140, 66, 0.3);
  transition: box-shadow 0.3s ease;
}

.safari-warm-glow:hover {
  box-shadow: 0 0 30px rgba(255, 140, 66, 0.5);
}

/* ===========================
   RESPONSIVE COLOR ADJUSTMENTS
=========================== */

@media (max-width: 768px) {
  .safari-hero {
    background: linear-gradient(
      to bottom,
      var(--safari-warm-orange) 0%,
      var(--safari-sunset-orange) 100%
    );
  }
  
  .safari-card {
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.1);
  }
}

/* ===========================
   THEME BACKGROUND
=========================== */
body.safari-theme {
  background: var(--safari-warm-gradient);
  background-attachment: fixed;
}

/* Make common white blocks transparent where appropriate */
body.safari-theme .widget,
body.safari-theme .outer-wrap,
body.safari-theme .container-bg,
body.safari-theme .bg-white:not(.keep-white) {
  background-color: transparent !important;
}


/* ===========================
   PACKAGES ENHANCED (no background change)
=========================== */

/* Why Choose Us - Read More button */
.why-choose-cta { display: flex; justify-content: center; margin-top: 24px; }
.why-choose-read-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--safari-sunset-gradient);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(210,105,30,0.35);
  transition: all 0.25s ease;
  min-width: 210px;
}
.why-choose-read-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(210,105,30,0.45); color: #fff; }
.why-choose-read-btn i { transition: transform 0.25s ease; }
.why-choose-read-btn:hover i { transform: translateX(4px); }

/* Package footer buttons layout */
.modern-tour-packages-section .tour-package-footer { gap: 12px; flex-wrap: wrap; }
.modern-tour-packages-section .tour-package-btn { display: inline-flex; align-items: center; justify-content: center; }

/* Split layout styles */
.why-choose-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: center; margin-top: 24px; }
.why-choose-image { border-radius: 16px; overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,0.15); }
.why-choose-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-choose-mini { font-size: 1.35rem; font-weight: 800; color: var(--safari-earth-brown); margin-bottom: 8px; }
.why-choose-mini-desc { color: #5a4a3b; margin-bottom: 14px; }
.why-choose-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Small safari buttons */
.btn-safari-sm { display: inline-flex; align-items: center; justify-content: center; padding: 9px 16px; border-radius: 22px; font-size: 14px; font-weight: 700; letter-spacing: .2px; text-decoration: none; transition: all .25s ease; }
.btn-safari-sm-primary { background: var(--safari-sunset-gradient); color:#fff; box-shadow: 0 6px 16px rgba(210,105,30,.35); border:none; }
.btn-safari-sm-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(210,105,30,.45); color:#fff; }
.btn-safari-sm-secondary { background: transparent; color: var(--safari-sunset-orange); border:2px solid var(--safari-sunset-orange); }
.btn-safari-sm-secondary:hover { background: var(--safari-sunset-orange); color:#fff; transform: translateY(-2px); }

/* Destination filter chips - safari branded and compact */
.modern-destinations-section .destinations-filter-tabs { gap: 8px 10px; display: flex; flex-wrap: wrap; justify-content: center; }
.modern-destinations-section .destination-filter-btn {
  background: transparent;
  color: var(--safari-sunset-orange);
  border: 1px solid var(--safari-sunset-orange);
  padding: 6px 12px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  transition: all .25s ease;
}
.modern-destinations-section .destination-filter-btn:hover,
.modern-destinations-section .destination-filter-btn.active {
  background: var(--safari-sunset-orange);
  color: #fff;
  border-color: var(--safari-sunset-orange);
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .why-choose-split { grid-template-columns: 1fr; }
  .why-choose-image { order: -1; }
}
@media (max-width: 768px) {
  .why-choose-cta { padding: 0 16px; }
  .why-choose-read-btn { width: 100%; max-width: 420px; }
}
@media (max-width: 576px) {
  .modern-tour-packages-section .tour-package-footer { flex-direction: column; align-items: stretch; }
  .modern-tour-packages-section .tour-package-footer .tour-package-price-main { width: 100%; }
  .modern-tour-packages-section .tour-package-footer .tour-package-btn { width: 100%; }
}
.modern-tour-packages-section .tour-packages-main-title {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--safari-earth-brown);
  font-weight: 800;
}

.modern-tour-packages-section .tour-package-card {
  background: var(--safari-cream);
  border: 1px solid var(--safari-dusty-beige);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(101, 67, 33, 0.15);
}
.modern-tour-packages-section .tour-package-card:hover {
  border-color: var(--safari-sunset-orange);
  box-shadow: 0 16px 38px rgba(210, 105, 30, 0.25);
}

.modern-tour-packages-section .tour-package-title {
  color: var(--safari-earth-brown);
}
.modern-tour-packages-section .tour-package-card:hover .tour-package-title {
  color: var(--safari-sunset-orange);
}

.modern-tour-packages-section .tour-package-category {
  background: rgba(210, 105, 30, 0.12);
  color: var(--safari-sunset-orange);
}

.modern-tour-packages-section .tour-package-description { color: #5a4a3b; }

/* Price tag like the poster */
.tour-package-price-tag {
  display: inline-block;
  color: var(--safari-earth-brown);
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 6px;
}

/* Home Testimonials */
.home-testimonials-section { background: var(--safari-warm-beige); padding: 60px 0; }
.home-testimonials-title { color: var(--safari-earth-brown); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.home-testimonials-subtitle { color: #5a4a3b; margin-bottom: 20px; }
.home-testimonials-slider{ margin: 0 -14px; }
.home-testimonials-slider .slick-slide{ padding: 0 14px; }
.home-testimonial-card { background: var(--safari-cream); border: 1px solid var(--safari-dusty-beige); border-radius: 16px; padding: 22px; box-shadow: 0 10px 28px rgba(101,67,33,.12); }
.ht-quote { color: var(--safari-sunset-orange); font-size: 22px; opacity:.8; margin-bottom: 8px; }
.ht-text { color:#4e3f32; font-style: italic; line-height: 1.6; margin-bottom: 14px; }
.ht-user { display:flex; align-items:center; gap:12px; }
.ht-avatar { width:44px; height:44px; border-radius:50%; overflow:hidden; background: rgba(210,105,30,.15); display:flex; align-items:center; justify-content:center; }
.ht-avatar img{ width:100%; height:100%; object-fit:cover; }
.ht-initials{ color:#fff; font-weight:800; }
.ht-name{ color:var(--safari-earth-brown); }
.ht-location{ color:#7a6654; font-size:12px; margin-left:6px; }

/* Slick dots */
.home-testimonials-section .slick-dots{ margin: 18px 0 0; }
.home-testimonials-section .slick-dots li button{ border-bottom:3px solid rgba(210,105,30,.35); }
.home-testimonials-section .slick-dots li.slick-active button{ border-bottom-color: var(--safari-sunset-orange); }

/* Slider arrows */
.home-testimonials-section .ht-arrow{ width:44px; height:44px; border-radius:50%; background:#fff; color: var(--safari-sunset-orange); border:2px solid var(--safari-sunset-orange); box-shadow:0 8px 18px rgba(210,105,30,.25); display:flex; align-items:center; justify-content:center; }
/* Style default slick arrows when using vs-carousel */
.home-testimonials-section .slick-prev,
.home-testimonials-section .slick-next{ width:44px; height:44px; border-radius:50%; background:#fff; color: var(--safari-sunset-orange); border:2px solid var(--safari-sunset-orange); box-shadow:0 8px 18px rgba(210,105,30,.25); display:flex !important; align-items:center; justify-content:center; }
.home-testimonials-section .slick-prev:before,
.home-testimonials-section .slick-next:before{ content:none; }
.home-testimonials-section .slick-prev{ left:-16px; z-index:3; }
.home-testimonials-section .slick-next{ right:-16px; }
.home-testimonials-section .slick-prev:hover,
.home-testimonials-section .slick-next:hover,
.home-testimonials-section .ht-arrow:hover{ background: var(--safari-sunset-orange); color:#fff; }

/* Buttons in package cards (small) */
.modern-tour-packages-section .tour-package-btn,
.why-choose-read-btn,
.tour-packages-main-btn,
.tour-packages-secondary-btn,
.modern-btn.blog-btn.primary,
.modern-btn.blog-btn.secondary,
.destinations-load-btn,
.why-choose-main-btn,
.why-choose-secondary-btn,
.btn-safari-sm,
.btn-safari-sm-primary,
.btn-safari-sm-secondary {
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 7px 12px !important;
  font-size: 13px !important;
  line-height: 1.1;
  transition: all 0.25s ease;
}
.modern-tour-packages-section .tour-package-btn i { transition: transform 0.25s ease; }

.modern-tour-packages-section .tour-package-btn--primary {
  background: var(--safari-sunset-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(210,105,30,0.35);
}
.modern-tour-packages-section .tour-package-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(210,105,30,0.45);
}
.modern-tour-packages-section .tour-package-btn--primary:hover i { transform: translateX(4px); }

.modern-tour-packages-section .tour-package-btn--secondary {
  background: transparent;
  color: var(--safari-sunset-orange);
  border: 2px solid var(--safari-sunset-orange);
}
.modern-tour-packages-section .tour-package-btn--secondary:hover {
  background: var(--safari-sunset-orange);
  color: #fff;
  transform: translateY(-2px);
}
.modern-tour-packages-section .tour-package-btn--secondary:hover i { transform: translateX(4px); }

/* Accessible focus ring */
.modern-tour-packages-section .tour-package-btn:focus,
.why-choose-read-btn:focus,
.tour-packages-main-btn:focus,
.tour-packages-secondary-btn:focus,
.modern-btn.blog-btn.primary:focus,
.modern-btn.blog-btn.secondary:focus,
.destinations-load-btn:focus,
.why-choose-main-btn:focus,
.why-choose-secondary-btn:focus { outline: 3px solid rgba(255,140,66,0.35); outline-offset: 2px; }

/* Tour package category filter chips - safari branded and compact */
.modern-tour-packages-section .tour-packages-filters { gap: 8px 10px; }
.modern-tour-packages-section .tour-package-filter-btn {
  background: transparent;
  color: var(--safari-sunset-orange);
  border: 1px solid var(--safari-sunset-orange);
  padding: 6px 12px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
}
.modern-tour-packages-section .tour-package-filter-btn:hover {
  background: var(--safari-sunset-orange);
  color: #fff;
  border-color: var(--safari-sunset-orange);
  transform: translateY(-1px);
}
.modern-tour-packages-section .tour-package-filter-btn.active {
  background: var(--safari-sunset-orange);
  color: #fff;
  border-color: var(--safari-sunset-orange);
}

/* ===========================
   ANIMATION ENHANCEMENTS
=========================== */

@keyframes safariGlow {
  0% { box-shadow: 0 0 5px rgba(255, 140, 66, 0.2); }
  50% { box-shadow: 0 0 20px rgba(255, 140, 66, 0.4); }
  100% { box-shadow: 0 0 5px rgba(255, 140, 66, 0.2); }
}

.safari-animate-glow {
  animation: safariGlow 3s ease-in-out infinite;
}

/* Color-based hover transitions */
.safari-color-transition {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.safari-color-transition:hover {
  filter: brightness(1.1) saturate(1.2);
}

/* ===========================
   SAFARI ABOUT SECTION (Who We Are)
=========================== */
.safari-about-section {
  position: relative;
  background: linear-gradient(180deg, rgba(101,67,33,1) 0%, rgba(43,26,12,1) 100%);
  color: var(--safari-cream);
  padding: 90px 0;
  overflow: hidden;
}

.safari-about-section .about-eyebrow {
  color: var(--safari-golden-yellow);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.safari-about-section .about-title {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}

.safari-about-section .about-lead {
  color: #f3e9d6;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.safari-about-section .about-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}

.safari-about-section .about-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #f2ddc1;
}

.safari-about-section .about-bullets i {
  color: var(--safari-light-orange);
}

/* Circle Image */
.safari-about-circle {
  width: clamp(260px, 45vw, 420px);
  height: clamp(260px, 45vw, 420px);
  border-radius: 50%;
  background: var(--safari-earth-gradient);
  position: relative;
  margin: 0 auto;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35), inset 0 0 0 10px rgba(218,165,32,0.25);
}

.safari-about-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}

.safari-about-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(255,140,66,0.35), rgba(0,0,0,0.4) 60%);
  pointer-events: none;
}

/* Decorative top gradient bar */
.safari-about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--safari-sunset-gradient);
}

@media (max-width: 991.98px) {
  .safari-about-section { padding: 70px 0; }
  .safari-about-circle { margin-top: 26px; }
}

 /* CTA Section Styles */
  .cta-area {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 0;
  }
  .cta-area {
    padding: 0 0 40px;
  }


