

* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Montserrat', 'Arial', sans-serif; }


    
/* ====== FLOATING DOTS — TINY, SHINY, FREE MOVING IN NAVBAR ====== */
.floating-dots-container {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;                  /* fills navbar height */
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-dot {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.7;
  box-shadow: 
    0 0 12px 4px rgba(255, 255, 255, 0.1);
  animation: floatFree linear infinite;
  pointer-events: none;
}

@keyframes floatFree {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(var(--scale));
    opacity: 0.4;
  }
}

/* Mobile — slightly smaller */
@media (max-width: 768px) {
  .floating-dot {
    box-shadow: 
      0 0 4px 1px rgba(255, 255, 255, 0.8),
      0 0 8px 2px rgba(255, 255, 255, 0.4);
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 35px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
}

/* Image inside button */
.whatsapp-icon {
  width: 180%;
  height: 180%;
  object-fit: contain;
}





/* === NAVBAR LINKS – now grey → cyan/blue hover === */
nav a {
  color: #cccccc;                    /* nice clean grey */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.4s ease;
  font-family: 'Montserrat', sans-serif;
}

/* General section spacing — tighter */
section {
  padding: 60px 20px;            /* was 80–100px → now 60px */
  margin: 0;
}



.navbar-wrapper {
  position: sticky;           /* This makes it stick when you scroll */
  top: 0;                     /* Sticks to the very top */
  z-index: 1000;              /* Stays above everything */
  background: rgba(227, 226, 212, 0.826);   /* ← Change this line for any background you want */
  backdrop-filter: blur(5px);        /* Frosted glass effect – looks ultra premium */
  border-bottom: 1px solid rgba(255,255,255,0.08);
  
  transition: all 0.3s ease;
}

/* Make the navbar itself shorter/narrower */
.navbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: -0.9rem 0.1rem;       /* ← This controls the height (was 1rem → now 0.7rem = narrower) */
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  justify-content: space-between;
  color: white;
}

.logo {
      display: flex;
      align-items: center;
      margin-left: 30px;
      gap: 12px;
      font-size: 1.5rem;
      font-weight: bold;
      z-index: 100;
    }

/* NEW: Animated Gradient Title */
.Gtitle {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, 
    #ffeb3b,  /* yellow */
    #8bc34a,  /* lime green */
    #00e676,  /* emerald */

    #ffeb3b   /* yellow again */
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 12s ease infinite;
}

@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Make it even bigger & bolder on desktop */
@media (min-width: 900px) {
  .gradient-title {
    font-size: 1.6rem;
  }
}

/* Optional: make it even thinner on mobile */
@media (max-width: 900px) {
  .navbar {
    padding: 0.6rem 1.5rem;
  }
}





    @keyframes spin { to { transform: rotate(360deg); } }

    /* Desktop menu */
    nav ul {
      display: flex;
      list-style: none;
      gap: 2.5rem;
    }

    nav a {
      color: #adb5bd;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover { color: #f8f9fa; }

    /* Hamburger button - hidden on desktop */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      z-index: 100;
    }

    .hamburger span {
      width: 30px;
      height: 3px;
      background: white;
      border-radius: 3px;
      transition: all 0.3s;
    }

    /* Mobile styles */
    @media (max-width: 900px) {
      .hamburger { display: flex; }

      nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 350px;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
        padding-top: 100px;
      }

      nav.active { right: 0; }

      nav ul {
        flex-direction: column;
        gap: 0;
      }

      nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }

      nav a {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.3rem;
      }

      /* Hamburger to X animation */
      .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
      }
      .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }
      .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
      }
    }



.rotating-logo {
  width: 60px;
  vertical-align: middle;
  margin-right: 10px;
  animation: spin 6s linear infinite;
  transform-style: preserve-3d;
}

@keyframes spin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}


/* ==================== End OF NAv bAr ==================== */
/* ==================== End OF NAv bAr ==================== */
/* ==================== End OF NAv bAr ==================== */
/* ==================== End OF NAv bAr ==================== */
/* ==================== End OF NAv bAr ==================== */
/* ==================== End OF NAv bAr ==================== */
/* ==================== End OF NAv bAr ==================== */







/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: visible;
  background: #ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



/* Dark overlay – keeps text readable */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
 
  z-index: 2;
}




/* THIS IS WHERE YOU CONTROL THE SIZE – change only this number! */
.big5-centered {
  
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 560px;          /* ←←← CHANGE THIS NUMBER ONLY */
  pointer-events: none;  /* so people can still click buttons */
}

.big5-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;        /* optional: nice soft edges */
  
}

/* Make it responsive – never gets too small on phones */
@media (max-width: 1000px) {
  .big5-centered {
    width: 90vw;     /* on small screens = 90% of screen width */
  }
}





/* Optional: subtle zoom on hover/scroll feel */
.hero:hover .hero-background {
  transform: scale(1.12);
}

/* If you still want to keep the <img> tag version (fallback for very old browsers), add this too */
.hero-image {
  display: none; /* we’re using background now, so hide the img */
}



.hero-content {
  position: relative;
  
  top: -20%;
  z-index: 3;
  padding: 0 20px;
  max-width: 900px;
  animation: fadeUp 1.2s ease-out 0.5s forwards;
  opacity: 0;
  margin-top: 100px;             /* ← Pull content up into image */
  transform: translateY(40px);
}



.hero-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 80px auto 0;           /* ← Space from buttons */
  padding: 0 20px;
  position: relative;
  z-index: 4;
}




.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  margin-top: 180px;
  color: #ffff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  -webkit-text-stroke: 0.9px #ffeb3b;     /* ← CHANGE THICKNESS + COLOR HERE */
  color: transparent;                  /* removes the fill → hollow text */
}


.hero-title .line {
  font-family: 'Montserrat', sans-serif;
  display: block;
}

.hero-subtitle {
  position: absolute;            /* ← Takes it out of flow — nothing else moves! */
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  color: #132a13;
  margin-top: 30px;
  font-weight: 400;
  margin-left: 100px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}





.btn-primary, .btn-secondary {
  font-family: 'Montserrat', sans-serif;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: transparent;
  color: #132a13;
  border: 2px solid #90a955;
}

.btn-primary:hover {
  background: white;
  color: #000;
  transform: translateY(-5px);
}

.btn-secondary {
  background: transparent;
  color: #132a13;
  border: 2px solid #90a955;
}

