@import url("./header.css");
@import url("./navbar.css");
@import url("./footer.css");
@import url("./contact-form.css");

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #35211f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #200f0d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f95e4d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Attach hero to second section */
#travel-hero {
  margin-bottom: 0;
}
/* Animation for the down arrow */
@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* Arrow icon styling - LEFT SIDE, BLACK & BOLD */
#travel-hero .btn .arrow-icon {
  display: inline-block;
  animation: arrowBounce 1.5s ease-in-out infinite;
  font-size: 1.2rem;
  color: #121212; /* Black color */
  font-weight: 900; /* Bold arrow */
  -webkit-text-stroke: 1px #121212; /* This makes it bolder */
  text-stroke: 1px #121212;
}

/* Attach second section to hero */
#second-section {
  margin-top: -2px; /* Remove any tiny gap */
}
    /* Hero Section Styles */
#travel-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/assets/img/luxury-unlocked/masai-mara.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 80px;  /* ← Change this value to add space above */
  padding-top: 0;
}

/* Adjust the content positioning */
#travel-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding-top: 100px; /* Move the padding to the container instead */
}

    #travel-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, hsla(0, 0%, 7%, .2) 0, #121212);
      z-index: 1;
    }

    

    #travel-hero h1 {
      font-family: Coldiac;
      margin:80px 0 0 0;
      font-size: 90px;
      font-weight: 300;
      text-transform: uppercase;
      text-decoration: none;
      margin-bottom: 2rem;
      color: #BB9A49;
     
    }

    #travel-hero .lead {
      font-size: 24px;
      font-weight: 400;
      max-width: 900px;
      margin: 0 auto 3rem;
      line-height: 1.8;
      color: #ffffff;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    }

#travel-hero .btn {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #BB9A49;
  text-decoration: none;
  display: inline-flex;           /* ← CHANGED */
  align-items: center;            /* ← ADDED */
  flex-direction: row-reverse;    /* ← ADDED - This moves arrow to left */
  gap: 10px;                      /* ← ADDED */
  margin: 10px;
  margin-top: 30px;
}

    #travel-hero .btn:hover {
      color: #121212;
    }

    /* Second Section Styles with Animation */
    #second-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 80px 0;
    }

    #second-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/img/luxury-unlocked/luxury-cruise.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  animation: moveUpFromBottom 15s ease-in-out infinite;
  transform-origin: center bottom; /* Animation origin from bottom */
}

