/* Modern Eco-Luxury Safari Theme - Suresh Safari Minneriya */
:root {
  --primary: #0b291a;        /* Deep Jungle Emerald */
  --primary-light: #16462e;  /* Lighter Emerald */
  --accent: #d99b26;         /* Warm Safari Gold */
  --accent-hover: #b8801b;   /* Darker Gold */
  --accent-light: #fff5e0;   /* Light Cream Accent */
  --dark: #0f1412;           /* Near Black Charcoal */
  --dark-surface: #18221c;   /* Dark Surface */
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(217, 155, 38, 0.2);
  --text-main: #f0f4f2;      /* Light Off-white */
  --text-muted: #a3b8ad;     /* Soft Sage Muted */
  --text-dark: #1b2921;      /* Text for light cards */
  --whatsapp-color: #25D366;
  --whatsapp-hover: #1da851;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --shadow-glow: 0 10px 30px rgba(217, 155, 38, 0.15);
  --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font-main);
  background-color: #07140c;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(18, 52, 34, 0.6) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(217, 155, 38, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(12, 40, 26, 0.5) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Repeating Safari Leopard Paw Prints Track Background Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23f0b830'%3E%3Cpath d='M40 50 C28 50 20 62 24 74 C28 84 52 84 56 74 C60 62 52 50 40 50 Z'/%3E%3Ccircle cx='22' cy='42' r='7'/%3E%3Ccircle cx='34' cy='33' r='7.5'/%3E%3Ccircle cx='49' cy='35' r='7.5'/%3E%3Ccircle cx='60' cy='45' r='7'/%3E%3Cpath d='M130 130 C118 130 110 142 114 154 C118 164 142 164 146 154 C150 142 142 130 130 130 Z'/%3E%3Ccircle cx='112' cy='122' r='7'/%3E%3Ccircle cx='124' cy='113' r='7.5'/%3E%3Ccircle cx='139' cy='115' r='7.5'/%3E%3Ccircle cx='150' cy='125' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

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

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Faster One-by-One Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Super Fast Staggered One-By-One Incremental Delays */
.stagger-reveal .reveal:nth-child(1) { transition-delay: 0.04s; }
.stagger-reveal .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger-reveal .reveal:nth-child(3) { transition-delay: 0.12s; }
.stagger-reveal .reveal:nth-child(4) { transition-delay: 0.16s; }
.stagger-reveal .reveal:nth-child(5) { transition-delay: 0.20s; }
.stagger-reveal .reveal:nth-child(6) { transition-delay: 0.24s; }
.stagger-reveal .reveal:nth-child(7) { transition-delay: 0.28s; }
.stagger-reveal .reveal:nth-child(8) { transition-delay: 0.32s; }

/* 3-Park Corridor Showcase Grid */
.parks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.park-card {
  background: linear-gradient(160deg, rgba(20, 36, 26, 0.85) 0%, rgba(11, 22, 16, 0.95) 100%);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 155, 38, 0.3);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.park-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(217, 155, 38, 0.25);
}

.park-badge-season {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: #0f1412;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

.park-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.park-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.park-card:hover .park-img img {
  transform: scale(1.1);
}

.park-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.park-body h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #fff;
}

.park-body .park-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

/* 3 Places Safari Locations & Highlighted Animals Styles */
.location-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.location-card {
  background: linear-gradient(160deg, rgba(20, 36, 26, 0.85) 0%, rgba(11, 22, 16, 0.95) 100%);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 155, 38, 0.3);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(217, 155, 38, 0.3);
}

.location-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

/* Park Card Image Slider Styles */
.location-img-slider {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(15, 20, 18, 0.75);
  color: var(--accent);
  border: 1px solid rgba(217, 155, 38, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: var(--transition);
}

.location-img-slider:hover .slider-nav-btn {
  opacity: 1;
}

.slider-nav-btn:hover {
  background: var(--accent);
  color: #0f1412;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
  max-width: 85%;
  overflow-x: auto;
  padding: 5px 10px;
  background: rgba(15, 20, 18, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  scrollbar-width: none;
}

.slider-dots::-webkit-scrollbar {
  display: none;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--accent);
  width: 18px;
  border-radius: 10px;
}

/* Elephant Gathering Highlighted Banner */
.highlight-banner-box {
  background: linear-gradient(135deg, rgba(24, 38, 30, 0.95) 0%, rgba(11, 41, 26, 0.98) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: 0 0 35px rgba(217, 155, 38, 0.25);
  position: relative;
  overflow: hidden;
  animation: pulseGlow 4s ease-in-out infinite;
}

/* 4 Photos Per Row Showcase Grid */
.home-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .home-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .home-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.home-photo-card {
  position: relative;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(217, 155, 38, 0.25);
  box-shadow: var(--shadow-dark);
  transition: var(--transition);
  cursor: pointer;
}

.home-photo-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(217, 155, 38, 0.25);
}

.home-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-photo-card:hover img {
  transform: scale(1.1);
}

.location-card:hover .location-img-wrapper img {
  transform: scale(1.1);
}

.location-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: #0f1412;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.location-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.location-body h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.location-season {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.location-desc-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.animal-highlight-box {
  background: rgba(11, 41, 26, 0.7);
  border: 1px solid rgba(217, 155, 38, 0.25);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: auto;
}

