/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #f39c12;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* HERO SECTION FIX */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("./imag/Hero.jpg") center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 90%;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: 1rem;
  color: #f2f2f2;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .hero {
    height: 85vh;
    background-position: center top;
  }

  .hero-content {
    padding: 0 1rem;
  }
}


/* ====== LIGHTBOX GALLERY ====== */
.gallery-section {
  padding: 3rem 1rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  justify-content: center;
}

.gallery-item {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: 0.4;}
  to {opacity: 1;}
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.7);
}

/* Dots/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 5px 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.active-dot {
  background-color: #f39c12;
}


/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
}

.inspirational-quote {
    max-width: 800px;
    margin: 0 auto;
}

.inspirational-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
    opacity: 0.95;
}

.inspirational-quote cite {
    font-size: 1.2rem;
    color: #f39c12;
    font-weight: 600;
}

/* Packages Section */
.packages-section {
    padding: 6rem 0;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
}

/* Package Card */
.package-card {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: white;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

/* Image container */
.package-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-bottom: 4px solid #f39c12; /* Safari accent */
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

/* Overlay */
.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.6));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.package-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.package-content p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.package-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background: rgba(255,255,255,0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .package-image {
        height: 250px;
    }
}

.package-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.package-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(230, 126, 34, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.package-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.package-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
}

/* Location Boxes Container */
.location-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

/* Individual Location Box */
.location-box {
    background: #f5f5f5;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    min-width: 150px;
}

/* Hover Effect */
.location-box:hover {
    background:#2c3e50; /* Safari tone */
    color: #f39c12;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}


/* Video Section */
.video-section {
    padding: 6rem 0;
    background: white;
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.safari-video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 0;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(243, 156, 18, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    animation: pulse 2s infinite;
}

.play-button:hover {
    background: #e67e22;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(243, 156, 18, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

.video-description h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.video-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #fafafa;
    padding: 4rem 2rem;
    text-align: center;
}

.testimonials-section .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #222;
}

/* Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Testimonial Text */
.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Testimonial Name */
.testimonial-name {
    font-weight: bold;
    color: #2c3e50; /* Safaritone */
}


/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: hidden;
    border: 4px solid #f39c12;
    transition: all 0.3s ease;
}

.team-member:hover .team-image {
    border-color: #e67e22;
    transform: scale(1.05);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-role {
    font-weight: 600;
    color: #f39c12;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.team-description {
    color: #666;
    font-style: italic;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-social h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #f39c12;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.facebook { background: #3b5998; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.twitter { background: #1da1f2; }
.whatsapp { background: #25d366; }

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.footer-email {
    margin-bottom: 1rem;
}

.footer-email p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #f39c12;
}

.footer-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link-box {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.footer-link-box:hover {
    background: rgba(243, 156, 18, 0.2);
    transform: translateY(-3px);
}

.footer-link-box a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-link-box i {
    font-size: 1.5rem;
    color: #f39c12;
}

.footer-link-box span {
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slideshow-wrapper {
        width: calc(100% * 9);
    }
    
    .slide {
        width: 100%;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card {
        min-width: 280px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-link-box {
        min-width: 150px;
        padding: 1rem;
    }
    
    .inspirational-quote p {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .slide-btn {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .package-content h3 {
        font-size: 1.8rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .video-stats {
        justify-content: center;
    }
    
    .safari-video {
        height: 250px;
    }
}

/* High-resolution displays */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Print styles */
@media print {
    .navbar, .footer, .slide-btn {
        display: none;
    }
    
    .hero {
        height: auto;
        background: none;
        color: black;
        padding: 2rem 0;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.slide-btn:focus,
.package-card:focus,
.social-icon:focus,
.footer-link-box a:focus {
    outline: 2px solid #f39c12;
    outline-offset: 2px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    text-align: center;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}
.testimonial-name {
    font-weight: bold;
    color: #f39c12;
}

/* Contact Form Section */
.contact-section {
    padding: 6rem 0;
    background: white;
}
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}
.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.form-group input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}
.btn-submit {
    background: #f39c12;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.btn-submit:hover {
    background: #e67e22;
}
/* --- Modal Styling --- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  overflow: auto;
  backdrop-filter: blur(3px);
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: 50px auto;
  padding: 20px 30px;
  border-radius: 12px;
  width: 85%;
  max-width: 800px;
  position: relative;
  animation: fadeIn 0.4s ease-in-out;
}

/* Header and Body */
.modal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.terms-body {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #444;
}

/* Scrollbar styling */
.terms-body::-webkit-scrollbar {
  width: 8px;
}
.terms-body::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}
.terms-body::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Close Button */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  color: #555;
  cursor: pointer;
  font-weight: bold;
}
.close:hover {
  color: #e74c3c;
}

/* Accept Button */
.modal-footer {
  text-align: center;
  margin-top: 20px;
}

.btn-accept {
  background-color: #007a3d;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}
.btn-accept:hover {
  background-color: #00994f;
}

/* Fade Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}

/* Uniform package cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 360px; /* uniform height */
  display: block;
}

.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover img {
  transform: scale(1.1);
}

/* Tailored packages page */
.tailored-section {
  padding: 80px 20px;
}

.tailored-section .intro-text {
  text-align: center;
  margin-bottom: 40px;
  color: #444;
}

.tailored-destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 40px;
}

.destination-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-card h3 {
  font-family: "Playfair Display", serif;
  margin: 15px;
}

.destination-card p {
  margin: 0 15px 20px;
  color: #555;
}

.tailored-conclusion {
  text-align: center;
  margin-top: 40px;
  color: #333;
}

.btn-cta {
  display: inline-block;
  margin-top: 25px;
  background-color: #007a3d;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-cta:hover {
  background-color: #00994f;
}
.nav-home {
  text-align: left;
  margin: 20px;
}

.btn-home {
  background-color: #007a3d;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-home:hover {
  background-color: #00994f;
}
/* Accommodations Page */
.accommodations-section {
  padding: 80px 20px;
  background-color: #faf8f2;
  font-family: "Inter", sans-serif;
  color: #333;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 40px;
}

.accommodation-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.accommodation-card:hover {
  transform: translateY(-5px);
}

.accommodation-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.accommodation-card h3 {
  margin-top: 15px;
  font-family: "Playfair Display", serif;
}

.accommodation-card p {
  padding: 0 15px 20px;
  font-size: 0.95rem;
  color: #555;
}

.animal-icon {
  font-size: 1.8rem;
  position: absolute;
  bottom: 15px;
  right: 20px;
  opacity: 0.8;
}

.accommodation-footer {
  text-align: center;
  margin-top: 40px;
}

/* Prevent horizontal scrolling */
html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Ensure containers never exceed viewport width */
.container {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Prevent rogue margins or paddings */
* {
  box-sizing: border-box;
}

/* Contact Modal Styling */
#contactModal h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

#contactModal a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
}

#contactModal a:hover {
  color: #ff9800;
}

#contactModal p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

/* Polished Terms & Conditions Formatting */
#termsModal h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  text-align: center;
}

#termsModal h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #34495e;
  font-size: 1.1rem;
}

#termsModal p {
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

#termsModal hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 1.2rem 0;
}

#termsModal strong {
  color: #2c3e50;
}

