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

body {
  color: #333;
  background: #fff;
}

 /* heading part */
        header {
            display: inline-block;
            width: 100%;
            padding: 15px 70px;
            background: #0c2d1a;
            position: relative;
            color: white;
            box-sizing: border-box;
            animation: fadeIn 1s ease-in-out;
        }

        header::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, #3c4f19,gold);
        }

        .logo {
            float: left;
            font-size: 24px;
            font-weight: bold;
            line-height: 50px;
            color: gold;
            text-decoration: none;
        }
        /* Logo image styling */
.logo img {
    width: 56px;              
    height: 56px;
    border-radius: 50%;      
    object-fit: cover;        
    border: 2px solid gold;   
    vertical-align: middle;   
    margin-right: 10px;      
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.9); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


        .logo a{
            color: gold;
            text-decoration: none;
        }
        .logo span {
            color: white;
        }
        nav {
            float: right;
            position: relative;
            width: 575px;
            height: 50px;
            justify-content: center;
            display: flex;
            align-items: center;
        }

        #nav-menu {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
            position: relative;
        }

        #nav-menu li {
            display: inline-block;
        }

        #nav-menu a {
            position: relative;
            display: inline-block;
            font-size: 1em;
            font-weight: 500;
            color: white;
            text-decoration: none;
            padding: 0 20px;
            z-index: 1;
            line-height: 50px;
        }

        nav span.hover-indicator {
            position: absolute;
            top: 0;
            left: 0;
            width: 70px;
            height: 100%;
            background: linear-gradient(to right, #3c4f19,gold);
            border-radius: 10px;
            transition: 0.5s;
            opacity: 0;
        }

        /* Only show hover effects on desktop (PC) */
        @media (min-width: 992px) {
            #nav-menu li:nth-child(1):hover ~ span.hover-indicator {
                left: 5px;
                opacity: 1;
            }

            #nav-menu li:nth-child(2):hover ~ span.hover-indicator {
                left: 87px;
                opacity: 1;
            }

            #nav-menu li:nth-child(3):hover ~ span.hover-indicator {
                left: 180px;
                opacity: 1;
            }

            #nav-menu li:nth-child(4):hover ~ span.hover-indicator {
                left: 278px;
                opacity: 1;
                width: 100px;
            }

            #nav-menu li:nth-child(5):hover ~ span.hover-indicator {
                left: 405px;
                opacity: 1;
            }

            #nav-menu li:nth-child(6):hover ~ span.hover-indicator {
                left: 495px;
                opacity: 1;
            }
        }

        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            float: right;
            margin-right: -2rem;
            line-height: 50px;
        }
        .close-menu{
            display: none;
        }


/* Hero Section */
.hero {
  background: url('../images/pora3') center/cover no-repeat;
  filter: brightness(60%);
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-bottom: -29px;
  
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
 
}


.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 40px;
}

.hero h1 span {
  color: gold;
}
.hero p{
  margin-bottom: 50px;
}

.btn {
  background: gold;
  color: black;
  padding: 30px 55px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  font-size: 28px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Hover effect (optional but looks clean) */
.btn:hover {
  background: #a88701; /* darker gold */
  color: white;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(45, 46, 8, 24);
}

/* Tablet view */
@media (max-width: 1024px) {
  .btn {
    padding: 22px 45px;
    font-size: 24px;
  }
}

/* Mobile view */
@media (max-width: 600px) {
  .btn {
    padding: 16px 30px;
    font-size: 18px;
    border-radius: 6px;
    letter-spacing: 0.5px;
  }
}

/* Very small screens */
@media (max-width: 400px) {
  .btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}
.btn-secondary {
  border: 2px solid gold;
  color: gold;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 4px;
}

section {
  padding: 80px 0;
}

.container {
  width: 90%;
  margin: auto;
}

        /* Responsive Styles */
        /* For mobile responsiveness */
        @media (max-width: 991px) {
            .mobile-nav-toggle {
                display: block;
            }
            
            nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.9);
                z-index: 1000;
                margin: 0;
                padding: 0;
                align-items: center;
                justify-content: center;
                float: none;
            }
            
            #nav-menu {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                height: 100%;
                padding-top: 50px;
                position: relative;
            }
            
            #nav-menu li {
                display: block;
                margin: 15px 0;
                text-align: center;
                width: 100%;
                position: relative;
                height: 50px;
            }
            
            #nav-menu a {
                font-size: 1.5em;
                padding: 10px 0;
                display: block;
                width: 100%;
                position: relative;
                z-index: 2;
            }
            
            nav.show {
                display: flex;
                animation: fadeIn 0.3s forwards;
            }
            
            @keyframes fadeIn {
                from { opacity: 0; }
                to { opacity: 1; }
            }

               
                        
            .close-menu {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 30px;
                color: white;
                background: none;
                border: none;
                cursor: pointer;
                display: none;
                z-index: 1002;
            }
            
            .close-menu.show {
                display: block;
            }
          
            .hero {
                z-index: 0;
                flex-direction: column;
                text-align: center;
                padding-top: 80px;
                height: auto;
                min-height: 100vh;
            }
            
            .hero-content {
                max-width: 100%;
                padding: 30px 0;
            }
            
            .hero-image {
                position: relative;
                right: auto;
                margin: 0 auto;
                width: 200px;
                height: 200px;
                margin-top: 30px;
            }
            .hero-image img{
                object-fit: contain;
            }
            .btn {
                background: gold;
               color: black;
               padding: 20px 45px;
               text-decoration: none;
               font-weight: 600;
               border-radius: 4px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            .contact-container {
                flex-direction: column;
                align-items: center;
            }
            .contact-form, .contact-info {
                width: 100%;
            }
        }

