/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #001F3F;
}


/* =========================
   GLOBAL LAYOUT
========================= */

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

section {
    padding: 80px 0;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    background: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #001F3F;
    font-weight: 500;
}

.nav-links a:hover {
    color: #b53694;
}

/* HAMBURGER */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: #001F3F;
}


/* =========================
   HERO (VIDEO BACKGROUND)
========================= */

.travels-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background Video */

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: -1;
}

/* Hero Text */

.hero-text {
    max-width: 700px;
    padding: 20px;
    color: white;
    animation: fadeUp 1.2s ease;
}

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

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.hero-btn {
    background: #ff7f50;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
}


/* =========================
   SOCIAL PROOF
========================= */

.trust-strip {
    background: #f5f5f5;
    text-align: center;
    padding: 15px;
    font-weight: 500;
}


/* =========================
   SERVICES
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card h3 {
    color: #0F52BA;
    margin-bottom: 15px;
}


/* =========================
   WHY CHOOSE US
========================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    text-align: center;
}

.why-card h3 {
    color: #b53694;
    margin-bottom: 12px;
}


/* =========================
   DESTINATIONS
========================= */

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 40px;
}

.destination-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    text-align: center;
}

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

.destination-card h3 {
    margin: 10px 0;
    color: #0F52BA;
}

.destination-card:hover {
    transform: scale(1.05);
}


/* =========================
   CTA SECTION
========================= */

.travels-cta {
    background: #001F3F;
    color: white;
    text-align: center;
    padding: 100px 20px 150px;
}

.cta-btn {
    margin: 10px;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.outline-btn {
    background: transparent;
    border: 2px solid #ff7f50;
    color: #ff7f50;
}

.outline-btn:hover {
    background: #ff7f50;
    color: white;
}


/* =========================
   FLOATING WHATSAPP
========================= */

.whatsapp-float {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #25D366;
    border-radius: 50%;
    padding: 0;
    text-decoration: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}




/* =========================
   ANIMATION
========================= */

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


/* =========================
   FOOTER
========================= */

.footer {
    background: #0A1F44;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer h3, 
.footer h4 {
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width:1024px){

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

}

@media (max-width:768px){

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

    .travels-hero{
        height:70vh;
    }

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

    .hero-text p{
        font-size:1rem;
    }

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


}

@media (max-width:768px){

    .nav-links{
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        gap: 15px;
        display: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

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

    .menu-toggle{
        display: flex;
    }

}

