/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #111;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Navbar ===== */
.navbar {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.nav-logo i {
    margin-right: 0.5rem;
    color: #ffb703;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #ffb703;
}

/* ===== Hamburger Menu (Mobile) ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: #000;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 1rem;
        border-left: 2px solid #ffb703;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
}

.highlight {
    color: #ffb703;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffb703;
    color: #000;
}

.btn-primary:hover {
    background: #ffa600;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* ===== Hero Stats ===== */
.hero-stats {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: #ffb703;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 20px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 30px;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

/* ===== Features Section ===== */
.features {
    background: #f5f5f5;
    padding: 4rem 2rem;
    color: #111;
}

.features .container {
    max-width: 1200px;
    margin: auto;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.feature-card {
    flex: 1 1 30%;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ffb703;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #222;
}

.feature-card p {
    color: #555;
    font-size: 0.95rem;
}

/* ===== Section Header (Shared) ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.section-header p {
    color: #ccc;
    font-size: 1rem;
}

/* ===== Travel Packages Section ===== */
.packages {
    background: #111;
    padding: 4rem 2rem;
}

.packages .section-header h2 {
    color: #ffb703;
}

.packages-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.package-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.package-image {
    position: relative;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-image:hover img {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffb703;
    color: #111;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.package-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.package-location {
    color: #ffb703;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-description {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 1rem;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.package-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #222;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-price {
    color: #ffb703;
    font-weight: 600;
}

.price {
    font-size: 1.4rem;
}

.price-label {
    font-size: 0.8rem;
    color: #ccc;
}

/* Button Outline */
.btn-outline {
    background: transparent;
    border: 2px solid #ffb703;
    color: #ffb703;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.btn-outline:hover {
    background: #ffb703;
    color: #111;
}

/* ===== Travel Kits Section ===== */
.travel-kits {
    background: #f5f5f5;
    padding: 4rem 2rem;
    color: #111;
}

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

.kit-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.kit-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.kit-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.kit-rating {
    color: #ffb703;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.kit-rating i {
    margin-right: 2px;
}

.kit-rating span {
    color: #555;
    font-size: 0.85rem;
    margin-left: 0.3rem;
}

.kit-features {
    list-style: disc;
    margin-left: 1rem;
    color: #444;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.kit-price {
    margin-bottom: 1rem;
}

.current-price {
    color: #111;
    font-weight: bold;
    font-size: 1.2rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.kit-content .btn {
    align-self: start;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
    }

    .package-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: #111;
    padding: 4rem 2rem;
    color: #fff;
    text-align: center;
}

.testimonials .section-header h2 {
    color: #ffb703;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 0 1rem;
}

.testimonial-card.active {
    opacity: 1;
}

.testimonial-content {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 2rem;
    color: #ffb703;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #ffb703;
}

.author-info h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.85rem;
    color: #ccc;
}

/* Testimonial Dots */
.testimonial-dots {
    margin-top: 1rem;
}

.testimonial-dots .dot {
    height: 10px;
    width: 10px;
    background-color: #777;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: #ffb703;
}

/* ===== Newsletter Section ===== */
.newsletter {
    background: #ffb703;
    padding: 3rem 2rem;
    color: #111;
}

.newsletter .container {
    max-width: 1000px;
    margin: auto;
}

.newsletter-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    font-size: 1rem;
    color: #333;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"]  {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    flex: 1;
    min-width: 250px;
}
.newsletter-form input[type="text"]  {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    flex: 1;
    min-width: 250px;
}


.newsletter-form .btn {
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonial-author {
        flex-direction: column;
    }
}

/* ===== Footer Section ===== */
.footer {
    background-color: #111;
    color: #eee;
    padding: 4rem 2rem 2rem;
    font-family: 'Poppins', sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    padding-bottom: 2rem;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffb703;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: #ffb703;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffb703;
    display: inline-block;
    padding-bottom: 0.3rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #ffb703;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffb703;
}

.contact-info p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.6rem;
    color: #ffb703;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #777;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section {
        width: 100%;
    }

    .footer-bottom {
        margin-top: 1.5rem;
    }
}

/* ===== Modal Styles ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #000;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

.modal-content h2 {
  margin-top: 0;
  color: #000;
}

.modal-content label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: 500;
}

.modal-content input[type="text"],
.modal-content input[type="tel"],
.modal-content input[type="email"],
.modal-content textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.modal-content input[type="checkbox"] {
  margin-right: 0.5rem;
}

.modal-content .btn {
  margin-top: 1.5rem;
  width: 100%;
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: #555;
  cursor: pointer;
  font-weight: bold;
}

.close:hover {
  color: #000;
}

/* ===== Modal Styles ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #000;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

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

.modal-content h2 {
  margin-top: 0;
  color: #fff;
}

.modal-content label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.modal-content button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.8rem;
  font-weight: 600;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: #555;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* Buttons container */
.policy-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  padding: 0.6rem 1.2rem;
  background-color: #0077cc;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #005fa3;
}

/* Modal base styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Modal content box */
.modal-content {
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 450px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  animation: fadeInScale 0.3s ease forwards;
}

@keyframes fadeInScale {
  0% {opacity: 0; transform: scale(0.95);}
  100% {opacity: 1; transform: scale(1);}
}

/* Close button */
.close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #000;
}

/* Modal heading */
.modal-content h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #0077cc;
}

/* Modal paragraph */
.modal-content p {
  line-height: 1.5;
  color: #333;
}