.btn-secondary:hover {
  background: white;
  color: #000;
  transform: translateY(-5px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
.hero-subtitle {
    bottom: -180px;               /* ← Lower on mobile */
    font-size: 1.2rem;
    padding: 0 20px;
    margin-left: 10px;
    
    margin-bottom: 20px;           /* ← Less space below subtitle */
  
  }
  .btn-primary, .btn-secondary { width: 280px; }
}

@media (max-width: 480px) {
  .hero-subtitle {
    bottom: -7%;
    font-size: 1.1rem;
  }

     .big5-centered {
    top: 20%;                      /* ← Pull Big5 image up slightly */
    transform: translate(-50%, -50%);
  }


}



/* Fade-up animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ====== 3 SERVICE CARDS IN HERO — PREMIUM GLASS LOOK ====== */


/* CARDS — SMALLER & TIGHTER */
.service-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 35px 25px;            /* ← SMALLER PADDING */
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.service-card i {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.6rem;
  color: #43291f;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-read-more {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s;
}

.card-read-more:hover {
  background: #ffd700;
  color: #111;
}

/* MOBILE — STACKED UNDER BIG5 IMAGE */
@media (max-width: 992px) {
  .hero {
    height: auto;                  /* ← Removes fixed height */
    min-height: 80vh;              /* ← Smaller on mobile */
    padding-bottom: 60px;          /* ← Less space at bottom */
  }

  .hero-content {
    padding: 0 20px;
    margin-top: -220px;             /* ← MOVE TEXT UP — CHANGE THIS NUMBER */
  }

  

  .hero-service-cards {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 60px auto 0;
    padding: 0 20px;
  }

  .service-card {
    padding: 40px 30px;
  }

  .service-card i {
    font-size: 2.8rem;
  }

  .service-card h3 {
    font-size: 1.8rem;
  }

  .service-card p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-service-cards {
    margin-top: 40px;
  }
}


/* ====== SINGLE ROTATING ALCHEMIST FACT CARD ====== */
.alchemist-fact-section {
  padding: 100px 20px 120px;
  background: linear-gradient(to bottom, transparent, #f8f9fa);
  text-align: center;
}

.alchemist-fact-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.fact-icon {
  font-size: 4rem;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(255,215,0,0.3);
}

.alchemist-fact-card h3 {
  font-size: 2.4rem;
  color: #2c3e50;
  margin-bottom: 50px;
}

.fact-slider {
  min-height: 120px;
  position: relative;
}

.fact-item {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transition: opacity 1s ease;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #34495e;
  font-style: italic;
  padding: 0 20px;
}

.fact-item.active {
  opacity: 1;
  position: relative;
}

.fact-author {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-top: 40px;
  font-weight: 500;
}

.fact-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #bdc3c7;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.dot.active {
  background: #ffd700;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255,215,0,0.6);
}

/* Mobile */
@media (max-width: 768px) {
  .alchemist-fact-card {
    padding: 50px 30px;
  }
  .alchemist-fact-card h3 {
    font-size: 2rem;
  }
  .fact-item {
    font-size: 1.4rem;
  }
}


/* ====================  Journey Box Text Section ==================== */
/* ====================  Journey Box Text Section ==================== */
/* ====================  Journey Box Text Section ==================== */
/* ====================  Journey Box Text Section ==================== */
/* ====================  Journey Box Text Section ==================== */

/* ====== TOUR SECTION — #d0b49f WARM SAND BACKGROUND ====== */
.tour-section {
  background: #ffe6a7;
  padding: 60px 10px;
  position: relative;
}

.tour-section-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}



/* Wrapper for the whole section (drums + text) */



/* Journey Text Box */
.journey-textbox {
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 5px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  margin-top: -10px;           /* << Moves it DOWN beautifully */
  z-index: 10;
  backdrop-filter: blur(6px);
  max-width: 560px;
  width: 100%;                  /* ← ADD THIS */
  margin-left: auto;            /* ← ADD THESE TWO */
  margin-right: auto;           /* ← FOR CENTERING */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}


.journey-textbox:hover {
  transform: scale(1.03);
  box-shadow: 0 0 22px rgba(255, 170, 0, 0.4);
}


/* Title */
.journey-title .glow-text {
  font-size: 2.0rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ff7b00, #ffae00, #ffe500, #ffee00);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}



/* Subtitle — white text */
.journey-subtitle {
  color: #ffffff;
  margin-top: 12px;
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- COSMIC DOTS (inside the box only) ---------- */
.cosmic-dots-container {
  position: absolute;
  inset: 0;                      /* cover whole box */
  pointer-events: none;          /* keep box interactive */
  z-index: 1;                    /* behind text but inside box */
  overflow: hidden;              /* keep dots clipped to box */
}

/* single dot */
.cosmic-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #b7ff9a 20%, #22d32b 55%, rgba(34, 211, 43, 0));
  box-shadow: 0 0 6px rgba(34,211,43,0.9), 0 0 14px rgba(34,211,43,0.25);
  opacity: 0.95;
  transform-origin: center;
  animation: dotFloat linear infinite, dotTwinkle ease-in-out infinite;
}

/* movement and twinkle */
@keyframes dotFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(var(--dx), var(--dy)) scale(1.15); }
}
@keyframes dotTwinkle {
  0%, 100% { opacity: 0.9; filter: blur(0px); }
  50%      { opacity: 0.5; filter: blur(1.5px); transform: scale(0.9); }
}

/* small responsiveness */
@media (max-width: 768px) {
  .journey-textbox { padding: 22px; border-radius: 14px; }
  .journey-title .glow-text { font-size: 1.6rem; }
  .journey-subtitle { font-size: 0.98rem; }
}

@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
    margin-top: 20px;
  }



  .journey-textbox {
    margin-top: 10px;
  }

  .journey-title .glow-text {
    font-size: 1.8rem;
  }
}

/* ====== JOURNEY POEM — GLOWING GREEN-YELLOW PULSE BORDER ====== */
.journey-poem {
  font-size: 1.15rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  color: #ffffff;
  max-width: 800px;
  margin: 30px auto 0;
  padding: 30px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: rgb(22, 22, 22);
  backdrop-filter: blur(8px);
  text-align: center;
  opacity: 0.95;
  position: relative;
  animation: pulseGlow 6s ease-in-out infinite;
}

/* ALIVE PULSING BORDER — GREEN → YELLOW → GREEN */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.4);
    border-color: #2ecc71;
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 223, 0, 0.6);
    border-color: #ffdd00;
  }
  100% {
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.4);
    border-color: #2ecc71;
  }
}

/* Subtle hover lift */
.journey-textbox:hover .journey-poem {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .journey-poem {
    font-size: 1.05rem;
    padding: 24px 20px;
    margin: 24px auto 0;
  }
}








/* ====================  TOUR  ==================== */
/* ====================  TOUR   ==================== */
/* ====================  TOUR   ==================== */
/* ====================  TOUR   ==================== */
/* ====================  TOUR   ==================== */
/* ====================  TOUR   ==================== */

/* === TOUR SECTION === */

/* === TOUR SLIDER === */
.tour-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
  margin-top: 50%;
}


/* === SLIDER WRAPPER === */
/* move the entire slider up a bit (tweak value to taste) */
/* === SMOOTH ARROWS — PERFECTLY CENTERED === */
.tour-slider-wrapper {
  position: relative;           /* ← THIS IS KEY — makes arrows position relative to slider */
  margin: 0 auto 60px;;
  margin-top: 10px; /* change this value to raise/lower the slider */
  overflow: hidden;
  padding: 0 70px;               /* space for arrows */
  border-radius: 20px;
}



