.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    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;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float::before {
    content: "Chat with us";
    position: absolute;
    left: 70px;
    background-color: #128C7E;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}





.ta-carousel-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.ta-header {
    text-align: center;
    margin-bottom: 30px;
}

.ta-logo {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.ta-overall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.ta-stars {
    display: flex;
    gap: 3px;
}

.ta-star {
    width: 24px;
    height: 24px;
    fill: #00aa6c;
}

.ta-score {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.ta-total {
    color: #666;
    font-size: 14px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc(33.333% - 14px);
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00aa6c, #00d084);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.reviewer-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 3px;
}

.reviewer-info p {
    font-size: 12px;
    color: #999;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-star {
    width: 18px;
    height: 18px;
    fill: #00aa6c;
}

.review-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00aa6c;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #008c59;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

@media (max-width: 968px) {
    .review-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 640px) {
    .review-card {
        min-width: 100%;
    }
    .carousel-wrapper {
        padding: 0 40px;
    }
}










#tour-packages-section {
  padding: 70px 30px;
  background: linear-gradient(135deg, #f8fbff, #e6f7ff);
}

#tour-packages-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #002b5b;
  margin-bottom: 50px;
}

#tour-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-items: center;
}

.tour-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 350px;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.tour-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  margin: -60px auto 10px;
  position: relative;
  background: #f0f0f0;
  z-index: 2;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-content {
  padding: 70px 20px 30px;
  margin-top: -40px;
}

.tour-title {
  font-size: 20px;
  font-weight: 600;
  color: #0073aa;
  margin-bottom: 10px;
}

.tour-price {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.tour-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.book-btn {
  background: #0073aa;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.book-btn:hover {
  background: #005b85;
  transform: scale(1.07);
}

/* Responsive design */
@media (max-width: 1024px) {
  #tour-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #tour-packages-grid {
    grid-template-columns: 1fr;
  }
  .tour-card {
    max-width: 100%;
  }
  #tour-packages-title {
    font-size: 28px;
  }
}
















 #google-reviews-carousel-section {
            padding: 60px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        #reviews-carousel-header {
            text-align: center;
            margin-bottom: 50px;
        }

        #reviews-carousel-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #333;
        }

        #reviews-carousel-subtitle {
            font-size: 1.1rem;
            color: #666;
        }

        #reviews-carousel-wrapper {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        #reviews-carousel-track {
            display: flex;
            gap: 30px;
            animation: carouselScrollAnim 25s linear infinite;
            width: fit-content;
        }

        #reviews-carousel-track:hover {
            animation-play-state: paused;
        }

        @keyframes carouselScrollAnim {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-100% - 15px));
            }
        }

        .review-carousel-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            min-width: 380px;
            max-width: 380px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            flex-shrink: 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .review-carousel-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .review-carousel-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .review-carousel-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .review-carousel-author-details {
            flex: 1;
        }

        .review-carousel-author-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .review-carousel-stars {
            color: #fbbf24;
            font-size: 1.1rem;
            letter-spacing: 2px;
        }

        .review-carousel-text {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .review-carousel-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .review-carousel-date {
            color: #999;
            font-size: 0.85rem;
        }

        .review-carousel-google-badge {
            background: #4285f4;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        #reviews-carousel-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .review-carousel-btn {
            background: #667eea;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .review-carousel-btn:hover {
            background: #764ba2;
            transform: scale(1.1);
        }

        #reviews-carousel-rating-summary {
            text-align: center;
            margin-top: 50px;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 12px;
        }

        #reviews-summary-rating {
            font-size: 3rem;
            font-weight: bold;
            color: #333;
        }

        #reviews-summary-stars {
            font-size: 1.8rem;
            color: #fbbf24;
            margin: 10px 0;
        }

        #reviews-summary-text {
            color: #666;
            font-size: 1rem;
        }

















    /* popup css */
    /* Booking Modal */
#booking-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

#booking-modal-content {
  background: #fff;
  border-radius: 20px;
  width: 95%;
  max-width: 500px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  position: relative;
  animation: slideUp 0.4s ease;
}