@keyframes moveUpFromBottom {
  0% {
    background-position: center 100%; /* Start at bottom */
    transform: scale(1);
  }
  50% {
    background-position: center 0%; /* Move to top */
    transform: scale(1.05);
  }
  100% {
    background-position: center 100%; /* Return to bottom */
    transform: scale(1);
  }
}

    #second-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* 60% dark overlay across entire image */
  z-index: 1;
}

    #second-section .container {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
    }

    #second-section h2 {
      font-family: Coldiac;
      font-size: 34px;
      font-weight: 400;
      text-transform: uppercase;
      margin-bottom: 2rem;
      color: #d4af37;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
      animation: fadeInUp 1s ease-out;
    }

    #second-section > .container > .row > .col-lg-10 > p:first-of-type {
      font-size: 1.3rem;
      font-weight: 300;
      max-width: 900px;
      font-family: McQueen;
      margin: 0 auto 3rem;
      line-height: 1.8;
      color: #dbdbdb;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
      animation: fadeInUp 1s ease-out 0.2s backwards;
    }

    /* Service Cards Container */
    .services-grid {
      margin: 60px 0 40px;
      animation: fadeInUp 1s ease-out 0.4s backwards;
    }

    /* Service Card Styles */
    .service-card {
      position: relative;
      aspect-ratio: 393.46 / 350; 
      width: 100%;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s ease;
      border: 2px solid rgba(212, 175, 55, 0.3);
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
      z-index: 1;
      transition: all 0.4s ease;
    }

    .service-card:hover::before {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.95) 100%);
    }

    .service-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .service-card:hover .service-card-img {
      transform: scale(1.15);
    }

    .service-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px;
      z-index: 2;
      transition: all 0.4s ease;
    }

    .service-card-title {
      font-size: 22px;
      font-weight: 600;
      color: #fff;
      text-transform: uppercase;
    }

    .service-card-subtitle {
      font-size: 1rem;
      color: #d4af37;
      margin-bottom: 15px;
      font-weight: 300;
    }

    .service-card-description {
      font-size: 0.95rem;
      color: #ffffff;
      line-height: 1.6;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s ease;
      max-height: 0;
      overflow: hidden;
    }

    .service-card:hover .service-card-description {
      opacity: 1;
      transform: translateY(0);
      max-height: 200px;
    }

    .service-card-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 25px;
      font-weight: 500;
      text-decoration: none;
      font-size: 0.9rem;
      background: #ffffff;
      color: #BB9A49;
      border: 2px solid #ffffff;
      border-radius: 50px;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease 0.1s;
    }

    .service-card:hover .service-card-link {
      opacity: 1;
      transform: translateY(0);
    }

    .service-card-link:hover {
      color: #121212;
    }

    /* View All Button */
    .view-all-btn {
      padding: 14px 35px;
      font-size: 1rem;
      font-weight: 500;
      border-radius: 50px;
      transition: all 0.3s ease;
      border: 2px solid #ffffff;
      background: #ffffff;
      color: #BB9A49;
      text-decoration: none;
      display: inline-block;
      margin-top: 20px;
      animation: fadeInUp 1s ease-out 0.6s backwards;
    }

    .view-all-btn:hover {
      color: #121212;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

   

    /* Destination Cards on Black */
    .black-bg-section .destination-card {
      background: #1a1a1a;
      border: 1px solid #333;
    }

    .black-bg-section .destination-card:hover {
      border-color: #d4af37;
      transform: translateY(-5px);
    }

    /* Feature Boxes on Black */
    .black-bg-section .feature-box {
      background: #1a1a1a;
      border: 1px solid #333;
      padding: 30px;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .black-bg-section .feature-box:hover {
      border-color: #d4af37;
      transform: translateY(-5px);
    }

    .black-bg-section .feature-icon {
      color: #d4af37;
      font-size: 3rem;
      margin-bottom: 20px;
    }

    /* Call to Action on Black */
    .black-bg-section.call-to-action {
      background: #121212;
    }

    .black-bg-section .btn-primary {
      background: #d4af37;
      border: 2px solid #d4af37;
      color: #000;
    }

    .black-bg-section .btn-primary:hover {
      background: transparent;
      color: #d4af37;
    }

    .black-bg-section .btn-secondary {
      background: transparent;
      border: 2px solid #d4af37;
      color: #d4af37;
    }

    .black-bg-section .btn-secondary:hover {
      background: #d4af37;
      color: #000;
    }
    .border-area {
      width: 50px;
      height: 2px;
      background: rgba(187, 154, 73, 1.0);
      margin: 30px auto;
    }

    .checkbox-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 15px;
    }

    .checkbox-item input[type="checkbox"] {
      width: 18px;
      height: 18px;
      min-width: 18px;
      margin-top: 2px;
      accent-color: #d4af37;
      cursor: pointer;
    }

    .checkbox-item label {
      font-size: 0.9rem;
      color: #cccccc;
      cursor: pointer;
      margin-bottom: 0;
      line-height: 1.4;
    }

    .checkbox-item input[type="checkbox"]:checked + label {
      color: #ffffff;
    }

    .btn-submit {
      padding: 12px 35px;
      font-family: McQueen;
      font-size: 16.56;
      font-weight: 400;
      background-color: #ffffff;
      color: #121212;
      border: 2px solid #ffffff;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 20px;
    }

    .btn-submit:hover {
      background-color: #d4af37;
      color: #ffffff;
      border-color: #d4af37;
    }

    /* MOBILE BACKGROUND OVERRIDE AND TEXT POSITIONING */
    @media (max-width: 768px) {
      /* Move hero content upward on mobile */
      #travel-hero .container {
        padding-top: 20px !important; /* Much less padding on mobile */
      }
      
      #travel-hero h1 {
        margin-top: 40px !important; /* Reduced from 162px - moves text up */
        font-size: 2.5rem;
        font-family: Coldiac;
      }
      
      #travel-hero .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
      }
      
      #second-section h2 {
        font-size: 2.5rem;
        font-family: Coldiac;
      }

      #second-section > .container > .row > .col-lg-10 > p:first-of-type {
        font-size: 1.1rem;
      }

      .service-card {
        aspect-ratio: 393.46 / 350;
        margin-bottom: 20px;
      }

      .service-card-title {
        font-size: 1.5rem;
      }
      
      /* Black backgrounds for all sections except hero */
      #second-section {
        background-color: #121212 !important;
      }
      
      #second-section .bg-image {
        display: none !important; /* Hide the animated background image on mobile */
      }
      
      #second-section::before {
        background: transparent !important; /* Remove gradient overlay */
      }
      
      /* Ensure all other sections stay black */
      section:not(#travel-hero) {
        background-color: #121212 !important;
      }
    }
    
    @media (max-width: 576px) {
      /* Even more compact on very small screens */
      #travel-hero .container {
        padding-top: 10px !important;
      }
      
      #travel-hero h1 {
        margin-top: 30px !important; /* Even less top margin */
        font-size: 2rem;
        font-family: Coldiac;
      }
      
      #travel-hero .lead {
        font-size: 1rem;
      }
      
      #second-section {
        background-color: #121212 !important;
        background-image: none !important;
      }
      
      #second-section .bg-image {
        display: none !important;
      }
      
      section {
        padding: 60px 0;
      }
      
      #travel-hero {
        padding: 80px 0;
      }

      .btn-submit {
        padding: 12px 40px;
        font-size: 0.9rem;
      }
    }
     /* WhatsApp Floating Button */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 70px;
      right: 15px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .whatsapp-float i {
      color: #FFF;
    }
    
    @media (max-width: 768px) {
      .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 20px;
        font-size: 25px;
      }
    }

  
