
/* ===== GLOBAL ===== */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f9f9f9;
}

h1, h2 {
    color: #0a1f44;
}

html {
    scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
.navbar {
    background: linear-gradient(90deg, #0a1f44, #008751, #fcd116);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

/* ===== HERO ===== */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('../images/travel.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding-top: 150px;
}

.hero h2 {
    font-size: 42px;
}

.hero p {
    font-size: 18px;
}

/* BUTTON */
.btn {
    background: #fcd116;
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background: #ff6600;
    color: white;
}

/* CLOCK */
.clock {
    margin-top: 15px;
    font-size: 18px;
}

/* ===== SERVICES ===== */
.services {
    padding: 60px;
    text-align: center;
    background: white;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* CARDS */
.card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    border-top: 5px solid #008751;
}

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

/* ===== BOOKING ===== */
.form-box {
    max-width: 600px;
    margin: auto;
}

.form-box input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #008751;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}

button:hover {
    background: #0a1f44;
}

/* ===== CONTACT ===== */
.contact {
    padding: 60px;
    text-align: center;
    background: #eef5f2;
}

/* ===== WHATSAPP ===== */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* ===== FOOTER ===== */
footer {
    background: #0a1f44;
    color: white;
    text-align: center;
    padding: 15px;
}

/* spacing fix */
section {
    padding-top: 80px;
}
