/* ROOT VARIABLES */
:root {
    --primary-blue: #004a99;
    --accent-yellow: #ffcc00;
    --dark-grey: #333;
    --light-grey: #f4f4f4;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
}

/* NAVIGATION */
header {
    background: var(--white);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #003366;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* FULL SCREEN */
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ✅ KEY FIX */
    z-index: 0;
}

/* OVERLAY */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 74, 153, 0.45); /* bluish overlay */
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

/* TEXT */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
}

/* BOOKING CARD */
.booking-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: #333;
    width: 100%;
}

/* FORM */
.booking-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.input-group label {
    margin-bottom: 5px;
    font-size: 14px;
}

.input-group input {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* BUTTON */
.btn-search {
    background: #ffcc00;
    border: none;
    padding: 0 2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    height: 55px;
    align-self: flex-end;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .booking-form {
        flex-direction: column;
    }

    .btn-search {
        width: 100%;
    }
}

/* BOOKING CARD */
.booking-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: var(--shadow);
    color: var(--dark-grey);
}

.booking-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.input-group input {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* SEARCH BUTTON */
.btn-search {
    background: var(--accent-yellow);
    border: none;
    padding: 0 2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    height: 55px;
    align-self: flex-end;
    transition: 0.3s;
}

.btn-search:hover {
    background: #e6b800;
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

/* CARD */
.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.feature-card {
    padding: 2rem;
    text-align: center;
}

.feature-card i {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* IMAGES */
.vehicle-card img,
.dest-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.dest-card {
    position: relative;
    height: 300px;
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem;
}

/* FOOTER */
footer {
    background: var(--primary-blue);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
}

/* SOCIAL ICONS */
.social-icons a {
    color: white;
    font-size: 18px;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-yellow);
    transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: 60vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .booking-form {
        flex-direction: column;
    }
}
/* TOURS SECTION */
.tours-section {
    background: #f2f2f2;
    padding: 60px 20px;
    text-align: center;
}

/* TEXT */
.section-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 10px;
}

.section-title {
    font-size: 28px;
    letter-spacing: 5px;
    margin-bottom: 40px;
    color: #0b1c3d;
}

/* GRID */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARD */
.tour-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    padding-bottom: 20px;
    transition: 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.tour-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* TEXT */
.tour-card h3 {
    font-size: 18px;
    margin: 15px;
    color: #0b1c3d;
}

.tour-card p {
    font-size: 14px;
    margin: 0 15px;
    color: #555;
}

/* BUTTONS */
.tour-buttons {
    margin-top: 40px;
}

.btn-dark {
    background: black;
    color: white;
    padding: 10px 25px;
    margin-right: 15px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-blue {
    background: #004a99;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
}

/* HOVER */
.btn-dark:hover {
    background: #333;
}

.btn-blue:hover {
    background: #003366;
}

.logo_footer img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* SECTION BACKGROUND */
.services-strip {
    background: #f2f2f2;
    padding: 30px 20px;
}

/* CONTAINER */
.services-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SERVICE BOX */
.service-box {
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 250px;
    border: 1px solid #ddd;
}

/* ICON */
.service-box i {
    font-size: 22px;
}

/* TEXT */
.service-box span {
    font-size: 16px;
    font-weight: 600;
    color: #0b1c3d;
}

/* COLORS (MATCH YOUR IMAGE) */
.service-box:nth-child(1) i {
    color: #2f80ed; /* blue */
}

.service-box:nth-child(2) i {
    color: #f2c94c; /* yellow */
}

.service-box:nth-child(3) i {
    color: #27ae60; /* green */
}

/* HOVER EFFECT */
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}