/* Destinations Curated Section */
  .destinations-curated-section {
    position: relative;
    padding: 100px 0 120px;
    background-color: #121212;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
  }

  .destinations-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 18, 0.75);
    z-index: 1;
  }

  .destinations-curated-section .container {
    position: relative;
    z-index: 2;
  }

  /* Section Header */
  .destinations-header {
    margin-bottom: 80px;
  }

  .destinations-main-title {
    font-family: Coldiac;
    font-size: 34px;
    font-weight: 400;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 30px;
  }

  .destinations-description {
    font-family: McQueen;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .destinations-tagline {
    font-family: McQueen;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 20px;
  }

  /* Destinations Grid */
  .destinations-grid {
    margin-bottom: 40px;
  }

  /* Destination Card Link */
  .destination-card-link {
    text-decoration: none;
    display: block;
  }

  /* Destination Card */
  .destination-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
  }

  .destination-card:hover {
    transform: translateY(-8px);
  }

  /* Image Wrapper with Zoom Effect */
  .destination-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .destination-card:hover .destination-image {
    transform: scale(1.15);
  }

  /* Overlay */
  .destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: background 0.4s ease;
  }

  /* Content */
  .destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    text-align: center;
  }

  .destination-title {
    font-family: Coldiac;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 8px;
    transition: all 0.3s ease;
  }

  .destination-subtitle {
    font-family: McQueen;
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    margin: 0;
  }

  .destination-card:hover .destination-subtitle {
    opacity: 1;
    transform: translateY(0);
  }

  /* View All Button */
  .view-all-destinations-btn {
    display: inline-block;
    padding: 13px 30px;
    font-family: McQueen;
    font-size: 16.56px;
    font-weight: 500;
    color: #d4af37;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .view-all-destinations-btn:hover {
    color: #121212;
  }

  /* Responsive Styles */
  @media (max-width: 1199px) {
    .destinations-main-title {
      font-size: 2.5rem;
      font-family: Coldiac;
    }

    .destination-card {
      height: 320px;
    }
  }

  @media (max-width: 991px) {
    .destinations-curated-section {
      padding: 80px 0 100px;
    }

    .destinations-header {
      margin-bottom: 60px;
    }

    .destinations-main-title {
      font-size: 2.2rem;
      font-family: Coldiac;
    }

    .destinations-description {
      font-size: 1rem;
      font-family: McQueen;
    }

    .destinations-description br {
      display: none;
    }

    .destination-card {
      height: 300px;
      margin-bottom: 15px;
    }

    .destination-title {
      font-size: 1.6rem;
    }
  }

  @media (max-width: 767px) {
    .destinations-curated-section {
      padding: 60px 0 80px;
      background-attachment: scroll;
    }

    .destinations-header {
      margin-bottom: 50px;
    }

    .destinations-main-title {
      font-size: 1.8rem;
      font-family: Coldiac;
    }

    .destinations-description {
      font-size: 0.95rem;
      padding: 0 15px;
      font-family: McQueen;
    }

    .destinations-tagline {
      font-size: 1rem;
    }

    .destination-card {
      height: 280px;
    }

    .destination-title {
      font-size: 1.5rem;
    }

    .destination-content {
      padding: 25px;
    }
  }

  @media (max-width: 576px) {
    .destinations-curated-section {
      padding: 50px 0 60px;
    }

    .destinations-main-title {
      font-size: 1.5rem;
      font-family: Coldiac;
    }

    .destinations-description {
      font-size: 0.9rem;
      font-family: McQueen;
    }

    .destinations-tagline {
      font-size: 0.9rem;
    }

    .destination-card {
      height: 250px;
    }

    .destination-title {
      font-size: 1.3rem;
    }

    .destination-subtitle {
      font-size: 0.9rem;
    }

    .view-all-destinations-btn {
      padding: 15px 40px;
      font-size: 0.9rem;
    }
  }

  /* LAPTOP FIX: 1200px–1399px (MacBook / Windows laptops) */
  @media (min-width: 1200px) and (max-width: 1399px) {

    /* Make section wider */
    #second-section .container {
      max-width: 1320px; /* override Bootstrap laptop width */
    }

    /* Reduce gutters so cards grow */
    #second-section .row.g-4 {
      --bs-gutter-x: 1.2rem;
    }

    /* Make cards visually larger */
    #second-section .service-card {
      aspect-ratio: 393 / 350; /* taller cards on laptop */
    }
  }
  
 /* Luxury Within Reach Section */
  .luxury-reach-section {
    padding: 0;
    background-color: #121212;
    overflow: hidden;
  }

  .luxury-reach-section .container-fluid {
    padding: 0;
  }

  .luxury-reach-section .row {
    min-height: 600px;
  }

  /* Left Content Styling */
  .luxury-reach-content {
    padding: 80px 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .luxury-reach-title {
    font-family: Coldiac;
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 40px;
    line-height: 1.3;
  }

  .luxury-reach-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
  }

  .read-more-btn {
    display: inline-block;
    padding: 10px 25px;
    font-family: McQueen;
    font-size: 1rem;
    font-weight: 400;
    color: #d4af37;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-align: left;
    display: block;
    width: fit-content;
  }

  .read-more-btn:hover {
    color: #121212;
  }

  /* Right Image Styling */
  .luxury-reach-image {
    height: 100%;
    min-height: 600px;
    position: relative;
    padding: 60px 40px 60px 20px;
    display: flex;
    align-items: center;
  }

  .luxury-reach-image img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }
    .luxury-signature-safari img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }

  /* Desktop Large Screens */
  @media (min-width: 1400px) {
    .luxury-reach-content {
      padding: 100px 150px;
    }

    .luxury-reach-title {
      font-size: 3rem;
      font-family: Coldiac;
    }

    .luxury-reach-text {
      font-size: 1.2rem;
    }
  }

  /* Laptop/Desktop */
  @media (min-width: 992px) and (max-width: 1399px) {
    .luxury-reach-content {
      padding: 80px 80px;
    }

    .luxury-reach-title {
      font-size: 2.2rem;
      font-family: Coldiac;
    }

    .luxury-reach-text {
      font-size: 1.05rem;
    }
  }

  /* Tablet */
  @media (max-width: 991px) {
    .luxury-reach-section .row {
      min-height: auto;
    }

    .luxury-reach-content {
      padding: 60px 40px;
      text-align: center;
    }

    .luxury-reach-title {
      font-size: 2rem;
      margin-bottom: 30px;
      font-family: Coldiac;
    }

    .luxury-reach-text {
      font-size: 1rem;
      margin-bottom: 25px;
    }

    .luxury-reach-image {
      min-height: auto;
      padding: 40px 30px;
    }

    .luxury-reach-image img {
      height: 400px;
      border-radius: 15px;
    }
    
    .luxury-signature-safari img {
      height: 400px;
      border-radius: 15px;
    }

    .read-more-btn {
      padding: 12px 40px;
    }
  }

  /* Mobile */
  @media (max-width: 767px) {
    .luxury-reach-content {
      padding: 50px 30px;
    }

    .luxury-reach-title {
      font-size: 1.75rem;
      margin-bottom: 25px;
      font-family: Coldiac;
    }

    .luxury-reach-text {
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .luxury-reach-image {
      padding: 30px 25px;
    }

    .luxury-reach-image img {
      height: 350px;
      border-radius: 12px;
    }
    
    .luxury-signature-safari img {
        height: 350px;
      border-radius: 12px;
    }

    .read-more-btn {
      padding: 12px 35px;
      font-size: 0.9rem;
    }
  }

  @media (max-width: 576px) {
    .luxury-reach-content {
      padding: 40px 25px;
    }

    .luxury-reach-title {
      font-size: 1.5rem;
      font-family: Coldiac;
    }

    .luxury-reach-text {
      font-size: 0.9rem;
    }

    .luxury-reach-image {
      padding: 25px 20px;
    }

    .luxury-reach-image img {
      height: 300px;
      border-radius: 10px;
    }
    
    .luxury-signature-safari img {
         height: 300px;
      border-radius: 10px;
    }
  }
  /* Testimonials Section Styles */
  .testimonials-section {
    padding: 100px 0;
  }

  .testimonials-section .section-header {
    margin-bottom: 60px;
  }

  .testimonials-section .section-header h2 {
    font-family: McQueen;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: left;
  }

  /* Testimonials Grid */
  .testimonials-grid {
    width: 100%;
  }

  /* Testimonial Card */
  .testimonial-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .testimonial-card:hover::before {
    opacity: 1;
  }

  /* Avatar */
  .avatar-initials {
    font-family: McQueen;
    font-size: 1.2rem;
    font-weight: 600;
    color: #bb9a49;
    text-transform: lowercase;
  }

  /* Testimonial Content */
  .testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cccccc;
    margin: 0;
    flex: 1;
  }

  .testimonial-text em {
    font-style: italic;
    color: #cccccc;
  }

  .testimonial-author {
    font-family: McQueen;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
  }

