/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;
    color: #1f2933;
    background-color: #ffffff;
    line-height: 1.6;
}


img {
    width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background-color: white;

    box-shadow:
        0 2px 15px rgba(0, 0, 0, 0.08);
}


.nav-container {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.logo {
    color: #087f5b;

    font-size: 23px;
    font-weight: 700;

    display: flex;
    align-items: center;
    gap: 8px;
}


.logo span {
    color: #0b7fab;
}


.logo small {
    display: block;

    font-size: 9px;
    font-weight: 400;

    color: #777;

    margin-left: -4px;
}

/* =========================
   BOOTSTRAP NAVIGATION
========================= */

.travel-navbar {
    width: 100%;
}

.travel-navbar .nav-link {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}


/* Hover Effect */

.travel-navbar .nav-link:hover {
    color: #07865f;
    transform: translateY(-2px);
}


/* Underline Animation */

.travel-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 3px;
    height: 2px;
    background-color: #07865f;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}


.travel-navbar .nav-link:hover::after {
    transform: scaleX(1);
}


/* Bootstrap Mobile Button */

.travel-navbar .navbar-toggler {
    border: 2px solid #07865f;
    border-radius: 10px;
    padding: 6px 9px;
    transition: all 0.3s ease;
}


/* Button Hover */

.travel-navbar .navbar-toggler:hover {
    background-color: #e8f7f1;
    transform: scale(1.05);
}


/* Remove Bootstrap default focus outline */

.travel-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(7, 134, 95, 0.2);
}


/* Book Now Button */

.travel-navbar .nav-book-btn {
    background-color: #07865f;
    color: white !important;

    padding: 10px 22px;
    margin-left: 10px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}


/* Book Now Hover */

.travel-navbar .nav-book-btn:hover {
    background-color: #056c4d;
    color: white !important;

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(7, 134, 95, 0.25);
}

/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 991.98px) {

    .travel-navbar .navbar-collapse {
        background-color: white;

        margin-top: 15px;

        padding: 15px;

        border-radius: 15px;

        box-shadow:
            0 10px 30px
            rgba(0, 0, 0, 0.12);
    }


    .travel-navbar .nav-link {
        padding: 12px 15px !important;

        border-radius: 8px;

        text-align: center;
    }


    .travel-navbar .nav-link:hover {
        background-color: #f0faf6;

        transform: none;
    }


    .travel-navbar .nav-link::after {
        display: none;
    }


    .travel-navbar .nav-book-btn {
        display: block;

        text-align: center;

        margin: 10px 0 5px;

        padding: 12px;
    }

}

/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    position: relative;

    background-image:
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 40, 60, 0.85),
            rgba(0, 60, 70, 0.35)
        );
}


.hero-content {
    position: relative;

    color: white;

    max-width: 750px;

    padding-top: 80px;
}


.hero-tag {
    color: #8ee3bb;

    font-weight: 600;

    margin-bottom: 15px;
}


.hero h1 {
    font-size: clamp(38px, 6vw, 68px);

    line-height: 1.15;

    margin-bottom: 25px;
}


.hero h1 span {
    color: #71d9a8;
}


.hero-description {
    font-size: 17px;

    max-width: 650px;

    margin-bottom: 35px;

    color: #f0f0f0;
}


.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-block;

    padding: 13px 25px;

    border-radius: 30px;

    border: none;

    cursor: pointer;

    font-weight: 600;

    text-decoration: none;

    opacity: 1;

    transition: all 0.3s ease;
}


/* Explore Packages */

.primary-btn {
    background-color: #07865f !important;

    color: #ffffff !important;
}

.primary-btn:hover {
    background-color: #056c4d !important;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(7, 134, 95, 0.3);
}


/* WhatsApp Enquiry */

.whatsapp-btn {
    background-color: #25d366 !important;

    color: #ffffff !important;
}