/* === GALLERY - 3 CARDS, SMOOTH LOOP === */
/* ensure exact gap and card width match your JS */
.tour-gallery {
  display: flex;
  gap: 30px; /* must match JS gap value */
  padding: 20px 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* container clips overflow so the 4th card is cut off */
.tour-gallery-container {
  overflow: hidden;
  width: 100%;
  max-width: calc(3 * 260px + 2 * 30px); /* 3 cards * cardWidth + 2 gaps */
  margin: 0 auto;
}

/* === CARD LINK - 3 VISIBLE === */
/* ensure tour-card sizing is fixed */
.tour-card-link {
  flex: 0 0 260px;
  max-width: 260px;
}

.tour-card {
  background: white;
  border-radius: 20px;
  min-width: 82%;   /* 3 per row */
  
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
  height: 100%;
  cursor: pointer;
}

.tour-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}


/* === BIGGER IMAGE === */
.tour-image-wrapper {
  position: relative;
  height: 450px; /* BIGGER! Was 220px */
  overflow: hidden;
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform-origin: center center;
}

.tour-card:hover .tour-image {
 
  transform: scale(1.1); /* Slightly zoom in on hover */
}

/* === CLEAN TEXT OVERLAY === */
.tour-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: white;
  padding: 50px 24px 24px;
  text-align: center;
}

.tour-overlay h3 {
  font-size: 1.35rem;
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.tour-info {
  font-size: 0.98rem;
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0.95;
}

/* === TEXT ON IMAGE === */
.tour-content {
  padding: 20px;
  text-align: center;
}

/* === ICONS === */
.icon {
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  filter: brightness(0) invert(1);
}

.calendar-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10z"/></svg>');
}

.location-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}






.more-info-btn {
  background: transparent;
  color: #2ecc71;
  border: 2px solid #2ecc71;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.more-info-btn:hover {
  background: #2ecc71;
  color: white;
}

.tour-content h3,
.tour-content p,
.tour-content button {
  pointer-events: auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  color: #ffffff;
}


/* === SMOOTH ARROWS === */
.slider-arrow {
  position: absolute;
  top: 50%;                     /* ← Center vertically */
  transform: translateY(-50%);  /* ← Perfect vertical alignment */
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.65);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.slider-arrow:hover {
  background: #2ecc71;
  transform: translateY(-50%) scale(1.15);
}

/* POSITION ARROWS NICELY OUTSIDE THE CARDS */
.slider-arrow.left-arrow {
  left: 130px;                   /* ← Closer to cards, not 200px */
}

.slider-arrow.right-arrow {
  right: 130px;                  /* ← Same on right */
}

.arrow-icon {
  width: 22px;
  height: 22px;
  border: solid white;
  border-width: 0 3px 3px 0;
}

.left-arrow .arrow-icon { transform: rotate(135deg); }
.right-arrow .arrow-icon { transform: rotate(-45deg); }




/* === VIEW ALL BUTTON === */

/* CENTER THE VIEW ALL BUTTON PERFECTLY BELOW SLIDER */
.view-all-tours-wrapper {
  top: 10%;              /* space above button */
  text-align: center;            /* centers inline/block children */
  width: 100%;
  margin-top: 50px;              /* ← THIS CONTROLS SPACE ABOVE (from cards) */
  margin-bottom: 80px;           /* ← THIS CONTROLS SPACE BELOW (to next section/image) */
}



/* === VIEW ALL === */
/* OPTIONAL: Make button bigger & more premium */
.view-all-tours-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
  transition: all 0.4s ease;
}

.view-all-tours-btn:hover {
  background: linear-gradient(135deg, #27ae60, #219653);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.45);
}

.view-all-tours-btn:active {
  transform: translateY(-2px);
}

/* ====== FIX TOUR GALLERY LEFT CUT OFF ON MOBILE ====== */
@media (max-width: 992px) {
  .tour-card-link {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .tour-image-wrapper { height: 260px; }
}

@media (max-width: 768px) {
  /* Remove heavy side padding — let container handle it */
  .tour-slider-wrapper {
    padding: 0 20px;               /* ← Reduced — safe space for arrows */
    box-sizing: border-box;
  }

  .tour-gallery-container {
    overflow: hidden;              /* ← CRITICAL: Prevents left cut off */
    border-radius: 20px;           /* ← Optional: nice rounded container */
  }

  .tour-gallery {
    padding-left: 0;
    margin-left: 0;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .arrow-icon {
    width: 16px;
    height: 16px;
  }

  .left-arrow { left: 10px; }
  .right-arrow { right: 10px; }

  .tour-overlay { padding: 40px 18px 18px; }
  .tour-overlay h3 { font-size: 1.25rem; }
}

@media (max-width: 576px) {
  .tour-slider-wrapper {
    padding: 0 10px;               /* ← Minimal padding */
  }

  .tour-card-link {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .tour-image-wrapper {
    height: 320px;                 /* ← Slightly taller for mobile */
  }

  .slider-arrow {
    display: none;                 /* ← Hide arrows on very small screens */
  }
}


/* ====================  Booking Section ==================== */
/* ====================  Booking Section ==================== */
/* ====================  Booking Section ==================== */
/* ====================  Booking Section ==================== */
/* ====================  Booking Section ==================== */
/* ====================  Booking Section ==================== */
/* ====================  Booking Section ==================== */


/* ====== BOOKING SECTION — IMAGE IN HTML + CLEAR FORM ====== */
.booking-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
}

/* FULL BACKGROUND IMAGE (in HTML) */
.booking-bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* DARK OVERLAY — keeps text readable but lets image show through */
.booking-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);     /* ← lighter = more image visible */
  z-index: 2;
}

/* CENTERED FORM */
.booking-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* TRANSPARENT GLASS FORM */
.booking-box {
  background: rgba(255, 255, 255, 0.18);   /* ← VERY transparent */
  backdrop-filter: blur(1px);             /* ← glass effect */
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 20px;
  max-width: 400px; 
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  color: white;
}



.booking-box h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.booking-form label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.booking-form {
  display: flex;
  flex-direction: column;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #2ecc71;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.3);
}


/* ====== BOOK NOW BUTTON WITH FLOATING DOTS ====== */
.book-btn {
  position: relative;            /* ← KEY: dots stay inside button */
  overflow: hidden;              /* ← hides dots that go outside */
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.4s ease;
  width: 100%;
  max-width: 300px;
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(46, 204, 113, 0.5);
}

/* FLOATING DOTS INSIDE BUTTON */
.btn-dot {
  position: absolute;
  background: #f7ee0a;           /* ← CYAN GLOW (you can change to lime #bfff00) */
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
  box-shadow: 0 0 8px #f7ee0a, 0 0 16px #f7ee0a;
  animation: floatBtnDot linear infinite;
}

@keyframes floatBtnDot {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translate(10px, -12px) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-8px, -6px) rotate(180deg);
    opacity: 0.5;
  }
  75% {
    transform: translate(6px, 10px) rotate(270deg);
    opacity: 0.9;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .book-btn {
    font-size: 1.1rem;
    padding: 14px 30px;
  }
}

/* TYPEWRITER TEXT */
.sossusvlei-text {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  z-index: 3;
  white-space: nowrap;
}

