/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: white;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.top-content {
    display: flex;
    justify-content: space-between;
    color: #D4AF37;
}

/* ================= HEADER ================= */
.header {
    background: #000000;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.logo img {
    height: 90px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* MOBILE */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    background: white;
    height: 3px;
    width: 25px;
    margin: 4px 0;
}

/* ================= FLOATING BUTTONS ================= */

.whatsapp-float,
.call-float {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

/* ================= POPULAR TRIPS ================= */

.popular-trips {
    padding: 80px 0;
    background: #000;
}

/* ================= FAST BLINKING HEADING ================= */

.blink-heading {
    animation: blinkFast 0.5s infinite;
}

@keyframes blinkFast {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #D4AF37;
}

.trip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.trip-card {
    background: #111;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(212,175,55,0.1);
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212,175,55,0.3);
}

.trip-card h3 {
    color: #D4AF37;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.trip-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #ccc;
}

.trip-img {
    overflow: hidden;
}

.trip-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s ease;
}

.trip-card:hover .trip-img img {
    transform: scale(1.1);
}


/* Buttons */

.trip-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-book {
    background: #D4AF37;
    color: #000;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-book:hover {
    background: #fff;
}

.btn-itinerary {
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-itinerary:hover {
    background: #D4AF37;
    color: #000;
} 

/* WhatsApp Button */
.whatsapp-float {
    bottom: 90px;
    background: #25D366;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Call Button */
.call-float {
    bottom: 20px;
    background: #ffffff;
    color: #000;
}

.call-float:hover {
    transform: scale(1.1);
}

/* ================= MOBILE ================= */

@media(max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        text-align: center;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}