.animal-highlight-box h4 {
  font-size: 0.92rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.animal-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.animal-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.animal-tag:hover {
  background: rgba(217, 155, 38, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

/* Keyframe Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(217, 155, 38, 0.2); }
  50% { box-shadow: 0 0 30px rgba(217, 155, 38, 0.5); }
}

/* Utilities */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  background: rgba(217, 155, 38, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(217, 155, 38, 0.3);
  transition: var(--transition);
}

.sub-title:hover {
  background: rgba(217, 155, 38, 0.2);
  transform: scale(1.03);
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-desc {
  display: inline-block;
  background: rgba(15, 20, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid rgba(217, 155, 38, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  color: #f0f4f2;
  font-size: 1.02rem;
  max-width: 100%;
  margin-top: 10px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
  transition: var(--transition);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: all 0.6s ease;
}

.btn:hover::before {
  left: 150%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #e8aa38 100%);
  color: #0f1412;
  box-shadow: 0 8px 20px rgba(217, 155, 38, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e8aa38 0%, var(--accent-hover) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(217, 155, 38, 0.5);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px) scale(1.02);
}

/* Header & Sticky Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
  background: rgba(11, 41, 26, 0.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(217, 155, 38, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
  box-shadow: 0 0 15px rgba(217, 155, 38, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 25px rgba(217, 155, 38, 0.75);
}

.logo-text h3 {
  font-size: 1.25rem;
  margin-bottom: 2px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Sub-page Banner Header - 100% Solid Opaque Non-Transparent Dark Background */
.page-banner {
  position: relative;
  z-index: 5;
  padding-top: 150px;
  padding-bottom: 50px;
  background-color: #06120b !important;
  background: #06120b !important;
  text-align: center;
  border-bottom: 2px solid rgba(217, 155, 38, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-banner h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  animation: float 5s ease-in-out infinite;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent);
}

/* Mobile Nav Overlay */
@media (max-width: 991px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: var(--dark-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px 30px;
    gap: 24px;
    transition: var(--transition);
    border-left: 1px solid var(--card-border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-actions {
    display: none;
  }
}

/* Main Hero Section - Solid Non-Transparent Dark Overlay */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, rgba(7, 20, 12, 0.75) 0%, rgba(7, 20, 12, 0.92) 100%),
              url('images/hero.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-content {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 41, 26, 0.85);
  border: 1px solid rgba(217, 155, 38, 0.4);
  padding: 8px 18px;
  border-radius: 30px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.8rem;
  }
}

.hero-title span {
  color: #f0b830;
  -webkit-text-fill-color: #f0b830;
  background: none;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(15, 20, 18, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(217, 155, 38, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 36px;
  max-width: 680px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: rgba(24, 34, 28, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--radius-md);
  max-width: 620px;
  animation: pulseGlow 4s ease-in-out infinite;
}

@media (min-width: 576px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item h4 {
  font-size: 2.2rem;
  color: #f0b830;
  margin-bottom: 2px;
  font-family: var(--font-heading);
  font-weight: 800;
  display: inline-block;
  transition: transform 0.3s ease;
}

.stat-item:hover h4 {
  transform: scale(1.12);
}

.stat-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Mobile & Tablet Responsive Optimization for Header & Hero Section */
@media (max-width: 991px) {
  .header {
    padding: 10px 0 !important;
  }

  .nav-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    margin-right: 25px !important;
  }

  .brand-logo-img {
    width: 48px !important;
    height: 48px !important;
    border-width: 2px !important;
    flex-shrink: 0 !important;
  }

  .logo-text {
    text-align: left !important;
  }

  .logo-text h3 {
    font-size: 1.15rem !important;
    line-height: 1.15 !important;
  }

  .logo-text span {
    font-size: 0.58rem !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap !important;
  }

  .mobile-toggle {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    flex-shrink: 0 !important;
    padding-left: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 135px !important;
    padding-bottom: 50px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-badge {
    font-size: 0.78rem !important;
    padding: 8px 16px !important;
    margin-bottom: 20px !important;
    max-width: 100%;
    justify-content: center;
    background: rgba(7, 20, 12, 0.95) !important;
    border: 1.5px solid var(--accent) !important;
    color: #f0b830 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6) !important;
  }

  .floating-whatsapp {
    bottom: 100px !important;
    right: 20px !important;
    width: 52px !important;
    height: 52px !important;
    font-size: 1.7rem !important;
  }

  .floating-review-btn {
    bottom: 162px !important;
    right: 20px !important;
    left: auto !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    font-size: 0.82rem !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7) !important;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 35px;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.95rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px 10px;
    margin: 0 auto;
  }

  .stat-item h4 {
    font-size: 1.5rem;
  }

  .stat-item p {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 1.85rem;
  }
  
  .hero-stats {
    padding: 12px 8px;
    gap: 6px;
  }
  
  .stat-item h4 {
    font-size: 1.35rem;
  }

  .stat-item p {
    font-size: 0.68rem;
    line-height: 1.2;
  }
}

/* Quick Bar Highlights */
.quick-bar {
  background: var(--dark-surface);
  border-top: 1px solid rgba(217, 155, 38, 0.15);
  border-bottom: 1px solid rgba(217, 155, 38, 0.15);
  padding: 30px 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(145deg, rgba(20, 36, 26, 0.75) 0%, rgba(12, 24, 17, 0.85) 100%);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(217, 155, 38, 0.2);
  transition: var(--transition);
}

.quick-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 155, 38, 0.4);
  background: rgba(217, 155, 38, 0.05);
}

.quick-icon {
  width: 48px;
  height: 48px;
  background: rgba(217, 155, 38, 0.12);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quick-card:hover .quick-icon {
  transform: scale(1.15) rotate(6deg);
}

.quick-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.quick-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Larger Benefit Cards - Benefits of Choosing Suresh Safari */
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 34px 28px;
  background: linear-gradient(155deg, rgba(20, 36, 26, 0.85) 0%, rgba(10, 22, 16, 0.92) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 155, 38, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(217, 155, 38, 0.25);
  background: linear-gradient(155deg, rgba(26, 48, 33, 0.92) 0%, rgba(14, 28, 20, 0.96) 100%);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: rgba(217, 155, 38, 0.15);
  color: var(--accent);
  border: 1px solid rgba(217, 155, 38, 0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease, color 0.35s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.12) rotate(6deg);
  background: var(--accent);
  color: #0f1412;
}

.benefit-info h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.benefit-info p {
  font-size: 0.96rem;
  color: rgba(240, 244, 242, 0.85);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .benefit-card {
    padding: 24px 20px;
    gap: 16px;
  }

  .benefit-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    border-radius: 12px;
  }

  .benefit-info h4 {
    font-size: 1.1rem;
  }

  .benefit-info p {
    font-size: 0.88rem;
  }
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content {
  background: rgba(15, 20, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 35px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 155, 38, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .about-content {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 2px solid rgba(217, 155, 38, 0.2);
  transition: var(--transition);
}

.about-img-box:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.about-img-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-img-box:hover img {
  transform: scale(1.06);
}

.about-badge-card {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(11, 41, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4.5s ease-in-out infinite;
}

@media (max-width: 767px) {
  .highlight-banner-box {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }

  .highlight-banner-box .section-title {
    font-size: 1.8rem !important;
    line-height: 1.25;
  }

  .about-img-box img {
    height: 240px;
    object-fit: cover;
  }

  .about-badge-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -30px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 12px 16px;
    gap: 12px;
    z-index: 2;
  }

  .badge-avatar {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .badge-info h5 {
    font-size: 0.88rem;
  }

  .badge-info p {
    font-size: 0.72rem;
  }
}

.badge-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
}

.badge-info h5 {
  font-size: 1rem;
  color: #fff;
}

/* Map Container & Mobile Pin Overlay Styles */
.map-container-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-dark);
  height: 480px;
}

.map-pin-button-wrapper {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  max-width: calc(100% - 40px);
}

.map-pin-btn {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 12px 22px;
  font-size: 0.92rem;
}

@media (max-width: 767px) {
  .map-container-box {
    height: 340px;
    border-radius: var(--radius-md);
  }

  .map-pin-button-wrapper {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 15px auto 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .map-pin-btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

.about-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.feature-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: transform 0.3s ease;
}

.feature-check:hover {
  transform: translateX(5px);
}

.feature-check i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Tour Packages Section */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.package-card {
  background: var(--dark-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: rgba(217, 155, 38, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.package-card.popular {
  border: 2px solid var(--accent);
}

.popular-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #0f1412;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: pulseGlow 3s infinite;
}

.package-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.package-card:hover .package-img img {
  transform: scale(1.1);
}

.package-overlay-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(15, 20, 18, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--accent);
  border: 1px solid rgba(217, 155, 38, 0.3);
}

.package-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.package-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.package-inclusions {
  list-style: none;
  margin-bottom: 30px;
}

.package-inclusions li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.package-inclusions li:hover {
  transform: translateX(4px);
}

.package-inclusions li i {
  color: var(--accent);
}

.package-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.package-price span {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
}

/* Interactive Calculator Box */
.calc-wrapper {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(11, 41, 26, 0.9) 0%, rgba(24, 34, 28, 0.95) 100%);
  border: 1px solid rgba(217, 155, 38, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-dark);
  transition: var(--transition);
}

.calc-wrapper:hover {
  border-color: var(--accent);
}

.calc-title {
  text-align: center;
  margin-bottom: 30px;
}

.calc-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  background: rgba(6, 14, 10, 0.96);
  border: 1px solid rgba(217, 155, 38, 0.3);
  border-radius: 10px;
  padding: 14px 16px;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 155, 38, 0.25);
  transform: translateY(-2px);
}

.calc-action {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 15px;
}

/* Reviews And Gallery Section */
.gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--accent);
  color: #0f1412;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark-surface);
  transition: var(--transition);
  opacity: 1 !important;
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 40px;
  }

  .gallery-item {
    height: 165px;
    border-radius: var(--radius-sm);
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 18, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-info p {
  font-size: 0.8rem;
  color: var(--accent);
}

/* Safari Video Card Styles - Uncropped Display */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.video-card {
  background: var(--dark-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 155, 38, 0.3);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(217, 155, 38, 0.2);
}

.video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-info-box {
  padding: 20px;
  margin-top: auto;
}

.video-info-box h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #fff;
}

.video-info-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Reviews Cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(217, 155, 38, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.review-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-quote {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.author-details h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.author-details span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Contact Us Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: linear-gradient(155deg, rgba(16, 28, 20, 0.96) 0%, rgba(10, 20, 14, 0.98) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(217, 155, 38, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--accent);
  background: linear-gradient(155deg, rgba(22, 38, 27, 0.98) 0%, rgba(12, 24, 17, 0.99) 100%);
  transform: translateX(6px);
  box-shadow: 0 15px 35px rgba(217, 155, 38, 0.25);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(217, 155, 38, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card:hover .contact-icon {
  transform: scale(1.15) rotate(6deg);
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-details p, .contact-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.contact-details a:hover {
  color: var(--accent);
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-btn-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main) !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  width: fit-content;
  transition: var(--transition);
}

.phone-btn-chip:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  background: rgba(217, 155, 38, 0.15);
  transform: translateX(4px);
}

/* Map Card CTA */
.map-card-link {
  display: block;
  background: linear-gradient(145deg, rgba(18, 32, 23, 0.96) 0%, rgba(10, 20, 14, 0.98) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.map-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(217, 155, 38, 0.35);
}

.map-card-link i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.map-card-link h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.map-card-link p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* Form Container */
.contact-form-box {
  background: linear-gradient(155deg, rgba(16, 28, 20, 0.96) 0%, rgba(10, 20, 14, 0.98) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(217, 155, 38, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.contact-form-box:hover {
  border-color: var(--accent);
}

.contact-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-box p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.15) rotate(10deg);
  background-color: var(--whatsapp-hover);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Floating Review Action Button (Stacked Directly Above WhatsApp Button) */
.floating-review-btn {
  position: fixed;
  bottom: 98px;
  right: 25px;
  z-index: 9999;
  background: rgba(7, 20, 12, 0.95);
  border: 1.5px solid #f0b830;
  border-radius: 50px;
  padding: 10px 20px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(240, 184, 48, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: pulse-gold 2.5s infinite;
  font-family: inherit;
}

.floating-review-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: #0a1f13;
  border-color: #ffd700;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(240, 184, 48, 0.6);
  color: #ffffff;
}

.floating-review-btn i {
  font-size: 1.2rem;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 184, 48, 0.7), 0 10px 25px rgba(0, 0, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(240, 184, 48, 0), 0 10px 25px rgba(0, 0, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(240, 184, 48, 0), 0 10px 25px rgba(0, 0, 0, 0.6);
  }
}

/* Review Submission Popup Modal */
.review-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-modal.active {
  display: flex;
  opacity: 1;
}

.review-modal-content {
  background: rgba(16, 28, 20, 0.98);
  border: 1.5px solid var(--accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(240, 184, 48, 0.2);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  padding: 28px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.review-modal.active .review-modal-content {
  transform: scale(1);
}

.review-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.review-modal-close:hover {
  color: #ff4d4d;
}

.review-modal-header {
  text-align: center;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.lightbox-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 2px solid var(--accent);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent);
  transform: scale(1.2) rotate(90deg);
}

/* Footer - 100% Solid Non-Transparent Dark Emerald Background */
.footer {
  position: relative;
  z-index: 10;
  background-color: #040a06 !important;
  background: #040a06 !important;
  border-top: 2px solid rgba(217, 155, 38, 0.3);
  padding: 70px 0 30px 0;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-col:hover h4::after {
  width: 60px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