/* MOBILE */
@media (max-width: 768px) {
  .booking-box {
    padding: 30px 20px;
  }
  .booking-box h2 { font-size: 1.9rem; }
  .sossusvlei-text { font-size: 1.8rem; top: 10%; }
  .book-btn { font-size: 1.1rem; }
}






/* ====================  Footer Section ==================== */
/* ====================  Footer Section ==================== */
/* ====================  Footer Section ==================== */
/* ====================  Footer Section ==================== */
/* ====================  Footer Section ==================== */
/* ====================  Footer Section ==================== */

/* ====== NEW PREMIUM FOOTER — DARK GOLD ELEGANCE ====== */
.site-footer {
  position: relative;
  background: #0f0f0f;
  color: #ddd;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(255,215,0,0.05), transparent 70%);
  z-index: 0;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* COMPANY HEADER */
.footer-header {
  text-align: center;
  margin-bottom: 80px;
}

.footer-logo-wrapper {
  margin-bottom: 25px;
}

.footer-logo-img {
  height: 80px;
  filter: brightness(1.2);
  transition: transform 0.4s ease;
}

.footer-logo-img:hover {
  transform: scale(1.1);
}

.footer-tagline {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.9;
}

/* MAIN GRID */
.footer-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}

.footer-section h4 {
  font-size: 1.6rem;
  color: #ffd700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

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

.footer-links li {
  margin: 16px 0;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffd700;
  padding-left: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  font-size: 1.1rem;
}

.contact-item i {
  color: #ffd700;
  font-size: 1.3rem;
}

.contact-item a,
.contact-item span {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #ffd700;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,215,0,0.1);
  color: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,215,0,0.3);
}

.social-icon:hover {
  background: #ffd700;
  color: #111;
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 15px 30px rgba(255,215,0,0.4);
}

.social-text {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 10px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  opacity: 0.8;
}

.credits {
  margin-top: 15px;
  font-style: italic;
  font-size: 0.95rem;
}

/* ZEBRAS */
.zebra-left, .zebra-right {
  position: absolute;
  width: 200px;
  bottom: 60px;
  opacity: 0.6;
  transition: all 0.5s ease;
  z-index: 1;
}

.zebra-left {
  left: 5%;
}

.zebra-right {
  right: 5%;
}

.zebra-left:hover, .zebra-right:hover {
  opacity: 1;
  transform: translateY(-20px) rotate(10deg);
}

/* Mobile */
@media (max-width: 992px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .social-section {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 100px 20px 80px;
  }
  .footer-header {
    margin-bottom: 60px;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-item {
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
  }
  .zebra-left, .zebra-right {
    width: 140px;
    bottom: 40px;
  }
}

/* ====================  Footer Section ==================== */
/* ====================  Footer Section ==================== */
/* ====================  Footer Section ==================== */
/* ====================  Footer Section ==================== */
/* ====================  Footer Section ==================== */
/* ====================  Footer Section ==================== */



/* ============================================= */
/* ========== === ABOUT US SECTION ===  ========== */
/* ============================================= */

.about-hero {
    position: relative;
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.6)
    ),
    url('images/namibia-landscape.jpg');
    background-size: cover;
    background-position: center;
   
    overflow: hidden;
}

/* HERO TEXT */
.about-hero-text {
    position: relative;
    z-index: 3;
}

.about-hero-text h1 {
    font-size: 3rem;
    margin: 0;

}

.story-text h2{
    color: #adb5bd !important;
}

.about-values h2{
  color: #adb5bd !important;
}

.about-hero-text p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 20px auto;
    opacity: 0.95;
}

/* ====== GREEN FLOATING DOTS — SUBTLE & ALIVE ====== */
/* ====== LIME GREEN FREELY FLOATING DOTS ====== */
.lime-floating-dots {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.lime-dot {
  position: absolute;
  background: #bfff00;           /* ← LIME GREEN */
  border-radius: 50%;
  box-shadow: 0 0 15px #bfff00, 0 0 30px #bfff00;
  opacity: 0.7;
  pointer-events: none;
}

@keyframes floatFree {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(var(--dx), var(--dy));
  }
}

/* LEFT & RIGHT RHINOS */
.rhino {
    position: absolute;
    width: 260px;
    height: auto;
    z-index: 2;
    opacity: 0.9;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
    transition: transform 0.4s ease;
}

.rhino-left {
    left: -40px;   /* FAR LEFT */
    top: 10px;
    bottom: 0;
}

.rhino-right {
    right: -40px;  /* FAR RIGHT */
    top: 10px;
    bottom: 0;
}

.rhino:hover {
    transform: scale(1.05);
}

/* 🔥 THE BLACK/GOLD TYPEWRITER BOX */
.rhino-text {
  position: relative;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.85);
  color: #ffd700;
  padding: 18px 28px;
  border-radius: 15px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 3;
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  min-width: 380px;
  max-width: 600px;
}

.rhino-subtext {
    margin-top: 25px;
    font-size: 1.9rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* Mobile fixes */
@media (max-width: 768px) {

    .rhino {
        width: 150px;
        opacity: 0.6;
    }

    .rhino-left { left: -10px; }
    .rhino-right { right: -10px; }

    .rhino-text {
        min-width: 260px;
        font-size: 1rem;
        padding: 12px 18px;
    }
}

/* About -> Main content grid (replaces inline styles) */
/* ====== MAIN ABOUT CONTENT ====== */
.about-main {
  padding: 100px 20px;
  background: #f8f9fa;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 100px;
}

.story-text h2 {
  font-size: 2.8rem;
  color: #2ecc71;
  margin-bottom: 30px;
}

.story-text p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 24px;
}

.story-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.about-values {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-values h2 {
  font-size: 2.8rem;
  color: #2ecc71;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.value-card {
  background: white;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.value-card i {
  font-size: 3.5rem;
  color: #2ecc71;
  margin-bottom: 25px;
}

.value-card h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

.value-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 992px){
  .about-story {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }}

@media (max-width: 768px) {
  .about-hero-content h1 { font-size: 2.8rem; }
  .about-hero-content p { font-size: 1.3rem; }
  .typewriter-text { font-size: 1.5rem; }
  .rhino-subtext { font-size: 1.1rem; }
  .about-story h2, .about-values h2 { font-size: 2.2rem; }
  .value-card { padding: 40px 20px; }
}

/* ============================================================= */
/* DONATION SECTION WITH SIDE IMAGES — CLEAN & REUSABLE         */
/* ============================================================= */

.donation-section {
  background: #f8f9fa;          /* ← Fixed: was #f8f9a */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}




.donation-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  
}

.donation-section h3 {
  font-size: 1.9rem;
  color: #2ecc71;
  margin-bottom: 16px;
 
}

.donation-section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px;
 
}

.donate-btn {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(46,204,113,0.35);
  display: inline-block;
  transition: all 0.3s ease;
  
}

.donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(46,204,113,0.45);
}

.donation-note {
  font-size: 0.95rem;
  color: #777;
  margin-top: 20px;
}

/* SIDE FLOATING IMAGES — YOU CONTROL POSITION HERE */
.donation-side-image {
  position: absolute;
  pointer-events: auto;
  z-index: 1;
  opacity: 1;
  cursor: pointer;
}