.testimonial-text {
  position: relative;
  padding-top: 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
  flex: 1;
}

/* Opening quotation mark */
.testimonial-text::before {
  content: "❝";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 26px;
  font-family: Georgia, "Times New Roman", serif;
  color: #bb9a49;
  letter-spacing: -6px;
  opacity: 0.9;
}

/* Closing quotation mark - inline with text */
.testimonial-text::after {
  content: " ❞";
  font-size: 26px;
  font-family: Georgia, "Times New Roman", serif;
  color: #bb9a49;
  opacity: 0.9;
  vertical-align: baseline;
  line-height: 0;
}
  /* Responsive Styles */
  @media (max-width: 991px) {
    .testimonials-section {
      padding: 80px 0;
      font-family: McQueen;
    }

    .testimonials-section .section-header h2 {
      font-size: 1.75rem;
    }

    .testimonial-card {
      min-height: 260px;
    }
  }

  @media (max-width: 767px) {
    .testimonials-section {
      padding: 60px 0;
      font-family: McQueen;
    }

    .testimonials-section .section-header {
      margin-bottom: 40px;
    }

    .testimonials-section .section-header h2 {
      font-size: 1.5rem;
    }

    .testimonial-card {
      padding: 30px 25px;
      min-height: auto;
    }

    .testimonial-avatar {
      width: 45px;
      height: 45px;
      min-width: 45px;
    }

    .avatar-initials {
      font-size: 1.1rem;
    }

    .testimonial-text {
      font-size: 0.9rem;
    }

    .testimonial-author {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 576px) {
    .testimonial-card {
      padding: 25px 20px;
    }

    .testimonial-text {
      font-size: 0.85rem;
      line-height: 1.6;
    }
  }


    /* Testimonials Section */
    .testimonials-header {
      margin-bottom: 60px;
    }
    
    /* Testimonials header */
    .testimonials-header h2 {
  font-family: Coldiac;
  font-size: 2.5rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 20px;
}

.testimonials-section .section-header h3 {
  font-family: McQueen;
  font-size: 18px;
  font-weight: 400;  /* Changed from 600 to 400 for lighter weight */
  color: #ffffff;
  text-align: center;  /* Changed from left to center */
  margin: 0;
}

    .testimonials-header h3 {
      font-family: McQueen;
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      text-align: left;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .testimonial-card {
      background-color: #1a1a1a;
      border: 1px solid #333333;
      border-radius: 15px;
      padding: 30px;
      transition: all 0.3s ease;
      position: relative;
    }

    .testimonial-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .testimonial-icon span {
      font-family: Georgia, serif;
      font-size: 24px;
      color: #bb9a49;
      font-weight: bold;
    }

    .testimonial-text {
      font-family: McQueen;
      font-size: 0.95rem;
      line-height: 1.7;
      color: #cccccc;
      font-style: italic;
      margin-bottom: 20px;
    }

    .testimonial-author {
      font-family: McQueen;
      font-size: 0.9rem;
      color: #ffffff;
      font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .about-text h2 {
        font-family: Coldiac;
        font-size: 2.2rem;
      }
      
      .about-text p {
        font-family: McQueen;
      }
    }

    @media (max-width: 768px) {

      .testimonials-header h3 {
        font-family: McQueen;
      }

      .testimonial-card {
        padding: 25px;
      }
      
      .testimonial-text {
        font-family: McQueen;
      }
      
      .testimonial-author {
        font-family: McQueen;
      }
      
      .checkbox-item label {
        font-family: McQueen;
      }
      
      .btn-submit {
        font-family: McQueen;
      }
    }

    @media (max-width: 576px) {
      .about-section-label {
        font-family: McQueen;
      }

      .about-text h2 {
        font-family: Coldiac;
        font-size: 1.5rem;
      }
      
      .about-text p {
        font-family: McQueen;
      }

      .testimonials-header h3 {
        font-family: McQueen;
      }

      .testimonials-grid {
        gap: 20px;
      }
      
      .testimonial-text {
        font-family: McQueen;
      }
      
      .testimonial-author {
        font-family: McQueen;
      }
      
      .checkbox-item label {
        font-family: McQueen;
      }

      .btn-submit {
        font-family: McQueen;
        padding: 12px 40px;
        font-size: 0.9rem;
      }
    }
    
/*------------------------------------------------------------------------------Services page Css
------------------------------------------------------------------------------*/

    /* Destinations Grid Section */
    .destination-grid-section {
      padding: 80px 0;
      background-color: #000000;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      color: #d4af37;
      font-weight: 300;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .section-header p {
      font-size: 1.1rem;
      color: #ffffff;
      max-width: 900px;
      margin: 0 auto 15px;
      line-height: 1.8;
    }

    .destination-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .destination-card {
      position: relative;
      width: 100%;
      padding-bottom: 100%; /* Square aspect ratio */
      overflow: hidden;
      border-radius: 20px;
      cursor: pointer;
    }

    .destination-card-inner {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s ease;
    }

    .destination-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
      z-index: 1;
      transition: opacity 0.5s ease;
    }

    .destination-card:hover .destination-card-inner {
      transform: scale(1.1);
    }

    .destination-card:hover::before {
      opacity: 0.8;
    }

    .destination-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      z-index: 2;
      padding: 40px 20px;
      text-align: center;
    }

    .destination-overlay h3 {
      font-size: 22px;
      font-family: Coldiac;
      color: #ffffff;
      font-weight: 400;
      text-transform: uppercase;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .destination-overlay p {
      font-size: 18px;
      font-family: McQueen;
      color: #ffffff;
      font-weight: 300;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s ease;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .destination-card:hover .destination-overlay p {
      opacity: 1;
      transform: translateY(0);
    }

    /* Black Background Section Helper Class */
    .black-bg-section {
      background-color: #121212;
      color: #ffffff;
      padding: 80px 0;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      .destination-overlay h3 {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 576px) {


      .destination-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .section-header h2 {
        font-size: 1.8rem;
      }

      .section-header p {
        font-size: 1rem;
      }

      .destination-overlay h3 {
        font-size: 1.3rem;
      }

      .btn-submit {
        padding: 12px 40px;
        font-size: 0.9rem;
      }
    }