.whatsapp-btn:hover {
    background-color: #1da851 !important;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
/* =========================
   SECTIONS
========================= */

.section {
    padding: 90px 0;
}


.section-title {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 55px;
}


.section-title p,
.contact-label {
    color: #07865f;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.section-title h2 {
    color: #123b4a;

    font-size: 35px;

    line-height: 1.3;
}


.section-title span {
    display: block;

    color: #777;

    margin-top: 15px;
}


.title-line {
    width: 60px;
    height: 4px;

    background-color: #07865f;

    border-radius: 10px;

    margin: 15px auto;
}


/* =========================
   ABOUT
========================= */

.about {
    background-color: #f5faf8;
}


.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}


.about-image {
    position: relative;
}


.about-image img {
    height: 500px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.15);
}


.experience-box {
    position: absolute;

    bottom: 25px;
    right: -20px;

    background-color: #07865f;

    color: white;

    padding: 20px;

    border-radius: 15px;

    display: flex;

    gap: 12px;

    align-items: center;
}


.experience-box strong {
    font-size: 32px;
}


.experience-box span {
    font-size: 12px;
}


.about-content h3 {
    color: #123b4a;

    font-size: 30px;

    margin-bottom: 20px;
}


.about-content > p {
    color: #666;

    margin-bottom: 15px;
}


.about-points {
    margin-top: 30px;
}


.point {
    display: flex;

    gap: 15px;

    margin-bottom: 20px;
}


.point-icon {
    min-width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #dff5eb;

    color: #07865f;

    border-radius: 50%;

    font-weight: bold;
}


.point h4 {
    color: #123b4a;
}


.point p {
    color: #777;

    font-size: 14px;
}


/* =========================
   PACKAGES
========================= */

.packages {
    background-color: white;
}


.package-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.package-card {
    background-color: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.09);

    transition: 0.3s;
}


.package-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.15);
}


.package-image {
    height: 230px;

    position: relative;

    overflow: hidden;
}


.package-image img {
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}


.package-card:hover
.package-image img {
    transform: scale(1.08);
}


.destination-tag {
    position: absolute;

    top: 15px;
    left: 15px;

    background-color: white;

    color: #07865f;

    padding: 5px 12px;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 600;
}


.package-content {
    padding: 25px;
}


.package-content h3 {
    color: #123b4a;

    margin-bottom: 10px;
}


.package-content p {
    color: #777;

    font-size: 14px;

    margin-bottom: 20px;
}


.package-info {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 0;

    border-top: 1px solid #eee;

    border-bottom: 1px solid #eee;

    margin-bottom: 20px;
}


.package-info span {
    color: #777;

    font-size: 12px;
}


.package-info strong {
    color: #07865f;
}


.enquire-btn {
    width: 100%;

    border: 2px solid #07865f;

    color: #07865f;

    background-color: white;

    padding: 11px;

    border-radius: 25px;

    cursor: pointer;

    font-weight: 600;

    transition: 0.3s;
}


.enquire-btn:hover {
    background-color: #07865f;

    color: white;
}


/* =========================
   SERVICES
========================= */

.services {
    background-color: #f5faf8;
}


.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.service-card {
    background-color: white;

    padding: 35px 25px;

    text-align: center;

    border-radius: 15px;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.06);

    transition: 0.3s;
}


.service-card:hover {
    transform: translateY(-5px);
}


.service-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    background-color: #e0f5ec;

    border-radius: 50%;

    font-size: 28px;
}


.service-card h3 {
    color: #123b4a;

    margin-bottom: 10px;
}


.service-card p {
    color: #777;

    font-size: 14px;
}


/* =========================
   WHY US
========================= */

.why-us {
    background-color: #ffffff;
}


.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.why-card {
    padding: 30px;

    border-left: 4px solid #07865f;

    background-color: #f5faf8;

    border-radius: 0 15px 15px 0;
}


.why-number {
    color: #07865f;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 15px;
}


.why-card h3 {
    color: #123b4a;

    margin-bottom: 10px;
}


.why-card p {
    color: #777;

    font-size: 14px;
}


/* =========================
   REVIEWS
========================= */

.reviews {
    background-color: #f5faf8;
}


.review-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.review-card {
    background-color: white;

    padding: 30px;

    border-radius: 15px;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.06);
}


.stars {
    color: #f5b301;

    font-size: 20px;

    margin-bottom: 15px;
}


.review-card p {
    color: #666;

    font-size: 14px;

    font-style: italic;

    margin-bottom: 20px;
}