.donation-side-image.left-side {
  width: 220px;
  top: 60%;               /* ← move up/down */
  left: 10%;               /* ← move left/right */
  transform: translateY(-50%) rotate(-12deg);
}



.donation-side-image.right-side,
.owl-hover-sound {
  width: 260px;
  top: 40%;               /* ← move up/down */
  right: 10%;              /* ← move left/right */
  transform: translateY(-50%) rotate(8deg);
}

/* Hide side images on tablets & phones */
@media (max-width: 992px) {
  .donation-side-image { display: none; }
}


/* BUSHBABY — jumps & spins when YOU hover over it */
.donation-side-image.left-side:hover {
  opacity: 1;
  transform: translateY(-50%) rotate(5deg) scale(1.2);
  
  animation: bushbabyJump 0.9s ease-out;
}

@keyframes bushbabyJump {
  0%    { transform: translateY(-50%) rotate(-12deg) scale(1); }
  50%   { transform: translateY(-90%) rotate(10deg) scale(1.25); }
  100%  { transform: translateY(-70%) rotate(5deg) scale(1.2); }
}

/* BIRD — flies forward + glows when YOU hover over it */
.donation-side-image.right-side:hover,
.owl-hover-sound:hover {
  opacity: 1;
  transform: translateY(-50%) rotate(15deg) translateX(-30px) scale(1.18);
 
  animation: birdFly 1s ease-out;
}

@keyframes birdFly {
  0%   { transform: translateY(-50%) rotate(8deg) translateX(0); }
  60%  { transform: translateY(-50%) rotate(20deg) translateX(-50px) scale(1.25); }
  100% { transform: translateY(-50%) rotate(15deg) translateX(-30px) scale(1.18); }
}

/* Keep them subtle when not hovered */
.donation-side-image:not(:hover) {
  filter: none;
}








/* Responsive: stack columns on small screens and keep text centered */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr; /* stack */
    gap: 30px;
  }

  .about-text {
    padding: 0 12px;
  }

  .about-image img {
    max-width: 100%;
  }
}



/* ============================================= */
/* ========== NAV BAR STYLES for all Tours Page (SHARED) ========== */
/* ============================================= */

/* tours.css — PURE HTML, NO JS */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;           /* ← NARROWER CENTER */
  margin: 0 auto;              /* ← CENTERED */
  padding: 0 20px;
  justify-content: center;    /* ← EXTRA CENTER */
}

.tour-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}



.tour-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.3) inset;
  z-index: 10;
}




.tour-full-image {
  width: 100%;
  height: 420px;                 /* ← YOU CONTROL THIS */
  object-fit: cover;           /* ← SHOWS FULL IMAGE */
  background: none;          /* ← Light background for padding */
  padding: 0;                 /* ← Creates "frame" */
  box-sizing: border-box;
  
  border-radius: 20px 20px 0 0;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}

.tour-item:hover .tour-full-image {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.3) inset;
  background: #fff;
}

/* OVERLAY */
.tour-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 60px 20px 20px;
  text-align: center;
  transition: background 0.4s ease;
}

.tour-item:hover .tour-overlay {
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.tour-overlay h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.tour-details {
  padding: 24px;
  text-align: center;
}

.tour-details h3 {
  font-size: 1.45rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}



.tour-info-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  margin: 6px 0;
  opacity: 0.95;
}

.tour-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2ecc71;
  margin: 10px 0 14px;
}

.tour-info-row .icon {
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  filter: brightness(0) invert(0.5);
  margin-right: 6px;
}

.calendar-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23555"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10z"/></svg>');
}

.location-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23555"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}


/* Button Pulse on Hover */
.more-info-btn {
  background: transparent;
  color: #2ecc71;
  border: 2px solid #2ecc71;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.more-info-btn:hover {
  background: #2ecc71;
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.6);
}

.more-info-btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.more-info-btn:active::after {
  width: 200px;
  height: 200px;
  opacity: 0;
  transition: 0s;
}