#booking-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: color 0.3s;
}

#booking-close:hover {
  color: #000;
}

#booking-title {
  text-align: center;
  color: #0073aa;
  font-size: 26px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #0073aa;
  outline: none;
}

#submit-booking {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

#submit-booking:hover {
  background: #005b85;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
  #booking-modal-content {
    padding: 25px 18px;
  }
  #booking-title {
    font-size: 22px;
  }
}









#testimonials {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.TA_selfserveprop {
  width: 100%;
  /* you can override width or make it responsive */
}

.TA_links img {
  max-width: 150px; /* adjust logo size */
}

/* If reviews widget overflows, force it to be responsive */
@media (max-width: 600px) {
  .TA_selfserveprop {
    font-size: 14px;
  }
}








.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 80%;
  max-width: 800px;
  animation: fadeIn 0.5s ease;
}

.modal-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}




.reviews-section {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  padding: 80px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* --- DECORATIVE GRADIENT GLOW --- */
.reviews-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0,140,255,0.1), transparent 70%);
  animation: rotateGlow 10s linear infinite;
  z-index: 0;
}
@keyframes rotateGlow {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

/* --- TITLE --- */
.reviews-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #003366;
  position: relative;
  z-index: 2;
}

/* --- CONTAINER --- */
.reviews-container {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  padding: 40px 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.reviews-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

/* --- ELFSIGHT WIDGET WRAPPER --- */
.reviews-widget {
  overflow: hidden;
  animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .reviews-title {
    font-size: 1.8rem;
  }
  .reviews-container {
    padding: 25px 15px;
  }
}









#vehicle-booking-section {
  padding: 60px 20px;
  background: #f0f8ff;
  text-align: center;
  font-family: Arial, sans-serif;
}

.section-title {
  font-size: 2.5rem;
  color: #00796b;
  margin-bottom: 50px;
}

.vehicle-widget {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.vehicle-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.vehicle-card {
  width: 150px;
  padding: 20px;
  border-radius: 20px;
  background: #e0f7fa;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.vehicle-card img {
  width: 80px;
  margin-bottom: 10px;
}

.vehicle-card h3 {
  font-size: 1.1rem;
  color: #00796b;
}

.vehicle-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.vehicle-card.active {
  background: #b2dfdb;
  box-shadow: 0 20px 30px rgba(0,0,0,0.25);
}

.vehicle-details {
  flex: 1 1 100%;
  margin-top: 30px;
  text-align: center;
}

#selected-vehicle {
  font-size: 1.8rem;
  color: #004d40;
}

#vehicle-desc {
  margin: 15px 0;
  color: #555;
}

#reserve-vehicle-btn {
  padding: 12px 30px;
  background: #00796b;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1rem;
}

#reserve-vehicle-btn:hover {
  background: #004d40;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px;
  cursor: pointer;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #00796b;
}

.modal-content form {
  display: flex;
  flex-direction: column;
}

.modal-content label {
  margin: 10px 0 5px;
  font-weight: bold;
}

.modal-content input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.modal-content button {
  margin-top: 20px;
  padding: 12px;
  background: #00796b;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.modal-content button:hover {
  background: #004d40;
}








