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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3,
h4 {
    font-family: 'Trebuchet MS', sans-serif;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f4c542;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #d4a21f;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}

.hero-slider .slide.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

.hero-slider .overlay {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-slider .overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-slider .overlay p {
    font-size: 1.2rem;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== Tours Section ===== */
.tours-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tour-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 15px;
    text-align: center;
}

.tour-card img {
    width: 100%;
    border-radius: 8px;
}

.tour-card h3 {
    margin: 15px 0;
    color: #222;
}

/* ===== About Us ===== */
.about {
    background: #f9f9f9;
    font-size: 1.1rem;
    max-width: 800px;
    margin: auto;
    border-radius: 8px;
    padding: 40px 20px;
}

/* ===== Why Choose Us ===== */
.why-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.why-card {
    background: #fff;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ===== Gallery ===== */
.gallery-slider {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.gallery-slide {
    display: none;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    border-radius: 8px;
}

/* ===== Testimonials ===== */
.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
}

.testimonial {
    display: none;
}

.testimonial.active {
    display: block;
    font-style: italic;
}

.testimonial h4 {
    margin-top: 10px;
    color: #f4c542;
}

/* ===== Contact Section ===== */
.contact-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 300px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

/* ===== Footer ===== */
.footer {
    background: #222;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
}

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

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-nav {
    margin-top: 10px;
}

.footer-nav a {
    color: #f4c542;
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

    .tours-container,
    .why-container,
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .hero-slider .overlay h1 {
        font-size: 1.8rem;
    }
}