/* === LOAD MORE BUTTON — GRADIENT GREEN === */
.load-more-btn {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.load-more-btn:hover {
  background: linear-gradient(135deg, #27ae60, #219653);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(46, 204, 113, 0.45);
}

.load-more-btn:active {
  transform: translateY(-2px);
}

/* Ripple effect */
.load-more-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.load-more-btn:active::before {
  width: 300px;
  height: 300px;
  opacity: 0;
  transition: 0s;
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .tour-full-image { height: 220px; }
}

@media (max-width: 768px) {
  .tours-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
  .tour-full-image { height: 200px; }
  .tour-info-row { flex-direction: column; gap: 6px; }
}

/* ==================== Swakopmund Page ===============================================================*/
/* ==================== Swakopmund Page =============*/
/* ==================== Swakopmund Page =============*/
/* ==================== Swakopmund Page =============*/
/* ==================== Swakopmund Page =============*/
/* ==================== Swakopmund Page =============*/
/* ==================== Swakopmund Page =============*/
/* ==================== Swakopmund Page =============*/
/* ==================== Swakopmund Page =============*/

/* ====== TOUR DETAIL PAGE STYLES ====== */
.tour-detail-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.tour-bground {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/Swakop1.jpg') center/cover no-repeat;
  z-index: 1;
}

.tour-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.tour-detail-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.tour-detail-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-top: -220px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.glitch-heading-wrapper {
  text-align: center;
  margin-top: -40px;
}

.gradient-glitch {
  background: linear-gradient(
    120deg,
    #004b23,   /* neon green */
    #00b4d8,   /* sky blue */
    #007200,   /* emerald green */
    #008000    /* lime green */
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientFlow 8s ease infinite;

  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  position: relative;
}

.glitch-heading:hover {
  animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
  0% {
    text-shadow:
      2px 0 #0077b6,
     -2px 0 #008000;
  }
  20% {
    text-shadow:
     -2px 0 #0077b6,
      2px 0 #008000;
  }
  40% {
    text-shadow:
      2px 2px #008000,
     -2px -2px #0077b6;
  }
  100% {
    text-shadow: none;
  }
}


/* ITINERARY SECTION */
.tour-itinerary {
  background: rgba(255,255,255,0.95);
  padding: 60px 40px;
  margin: -100px auto 0;
  max-width: 1100px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  position: relative;
  z-index: 4;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.highlight-card {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 16px;
}

.highlight-card i {
  font-size: 2.5rem;
  color: #2ecc71;
  margin-bottom: 15px;
}

/* GALLERY SLIDER — FIXED NO PEEKING */
.gallery-slider {
  margin: 60px 0;
  text-align: center;
}

.gallery-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-images {
  display: flex;
  width: 100%;
  height: 500px;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  flex-basis: 100%;
}

.gallery-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gallery-dots span {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dots span.active {
  background: #2ecc71;
  transform: scale(1.3);
}

.book-now-cta {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
}

/* MOBILE */
@media (max-width: 768px) {
  .tour-detail-title { font-size: 2.2rem; }
  .tour-itinerary { padding: 40px 20px; margin-top: -60px; }
  .gallery-images { height: 350px; }
}

/* GALLERY ARROWS — CLEAN & MATCH YOUR STYLE */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.gallery-arrow:hover {
  background: #2ecc71;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.6);
}

.gallery-arrow.left-arrow {
  left: 20px;
}

.gallery-arrow.right-arrow {
  right: 20px;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
}

.left-arrow .arrow-icon {
  transform: rotate(135deg);
}

.right-arrow .arrow-icon {
  transform: rotate(-45deg);
}

/* Mobile — slightly smaller */
@media (max-width: 768px) {
  .gallery-arrow {
    width: 44px;
    height: 44px;
  }
  .arrow-icon {
    width: 18px;
    height: 18px;
  }
  .gallery-arrow.left-arrow { left: 10px; }
  .gallery-arrow.right-arrow { right: 10px; }
}

/* ====== TOUR BOOKING FORM — PREMIUM GLASS EFFECT ====== */
.tour-booking-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.tour-booking-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/AirportTransfer.png') center/cover no-repeat; /* ← ADD YOUR IMAGE HERE LATER */
  z-index: 1;
}

.tour-booking-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.tour-booking-form {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(1px);          /* ← PREMIUM GLASS BLUR — CHANGE THIS FOR MORE/LESS */
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
}

.tour-booking-form h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffd700;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.booking-subtitle {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.booking-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

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

.form-group label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff !important;
}



.form-group input,
.form-group textarea {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 14px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* ====== TERMS CHECKBOX — INLINE, CHECKBOX NEXT TO TEXT ====== */
.terms-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;                     /* ← Space between checkbox and text */
  margin: 50px 0 20px; 
  font-size: 1rem;
  text-align: center;
  flex-wrap: wrap;               /* ← Wraps nicely on small mobile */
  
}

.terms-checkbox input[type="checkbox"] {
  width: 13px;
  height: 13px;
  cursor: pointer;
  accent-color: #ffd700;         /* ← Gold checkbox color */
  flex-shrink: 0;
}

.terms-checkbox a {
  color: #ffd700;
  text-decoration: underline;
}

.terms-checkbox a:hover {
  color: #fff;
}



.booking-submit-btn {
  background: linear-gradient(135deg, #ffd700, #f39c12);
  color: #111;
  border: none;
  padding: 20px 60px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0;
  display: block;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

.booking-submit-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,215,0,0.6);
}

.booking-note {
  font-size: 1.1rem;
  margin-top: 30px;
  opacity: 0.9;
  font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
  .tour-booking-form {
    padding: 50px 30px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .tour-booking-form h2 {
    font-size: 2.5rem;
  }
}


/* ====== PRICING SECTION ====== */
.tour-pricing {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.tour-pricing h2 {
  font-size: 2.4rem;
  color: #2ecc71;
  margin-bottom: 16px;
}

.pricing-note {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.4s ease;
}

.price-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.price-card h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

.price {
  margin: 20px 0;
}

.currency {
  font-size: 1.4rem;
  color: #2ecc71;
  font-weight: 700;
}

.amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #2ecc71;
}

.per {
  display: block;
  font-size: 1rem;
  color: #666;
  margin-top: 8px;
}

.included {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.included li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.included li::before {
  content: "✓";
  color: #2ecc71;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.price-btn {
  display: block;
  background: #2ecc71;
  color: white;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.price-btn:hover {
  background: #27ae60;
  transform: translateY(-3px);
}

/* Badges */
.discount-badge, .premium-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #e74c3c;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}

.premium-badge {
  background: #f39c12;
}

.pricing-footer {
  margin-top: 40px;
  font-size: 1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .tour-pricing { padding: 60px 20px; }
  .price-card { padding: 30px 20px; }
  .amount { font-size: 3rem; }
}


.tour-bgDesert {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/Swakop1.jpg') center/cover no-repeat;
  z-index: 1;
}

.tour-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/sos1.jpg') center/cover no-repeat;
  z-index: 1;
}

.tour-ethosha {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/Simba.png') center/cover no-repeat;
  z-index: 1;
}



.tour-riverc {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/cloudycanyon.png') center/cover no-repeat;
  z-index: 1;
}



.tour-sandwich {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/SandwichHabour.png') center/cover no-repeat;
  z-index: 1;
}


.tour-cityofmanyfaces {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/CityOfManyFaces.png') center/cover no-repeat;
  z-index: 1;
}



.airport {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/AirportLanding.png') center/cover no-repeat;
  z-index: 1;
}

/* ====== Airport Transfer Page ====== */
/* ====== Airport Transfer Page ====== */
/* ====== Airport Transfer Page ====== */
/* ====== Airport Transfer Page ====== */
/* ====== Airport Transfer Page ====== */
/* ====== Airport Transfer Page ====== */
/* ====== Airport Transfer Page ====== */

/* ====== AIRPORT TRANSFER FORM — PREMIUM GLASS LOOK ====== */
.transfer-form-section {
  position: relative;
  padding: 100px 20px;
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('images/AirportTransfer.png') center/cover no-repeat fixed; /* ← ADD YOUR BACKGROUND IMAGE */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.transfer-form {
  position: relative;
  z-index: 3;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(1px);          /* ← PREMIUM GLASS EFFECT */
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
}

.container h2{
  color:#ffffff;
  text-align:center;
}

.transfer-form h2 {
  font-size: 2.8rem;
  color: #ffd700;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.transfer-form p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* ====== AIRPORT TRANSFER FORM — UNIQUE STYLES (NO CONFLICT) ====== */
/* UNIQUE FORM GROUPS */
.transfer-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  text-align: left;
}

.transfer-form-group label {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffd700;                /* GOLD LABELS */
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.transfer-form-group input,
.transfer-form-group textarea {
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.18);
  color: white;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: all 0.4s ease;
}


.transfer-form-group input:focus,
.transfer-form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.transfer-form-group input::placeholder,
.transfer-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.transfer-form-group input::placeholder,
.transfer-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.transfer-form-group input[type="number"] {
  width: 120px;                  /* ← NARROWER WIDTH */
  padding: 12px 10px;            /* ← LESS PADDING = SMALLER HEIGHT */
  font-size: 1rem;
  text-align: center;            /* ← Numbers centered nicely */
}

/* GRID FOR TWO COLUMNS */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

/* CALCULATE BUTTON */
.calculate-btn {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  border: none;
  padding: 20px 60px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  margin: 20px auto 0;
  display: block;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.calculate-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(46, 204, 113, 0.6);
}

/* COST RESULT */
.cost-result {
  margin-top: 50px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.total-cost-large {
  font-size: 3.2rem;
  color: white;
  font-weight: 900;
  margin: 30px 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* Tighten the whole summary */
.cost-summary {
  margin-bottom: 10px;   /* ← Less space below */
}

.total-cost-large strong {
  color: #ffd700;
  font-size: 1.8rem;
}

/* SUBMIT BUTTON */
.submit-btn {
  background: linear-gradient(135deg, #ffd700, #f39c12);
  color: #111;
  border: none;
  padding: 20px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  margin-top: 30px;
  transition: 0.4s;
}

.price-note {
  font-size: 1.9rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin-top: -5px;
  font-style: italic;
}

.terms-checkbox {
  display: block;
  margin: 10px 0;
  font-size: 0.95rem;
}





.hidden {
  display: none;
}

.submit-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,215,0,0.5);
}

/* Mobile */
@media (max-width: 768px) {
  .transfer-form {
    padding: 50px 30px;
    max-width: 90%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .transfer-form-section {
    padding: 80px 20px;
  }
}





/* ====== DONATION PAGE — MODERN BLACK PREMIUM ====== */
/* ====== DONATION PAGE — MODERN BLACK PREMIUM ====== */
/* ====== DONATION PAGE — MODERN BLACK PREMIUM ====== */
/* ====== DONATION PAGE — MODERN BLACK PREMIUM ====== */
/* ====== DONATION PAGE — MODERN BLACK PREMIUM ====== */
/* ====== DONATION PAGE — MODERN BLACK PREMIUM ====== */
.donation-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('images/donation-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}


.donation-edge-image {
  position: absolute;
  height: 90%;                   /* ← Slightly shorter on mobile */
  width: auto;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.85;
  transition: transform 0.8s ease;
  z-index: 1;
}





    .donation-hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.6);
    }

    .donation-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .donation-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    }

    .donation-hero p {
      font-size: 1.5rem;
      color: #fff;
      opacity: 0.9;
      margin-bottom: 40px;
    }

    .donation-main {
      padding: 100px 20px;
      background: #111;
    }

    .donation-uses {
      max-width: 1200px;
      margin: 0 auto 80px;
      text-align: center;
    }

    .donation-uses h2 {
      font-size: 2.8rem;
      margin-bottom: 60px;
      color: #ffd700; /* Gold accent */
    }

    .uses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }

    .use-card {
      background: #222;
      padding: 40px 30px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.3);
      transition: all 0.4s ease;
      border: 1px solid #ffd700;
    }

    .use-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 25px 60px rgba(255,215,0,0.2);
    }

    .use-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 16px;
      margin-bottom: 25px;
    }

    .use-card h3 {
      font-size: 1.8rem;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .use-card p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #ddd;
    }

    .donation-form-section {
      max-width: 700px;
      margin: 0 auto;
      background: #222;
      padding: 60px;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

.donate-form-group {
  margin-bottom: 30px;
}

.donate-form-group label {
  display: block;
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 10px;
}

.donate-form-group input,
.donate-form-group select {
  width: 100%;
  padding: 16px;
  border: 1px solid #444;
  background: #333;
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
}

.donate-submit-btn {
  background: linear-gradient(135deg, #ffd700, #f39c12);
  color: #111;
  border: none;
  padding: 18px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  margin-top: 30px;
  transition: 0.4s;
}

.donate-submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255,215,0,0.4);
}

.donate-transparency-note {
  font-size: 1rem;
  color: #ddd;
  margin-top: 40px;
  line-height: 1.7;
  text-align: center;
}

    .donation-form-section h2 {
      font-size: 2.4rem;
      color: #ffd700;
      margin-bottom: 40px;
      text-align: center;
    }







    .crypto-wallet {
      background: #333;
      padding: 20px;
      border-radius: 12px;
      margin: 20px 0;
      text-align: center;
      cursor: pointer;
    }

    .crypto-wallet p {
      margin: 10px 0;
      font-size: 1.05rem;
      color: #ddd;
      word-break: break-all;
    }

    .submit-btn {
      background: linear-gradient(135deg, #ffd700, #f1c40f);
      color: #111;
      border: none;
      padding: 18px;
      border-radius: 50px;
      font-size: 1.3rem;
      font-weight: 700;
      cursor: pointer;
      width: 100%;
      margin-top: 30px;
      transition: 0.4s;
    }

    .submit-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(255,215,0,0.4);
    }

    .transparency-note {
      font-size: 1rem;
      color: #ddd;
      margin-top: 40px;
      line-height: 1.7;
      text-align: center;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .donation-main { padding: 80px 20px; }
      .use-card { padding: 30px 20px; }
      .donation-form-section { padding: 40px 30px; }
    }

    /* ====== DONATION HERO — EDGE-CUT IMAGES LIKE RHINOS ====== */
/* ====== DONATION HERO — EDGE-CUT IMAGES (WORKS ON MOBILE) ====== */
/* ====== DONATION HERO — EDGE-CUT IMAGES LIKE RHINOS ====== */



.donation-edge-image.left-edge {
  left: -10%;                    /* ← CUT OFF LEFT EDGE */
  transform: translateX(-10%) rotate(-8deg);
}

.donation-edge-image.right-edge {
  right: -10%;                   /* ← CUT OFF RIGHT EDGE */
  transform: translateX(10%) rotate(8deg);
}

/* SUBTLE HOVER MOVEMENT */
.donation-hero:hover .left-edge {
  transform: translateX(-5%) rotate(-5deg);
}

.donation-hero:hover .right-edge {
  transform: translateX(5%) rotate(5deg);
}

.donation-subtitle{
  color: #ffffff;
}

/* CHANGE COLOR OF "OR PAY WITH CRYPTO" HEADING */
.donation-form-section h3 {
  color: #ffffff ;     /* ← YOUR COLOR HERE */
  font-size: 1.8rem;
  margin: 40px 0 20px;
}

.donation-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 40px;
}

.donation-hero h1 {
  font-size: 4rem;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

.donation-hero p {
  font-size: 1.6rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.donate-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #f39c12);
  color: #111;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

/* ====== TEXTAREA — MATCHES OTHER INPUTS (GREY GLASS EFFECT) ====== */
.donate-form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);     /* ← SAME GREY AS INPUTS */
  color: white;
  border-radius: 14px;
  font-size: 1.1rem;
  font-family: inherit;
  resize: vertical;
  transition: all 0.3s ease;
  min-height: 120px;
}

.donate-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.donate-form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

.donate-cta:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,215,0,0.6);
}