.whale-section {
  background: linear-gradient(135deg, #00b4db, #0083b0);
  color: white;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.whale-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.whale-image {
  flex: 1 1 45%;
  text-align: center;
}

.whale-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.whale-image img:hover {
  transform: scale(1.05);
}

.whale-content {
  flex: 1 1 50%;
}

.whale-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.whale-desc {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.whale-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.whale-features li {
  font-size: 1rem;
  margin: 8px 0;
}

.book-whale-btn {
  background: #fff;
  color: #0083b0;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.book-whale-btn:hover {
  background: #0083b0;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Modal Styling */
.whale-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.whale-modal-content {
  background: #ffffff;
  color: #333;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: popUp 0.4s ease;
}

@keyframes popUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.whale-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #0083b0;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.submit-whale {
  background: linear-gradient(135deg, #00b4db, #0083b0);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
}

.submit-whale:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0083b0, #00b4db);
}

/* Animations on scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .whale-container { flex-direction: column; }
  .whale-title { font-size: 2rem; }
}










/* Safari Section */
.safari-section {
  background: linear-gradient(135deg,#6dd5ed,#2193b0);
  padding: 80px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.safari-header { max-width: 800px; margin:0 auto 50px; }
.safari-header h2 { font-size:2.8rem; margin-bottom:15px; }
.safari-header p { font-size:1.1rem; line-height:1.8; }

/* Grid */
.safari-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* Card */
.safari-card {
  background:#fff; 
  color:#333; 
  border-radius:20px;
  overflow:hidden; 
  box-shadow:0 6px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.safari-card img { width:100%; height:200px; object-fit:cover; transition: transform 0.4s ease; }
.safari-card:hover img { transform: scale(1.05); }
.safari-info { padding:20px; text-align:left; }
.safari-card:hover { transform:translateY(-8px); box-shadow:0 10px 30px rgba(0,0,0,0.3); }

/* Book button */
.book-safari-btn {
  margin-top:10px; 
  width:100%;
  background: linear-gradient(135deg,#2193b0,#6dd5ed);
  color:#fff; 
  border:none; 
  padding:12px; 
  border-radius:25px; 
  cursor:pointer;
  font-weight:600;
  transition:0.3s ease;
}
.book-safari-btn:hover { transform:translateY(-2px); }

/* Modal */
.safari-modal {
  display:none; 
  position:fixed; 
  top:0; 
  left:0; 
  width:100%; 
  height:100%;
  background: rgba(0,0,0,0.7); 
  justify-content:center; 
  align-items:center; 
  z-index:999;
}

.safari-modal-content {
  background:#fff; 
  color:#333; 
  border-radius:20px; 
  padding:40px;
  width:90%; 
  max-width:500px; 
  position:relative; 
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn { from {transform:scale(0.8);opacity:0;} to {transform:scale(1);opacity:1;} }

.safari-close { 
  position:absolute; 
  top:15px; 
  right:20px; 
  font-size:28px; 
  cursor:pointer; 
  color:#2193b0; 
}

.form-group { margin-bottom:20px; }
input { width:100%; padding:10px; border:1px solid #ccc; border-radius:10px; }

.submit-safari {
  width:100%; 
  background:linear-gradient(135deg,#2193b0,#6dd5ed);
  color:#fff; 
  border:none; 
  padding:12px 25px; 
  border-radius:30px; 
  font-weight:600; 
  cursor:pointer;
  transition:0.3s ease;
}
.submit-safari:hover { transform:translateY(-2px); }









/* ===== Packages Section ===== */
#packages-section {
  background: #f8fafc;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

#packages-section .pkg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

#packages-section .pkg-header-title {
  text-align: center;
  margin-bottom: 3rem;
}

#packages-section .pkg-header-title h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

#packages-section .pkg-header-title p {
  color: #475569;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Packages Grid ===== */
#packages-section .packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* ===== Package Card ===== */
.package-card {
  background: #1e293b;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.package-card .card-top {
  position: relative;
}

.package-card .badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.package-card .badge,
.package-card .duration {
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 6px;
}

.package-card .swiper {
  width: 100%;
  height: 220px;
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-card .card-body {
  padding: 1.5rem;
  flex: 1;
}

.package-card .card-title {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.package-card .card-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.package-card .card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.package-card .highlight-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.package-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
}

.package-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #38bdf8;
}

.package-card .inquire-btn {
  background: #38bdf8;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.package-card .inquire-btn:hover {
  background: #0ea5e9;
  color: #fff;
}

/* ===== Modal ===== */
.package-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

.package-modal-dialog {
  background: #fff;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  position: relative;
  color: #0f172a;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.package-form .form-row {
  margin-bottom: 1rem;
}

.package-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #334155;
}

.package-form input,
.package-form textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
}

.package-form textarea {
  resize: none;
}

.package-form .two-col {
  display: flex;
  gap: 1rem;
}

.btn.primary-btn {
  background: #0ea5e9;
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}

.btn.primary-btn:hover {
  background: #0284c7;
}