#termsModal a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
}

#termsModal a:hover {
  color: #ff9800;
}

.video-row {
  display: flex;
  gap: 2rem;       /* Space between videos */
  flex-wrap: wrap;  /* Wrap on smaller screens */
  justify-content: center;
}

.video-wrapper {
  flex: 1 1 45%;   /* Each video takes ~45% of the row */
  max-width: 600px;
  position: relative;
}

.safari-video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Optional: Make videos stack nicely on mobile */
@media (max-width: 768px) {
  .video-wrapper {
    flex: 1 1 100%;
  }
}

/* Contact Form Section */
.team-section .container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  width: 100%;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #222;
  font-weight: 600;
  letter-spacing: 0.5px;
}

form label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  outline: none;
}

form input:focus,
form textarea:focus {
  border-color: #2c3e50;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

form textarea {
  resize: vertical;
}

form button {
  width: 100%;
  padding: 12px;
  background: #2c3e50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #2c3e50;
}

#thankYouMessage {
  margin-top: 20px;
  text-align: center;
  font-size: 1rem;
  color: #28a745;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 600px) {
  .team-section .container {
    padding: 25px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  form input,
  form textarea,
  form button {
    font-size: 0.95rem;
  }
}

.contact-section {
  max-width: 900px;        /* keeps it narrow on large screens */
  margin: 0 auto;          /* centers it horizontally */
  padding: 2rem 1rem;      /* space inside */
  box-sizing: border-box;  /* keeps width consistent */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .contact-section {
    max-width: 100%;
    padding: 1.5rem;
  }
}

/* team section */
.team-section {
  display: flex;
  flex-wrap: wrap;            /* allows wrapping to next line */
  justify-content: center;    /* centers the cards */
  gap: 2rem;                  /* space between cards */
  padding: 2rem;
}

.team-card {
  flex: 1 1 250px;            /* flexible width, min 250px */
  max-width: 300px;           /* stops cards from being too wide */
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
}

/* --- Consistent and Larger Video Section Styling --- */
.video-section {
  padding: 3rem 1rem; /* a bit more breathing room */
  background-color: #f9f9f9;
}

.video-section .container {
  max-width: 1400px; /* slightly wider overall */
  margin: 0 auto;
}

.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* Larger and equal-size video containers */
.video-wrapper {
  flex: 1 1 48%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #000;
}

/* Slightly taller frame for videos (less cropping) */
.video-wrapper::before {
  content: "";
  display: block;
  padding-top: 60%; /* was 56.25%, now taller for full video visibility */
}

/* Video element sizing */
.safari-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* changed from cover → shows entire video content */
  background-color: #fff; /* adds black borders if needed */
  border-radius: 10px;
}

/* Responsive stacking on mobile */
@media (max-width: 768px) {
  .video-wrapper {
    flex: 1 1 100%;
  }
}

/* --- Slideshow Container --- */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff; /* adds a clean black backdrop */
}

/* --- Slideshow Images --- */
.slideshow-container img {
  width: 100%;
  height: auto; /* keeps full image visible */
  object-fit: contain; /* show the entire image without cropping */
  display: block;
  margin: 0 auto;
  background-color: #fff; /* fills gaps if aspect ratio differs */
  border-radius: 10px;
  transition: opacity 1s ease-in-out; /* smooth fade between slides */
}

/* --- Optional: make slides taller on large screens --- */
@media (min-width: 1024px) {
  .slideshow-container img {
    max-height: 650px; /* slightly larger for desktop */
  }
}

/* --- Mobile Optimization --- */
@media (max-width: 768px) {
  .slideshow-container img {
    max-height: 400px; /* fits nicely on phones */
  }
}



