/* ====== YELLOW FLOATING DOTS — FULL PAGE, FREE MOVEMENT ====== */
.yellow-floating-dots {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;                    /* Behind content, above background */
  overflow: hidden;
}

.yellow-dot {
  position: absolute;
  background: #ffd700;           /* GOLD YELLOW */
  border-radius: 50%;
  box-shadow: 
    0 0 10px #ffd700,
    0 0 20px #ffd700,
    0 0 30px rgba(255, 215, 0, 0.6);
  opacity: 0.7;
  pointer-events: none;
  animation: yellowFloat linear infinite;
}

@keyframes yellowFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(var(--scale));
    opacity: 0.4;
  }
}

/* Mobile — slightly dimmer */
@media (max-width: 768px) {
  .yellow-dot {
    box-shadow: 
      0 0 8px #ffd700,
      0 0 16px rgba(255, 215, 0, 0.5);
  }
}

/* DESKTOP — CUT OFF EDGES */
@media (min-width: 993px) {
  .donation-edge-image.left-edge {
    left: -10%;
    bottom: 0;
    transform: translateY(10%) rotate(-8deg);
  }

  .donation-edge-image.right-edge {
    right: -10%;
    bottom: 0;
    transform: translateY(10%) rotate(8deg);
  }

  .donation-hero:hover .left-edge {
    transform: translateY(5%) rotate(-5deg);
  }

  .donation-hero:hover .right-edge {
    transform: translateY(5%) rotate(5deg);
  }
}