.review-card h4 {
    color: #123b4a;
}


.review-card span {
    color: #07865f;

    font-size: 12px;
}


/* =========================
   CONTACT
========================= */

.contact {
    background-color: #ffffff;
}


.contact-wrapper {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 60px;

    background-color: #f5faf8;

    padding: 60px;

    border-radius: 25px;
}


.contact-info h2 {
    color: #123b4a;

    font-size: 38px;

    line-height: 1.3;

    margin-bottom: 20px;
}


.contact-info > p {
    color: #666;

    margin-bottom: 35px;
}


.contact-detail {
    display: flex;

    gap: 15px;

    margin-bottom: 25px;
}


.contact-detail > span {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #dff5eb;

    border-radius: 50%;
}


.contact-detail strong {
    color: #123b4a;
}


.contact-detail p {
    color: #777;

    font-size: 14px;
}


/* Form */

.contact-form {
    background-color: white;

    padding: 35px;

    border-radius: 15px;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.06);
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    color: #123b4a;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 7px;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #ddd;

    border-radius: 8px;

    padding: 12px 15px;

    outline: none;

    font-size: 14px;
}


.form-group textarea {
    resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #07865f;
}


.submit-btn {
    width: 100%;
}


/* =========================
   FOOTER
========================= */

.footer {
    background-color: #123b4a;

    color: white;

    padding-top: 60px;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 45px;
}


.footer-logo {
    font-size: 25px;

    font-weight: 700;

    color: #71d9a8;

    margin-bottom: 15px;
}


.footer-about p {
    color: #cbd5d8;

    max-width: 400px;

    font-size: 14px;
}


.footer h3 {
    margin-bottom: 20px;
}


.footer-contact p {
    color: #cbd5d8;

    font-size: 14px;

    margin-bottom: 10px;
}


.social-icons {
    display: flex;

    gap: 10px;
}


.social-icons a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    transition: 0.3s;
}


.social-icons a:hover {
    background-color: #07865f;
}


.copyright {
    border-top: 1px solid
        rgba(255, 255, 255, 0.1);

    text-align: center;

    padding: 20px;

    color: #aebec2;

    font-size: 13px;
}


/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #25d366;

    color: white;

    border-radius: 50%;

    font-size: 28px;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.2);

    z-index: 999;

    transition: 0.3s;
}


.floating-whatsapp:hover {
    transform: scale(1.1);
}


/* =========================
   RESPONSIVE DESIGN
========================= */


/* Tablet */

@media (max-width: 992px) {

    .navbar {
        gap: 15px;
    }


    .about-grid {
        grid-template-columns: 1fr;
    }


    .about-image img {
        height: 400px;
    }


    .package-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .contact-wrapper {
        grid-template-columns: 1fr;

        padding: 40px;
    }

}


/* Mobile */

@media (max-width: 768px) {

    .navbar {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        background-color: white;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 20px;

        box-shadow:
            0 5px 15px
            rgba(0, 0, 0, 0.1);
    }


    .navbar.active {
        display: flex;
    }


    .navbar a {
        padding: 10px;

        text-align: center;
    }


    .menu-btn {
        display: block;
    }


    .hero {
        min-height: 90vh;
    }


    .hero h1 {
        font-size: 40px;
    }


    .hero-description {
        font-size: 15px;
    }


    .section {
        padding: 65px 0;
    }


    .section-title h2 {
        font-size: 28px;
    }


    .package-grid {
        grid-template-columns: 1fr;
    }


    .service-grid {
        grid-template-columns: 1fr;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .review-grid {
        grid-template-columns: 1fr;
    }


    .form-row {
        grid-template-columns: 1fr;
    }


    .contact-wrapper {
        padding: 25px;
    }


    .contact-info h2 {
        font-size: 30px;
    }


    .contact-form {
        padding: 20px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

}


/* Small Mobile */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }


    .hero h1 {
        font-size: 34px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .btn {
        text-align: center;

        width: 100%;
    }


    .about-image img {
        height: 350px;
    }


    .experience-box {
        right: 10px;

        bottom: 15px;
    }


    .floating-whatsapp {
        width: 52px;
        height: 52px;

        right: 15px;
        bottom: 15px;
    }

}