/* Responsive logo image */
@media (max-width: 1024px) {
    .logo img {
        width: 50px;
        height: 50px;
        margin-right: 8px;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 45px;
        height: 45px;
        margin-right: 6px;
    }

    header {
        padding: 10px 30px;
    }

    .logo a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 40px;
        height: 40px;
        margin-right: 1px;
    }

    .logo a {
        font-size: 18px;
    }

    header {
        padding: 8px 40px;
    }
    
}
/* ABOUT PREVIEW SECTION */
.about-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c2d1a; /* matches your header tone */
  color: white;
  padding: 80px 10%;
  gap: 50px;
  position: relative;
  flex-wrap: wrap;
  overflow: hidden;
}

.about-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* subtle dark overlay */
  z-index: 0;
}

.about-preview .container {
  flex: 1;
  z-index: 1;
  max-width: 600px;
}

.about-preview h2 {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInDown 1s ease;
}

.about-preview p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #f2f2f2;
  animation: fadeInUp 1s ease;
}

/* Secondary Button Style */
.btn-secondary {
  background: gold;
  color: #0c2d1a;
  padding: 15px 35px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #e6b800;
  color: white;
  transform: scale(1.05);
}

/* Add the side image */
.about-preview::after {
  content: "";
  flex: 1;
  background: url('../images/pora4') center/cover no-repeat;
  height: 400px;
  border-radius: 15px;
  z-index: 1;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-preview {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .about-preview::after {
    width: 100%;
    height: 300px;
    margin-top: 30px;
    border-radius: 10px;
  }

  .about-preview .container {
    max-width: 100%;
  }
}

/* Simple fade animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= SERVICES SECTION ================= */
.services {
  background: #0c2d1a;
  color: white;
  padding: 100px 4%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* gold gradient line under title */
.services h2 {
  font-size: 2.5rem;
  color: gold;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.services h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #3c4f19, gold);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* GRID layout for service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  
}

/* Individual service item */
.service-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  width: 105%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  border-color: gold;
}

/* Service image */
.service-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

.service-item:hover img {
  transform: scale(1.05);
}

/* Service title & text */
.service-item h3 {
  color: gold;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-item p {
  color: #0c2d1a;
  font-size: 1rem;
  line-height: 1.6;
}

/* Main button */
.services .btn {
  background: gold;
  color: #0c2d1a;
  padding: 18px 40px;
  font-weight: 700;
  border-radius: 6px;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.services .btn:hover {
  background: #e6b800;
  color: white;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services {
    padding: 70px 5%;
  }

  .service-item img {
    height: 180px;
  }

  .services h2 {
    font-size: 2rem;
  }

  .services .btn {
    font-size: 18px;
    padding: 14px 30px;
  }
}
.destinations {
  text-align: center;
  padding: 80px 20px;
  background: #f8f8f8;
}

.destinations h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

.destination-slideshow {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

.destination-slide {
  display: none;
  position: relative;
}

.destination-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
}

.destination-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 40px;
  border-radius: 10px;
  max-width: 90%;
}

.destination-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.destination-text p {
  font-size: 16px;
  margin-bottom: 15px;
}

.btn-secondary {
  background: gold;
  color: black;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  font-size: 16px;
  display: inline-block;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #e0b000;
  transform: scale(1.05);
}

.fade {
  animation-name: fade;
  animation-duration: 1.2s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .destinations h2 {
    font-size: 30px;
  }

  .destination-slide img {
    height: 380px;
  }

  .destination-text {
    bottom: 30px;
    padding: 15px 30px;
  }

  .destination-text h3 {
    font-size: 24px;
  }

  .destination-text p {
    font-size: 15px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .destinations {
    padding: 60px 15px;
  }

  .destinations h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .destination-slide img {
    height: 300px;
  }

  .destination-text {
    bottom: 20px;
    padding: 12px 20px;
  }

  .destination-text h3 {
    font-size: 20px;
  }

  .destination-text p {
    font-size: 14px;
  }

  .btn-secondary {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  .destination-slide img {
    height: 250px;
  }

  .destination-text {
    bottom: 15px;
    padding: 10px 15px;
  }

  .destination-text h3 {
    font-size: 18px;
  }

  .destination-text p {
    font-size: 13px;
  }

  .btn-secondary {
    padding: 8px 18px;
    font-size: 13px;
  }
}


/* Services */
.services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-item {
  background: #f8f8f8;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 100%;
  border-radius: 10px;
}

/* Destinations */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.destination-item img {
  width: 100%;
  border-radius: 10px;
}

.destination-item h3 {
  margin-top: 15px;
  color: #0c2d1a;
}

/* Footer */
footer {
  background: #0c2d1a;
  color: white;
  padding: 50px 0;
  text-align: center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  width: 90%;
  margin: auto;
}

footer a {
  color: gold;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  margin-top: 15px;
  font-size: 0.9rem;
}
/* ABOUT PAGE STYLES */
.about-hero {
  background: url('../images/pora1') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

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

.about-hero h1 {
  font-size: 2.5rem;
  color: gold;
}

.about-intro, .about-africa, .about-global, .about-commitment {
  padding: 80px 0;
  background: #fff;
}

.about-intro h2, 
.about-africa h2,
.about-global h2,
.about-commitment h2 {
  text-align: center;
  color: #0c2d1a;
  margin-bottom: 25px;
}

.about-intro p,
.about-africa p,
.about-global p,
.about-commitment p,
.about-africa ul,
.about-global ul,
.about-commitment ul {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  color: #333;
}

.about-africa ul,
.about-global ul,
.about-commitment ul {
  margin-top: 20px;
  padding-left: 20px;
}

.mission-vision {
  background: #0c2d1a;
  color: white;
  padding: 80px 0;
}

.mission-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  width: 90%;
  margin: auto;
}

.mission-box, .vision-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.mission-box h3, .vision-box h3 {
  color: gold;
  margin-bottom: 15px;
}



/* Modal base */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

/* Modal content */
.modal-content {
  background: #fff;
  border-radius: 40px;
  padding: 0;
  width: 100%;
  max-width: 1500px;
  position: relative;
  margin: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.enquiry-modal {
  padding: 50px 60px;
}

.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  z-index: 10;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.close:hover {
  background: #f0f0f0;
  color: #0c2d1a;
}

.enquiry-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.enquiry-header h2 {
  color: #0c2d1a;
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.enquiry-subtitle {
  color: #666;
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.6;
}

/* Step Indicator */
.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  transition: all 0.3s;
  cursor: pointer;
}

.step-dot.active {
  background: gold;
  width: 16px;
  height: 16px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Steps */
.step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step h3 {
  color: #0c2d1a;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.3px;
}

.step-description {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Form Inputs */
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 25px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  background: #fff;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: gold;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

.date-range-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.date-input-group {
  display: flex;
  flex-direction: column;
}

.date-input-group .form-label {
  margin-bottom: 8px;
}

.form-label {
  display: block;
  color: #0c2d1a;
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

/* Form Options */
.form-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.option-card {
  display: flex;
  align-items: center;
  padding: 22px 25px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
  min-height: 70px;
}

.option-card:hover {
  border-color: gold;
  background: #fffef5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
  margin-right: 12px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: gold;
}

.option-label {
  color: #333;
  font-size: 1.1rem;
  flex: 1;
  font-weight: 500;
}

.option-card:has(input:checked) {
  border-color: gold;
  background: #fffef5;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Countries Grid */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.country-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  min-height: 70px;
}

.country-card:hover {
  border-color: gold;
  background: #fffef5;
  transform: translateY(-2px);
}

.country-card input[type="checkbox"] {
  display: none;
}

.country-card:has(input:checked) {
  border-color: gold;
  background: #fffef5;
  color: #0c2d1a;
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Buttons */
.btn-enquiry {
  background: gold;
  color: #0c2d1a;
  border: none;
  padding: 18px 50px;
  margin-top: 30px;
  cursor: pointer;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-enquiry:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-enquiry:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .date-range-container {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 98%;
    max-width: 100%;
  }

  .enquiry-modal {
    padding: 35px 25px;
  }

  .enquiry-header h2 {
    font-size: 1.8rem;
  }

  .enquiry-subtitle {
    font-size: 1rem;
  }

  .step h3 {
    font-size: 1.5rem;
  }

  .step-description {
    font-size: 1rem;
  }

  .countries-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .form-input, .form-textarea, .form-select {
    font-size: 1rem;
    padding: 15px;
  }

  .option-label {
    font-size: 1rem;
  }

  .step-indicator {
    gap: 8px;
    padding: 0 10px;
  }

  .step-dot {
    width: 10px;
    height: 10px;
  }

  .step-dot.active {
    width: 12px;
    height: 12px;
  }

  .btn-enquiry {
    font-size: 1rem;
    padding: 16px 40px;
    max-width: 100%;
  }
}

/* ================= PAGE HERO SECTIONS ================= */
.page-hero {
  background: linear-gradient(rgba(12, 45, 26, 0.7), rgba(12, 45, 26, 0.7)), url('../images/pora3') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.page-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-hero .hero-content h1 span {
  color: gold;
}

.page-hero .hero-content p {
  font-size: 1.2rem;
}

/* ================= ABOUT PAGE STYLES ================= */
.about-story-content,
.section-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-story-content h2,
.section-content h2 {
  font-size: 2.5rem;
  color: #0c2d1a;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-story-content p,
.section-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.features-grid,
.expansion-grid,
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item,
.expansion-card,
.commitment-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid gold;
  transition: all 0.3s;
}

.feature-item:hover,
.expansion-card:hover,
.commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.feature-item h3,
.expansion-card h3,
.commitment-item h3 {
  color: #0c2d1a;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-item p,
.expansion-card p,
.commitment-item p {
  color: #666;
  line-height: 1.7;
}

.alt-bg {
  background: #f8f8f8;
  padding: 60px 0;
}

/* ================= SERVICES PAGE ================= */
.services-list {
  padding: 80px 0;
  background: #fff;
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card-detailed {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
  text-align: center;
  border-top: 4px solid gold;
}

.service-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: gold;
}

.service-icon i {
  font-size: 3.5rem;
}

.service-card-detailed h3 {
  color: #0c2d1a;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card-detailed p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: #0c2d1a;
  color: white;
  border-radius: 15px;
  margin-top: 40px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: gold;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* ================= DESTINATIONS PAGE ================= */
.destination-country {
  padding: 80px 0;
}

.country-title {
  font-size: 3rem;
  color: #0c2d1a;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.country-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.destination-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

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

.destination-image {
  height: 250px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.destination-info {
  padding: 25px;
}

.destination-info h3 {
  color: #0c2d1a;
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.destination-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-destination {
  display: inline-block;
  padding: 10px 25px;
  background: gold;
  color: #0c2d1a;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-destination:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

.cta-section-dest {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c2d1a 0%, #1a4d2e 100%);
  text-align: center;
  color: white;
}

.cta-section-dest h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: gold;
}

.cta-section-dest p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* ================= GALLERY PAGE ================= */
.gallery-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 12px 25px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: gold;
  color: #0c2d1a;
  border-color: gold;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(12, 45, 26, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.gallery-info {
  color: white;
}

.gallery-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.gallery-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Lightbox */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 2001;
}

#lightboxImage {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 20px;
  max-width: 800px;
  padding: 0 20px;
}

.lightbox-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* ================= CONTACT PAGE ================= */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.contact-form-wrapper,
.contact-info-wrapper {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 15px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  color: #0c2d1a;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.contact-form label {
  display: block;
  color: #0c2d1a;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: gold;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.btn-submit {
  background: gold;
  color: #0c2d1a;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.btn-submit:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

.contact-info {
  margin-bottom: 40px;
}

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

.info-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: gold;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-item h3 {
  color: #0c2d1a;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-item p {
  color: #666;
  margin: 0;
}

.info-item a {
  color: #0c2d1a;
  text-decoration: none;
}

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

.map-container {
  margin-bottom: 40px;
}

.map-container h3 {
  color: #0c2d1a;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.social-links h3 {
  color: #0c2d1a;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.social-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: gold;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #e6b800;
  transform: translateY(-3px);
}

.contact-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #0c2d1a 0%, #1a4d2e 100%);
  border-radius: 15px;
  color: white;
}

.contact-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: gold;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .expansion-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-detailed {
    grid-template-columns: 1fr;
  }

  .page-hero .hero-content h1 {
    font-size: 2rem;
  }
}