/* MOBILE — SCALED DOWN, POSITIONED TOP CORNERS */
@media (max-width: 992px) {
  .donation-edge-image {
    height: 50%;                 /* ← Smaller on mobile */
    opacity: 0.7;
  }

  .donation-edge-image.left-edge {
    left: -10%;
    top: 10%;
    transform: rotate(-10deg);
  }

  .donation-edge-image.right-edge {
    right: -10%;
    top: 10%;
    transform: rotate(10deg);
  }

  /* Optional hover on mobile (touch) */
  .donation-hero:active .left-edge {
    transform: rotate(-5deg) scale(1.05);
  }

  .donation-hero:active .right-edge {
    transform: rotate(5deg) scale(1.05);
  }

  .donation-hero h1 {
    font-size: 3rem;
  }

  .donation-hero p {
    font-size: 1.3rem;
  }

  .donate-cta {
    padding: 16px 40px;
    font-size: 1.2rem;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .donation-edge-image {
    height: 40%;
  }
  .donation-edge-image.left-edge {
    left: -15%;
    top: 15%;
  }
  .donation-edge-image.right-edge {
    right: -15%;
    top: 15%;
  }
}

  /* ====== TERMS & CONDITIONS — CLEAN & PREMIUM ====== */
  /* ====== TERMS & CONDITIONS — CLEAN & PREMIUM ====== */
  /* ====== TERMS & CONDITIONS — CLEAN & PREMIUM ====== */
  /* ====== TERMS & CONDITIONS — CLEAN & PREMIUM ====== */
  /* ====== TERMS & CONDITIONS — CLEAN & PREMIUM ====== */
  /* ====== TERMS & CONDITIONS — CLEAN & PREMIUM ====== */
  /* ====== TERMS & CONDITIONS — CLEAN & PREMIUM ====== */
    .terms-page {
      padding: 120px 20px 100px;
      background: #f8f9fa;
      min-height: 100vh;
    }

    .terms-container {
      max-width: 900px;
      margin: 0 auto;
      background: white;
      padding: 60px 50px;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

    .terms-container h1 {
      font-size: 3rem;
      text-align: center;
      color: #2ecc71;
      margin-bottom: 20px;
    }

    .terms-container h2 {
      font-size: 1.8rem;
      color: #333;
      margin: 40px 0 20px;
      border-bottom: 2px solid #2ecc71;
      padding-bottom: 10px;
    }

    .terms-container p, .terms-container li {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #444;
      margin-bottom: 16px;
    }

    .terms-container ul {
      padding-left: 30px;
      margin-bottom: 20px;
    }

    .terms-container li {
      margin-bottom: 10px;
    }

    .terms-footer {
      text-align: center;
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid #ddd;
      color: #666;
      font-size: 1rem;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .terms-container {
        padding: 40px 30px;
      }
      .terms-container h1 {
        font-size: 2.4rem;
      }
      .terms-container h2 {
        font-size: 1.6rem;
      }
    }

    /* ====== CONTACT PAGE — PREMIUM DARK & GOLD ====== */
    /* ====== CONTACT PAGE — PREMIUM DARK & GOLD ====== */
    /* ====== CONTACT PAGE — PREMIUM DARK & GOLD ====== */
    /* ====== CONTACT PAGE — PREMIUM DARK & GOLD ====== */
    /* ====== CONTACT PAGE — PREMIUM DARK & GOLD ====== */
    /* ====== CONTACT PAGE — PREMIUM DARK & GOLD ====== */
    .contact-page {
      background: #111;
      color: #fff;
      min-height: 100vh;
      padding: 120px 20px 100px;
    }

    .contact-hero {
      text-align: center;
      margin-bottom: 80px;
    }

    .contact-hero h1 {
      font-size: 3.8rem;
      color: #ffd700;
      margin-bottom: 20px;
      text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    }

    .contact-hero p {
      font-size: 1.4rem;
      opacity: 0.9;
      max-width: 700px;
      margin: 0 auto;
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contact-info {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 215, 0, 0.2);
      border-radius: 24px;
      padding: 50px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    .contact-info h2 {
      font-size: 2.4rem;
      color: #ffd700;
      margin-bottom: 30px;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 35px;
    }

    .info-item i {
      font-size: 1.8rem;
      color: #ffd700;
      margin-top: 5px;
    }

    .info-item div h3 {
      font-size: 1.4rem;
      margin-bottom: 8px;
      color: #fff;
    }

    .info-item div p {
      font-size: 1.1rem;
      opacity: 0.9;
      line-height: 1.6;
    }

    .info-item a {
      color: #ffd700;
      text-decoration: none;
      transition: color 0.3s;
    }

    .info-item a:hover {
      color: white;
    }

    .social-contact-us {
      margin-top: 40px;
    }

    .social-contact-us h3 {
      font-size: 1.4rem;
      color: #ffd700;
      margin-bottom: 20px;
    }

    .social-icons-contact {
      display: flex;
      gap: 20px;
    }

    .social-icon-media {
      width: 50px;
      height: 50px;
      background: rgba(255, 215, 0, 0.1);
      color: #ffd700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: all 0.4s ease;
    }

    .social-icon-media:hover {
      background: #ffd700;
      color: #111;
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(255,215,0,0.4);
    }

    .contact-form-wrapper {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 215, 0, 0.2);
      border-radius: 24px;
      padding: 60px 50px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    }

    .contact-form-wrapper h2 {
      font-size: 2.6rem;
      color: #ffd700;
      margin-bottom: 40px;
      text-align: center;
    }

    .contact-form .form-group {
      margin-bottom: 30px;
    }

    .contact-form label {
      display: block;
      font-size: 1.1rem;
      color: #ffd700;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 18px;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 16px;
      color: white;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #ffd700;
      background: rgba(255, 255, 255, 0.25);
      box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-form textarea {
      min-height: 150px;
      resize: vertical;
    }

    .contact-submit-btn {
      background: linear-gradient(135deg, #ffd700, #f39c12);
      color: #111;
      border: none;
      padding: 20px 60px;
      border-radius: 50px;
      font-size: 1.4rem;
      font-weight: 700;
      cursor: pointer;
      width: 100%;
      transition: all 0.4s ease;
      box-shadow: 0 10px 30px rgba(255,215,0,0.4);
    }

    .contact-submit-btn:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(255,215,0,0.6);
    }

    /* Mobile */
    @media (max-width: 992px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
      }
      .contact-info, .contact-form-wrapper {
        padding: 50px 40px;
      }
    }

    @media (max-width: 768px) {
      .contact-hero h1 {
        font-size: 3rem;
      }
      .contact-info, .contact-form-wrapper {
        padding: 40px 30px;
      }
    }