/* ==================================================
   GLOBAL CSS START
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.colspace{
    margin-top: -75px;
    color:#275167;
}


/* ==================================================
   GLOBAL CSS END
================================================== */


/* ==================================================
   HEADER CSS START
================================================== */

header {
    background: #0f3d56;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffd166;
}

/* ==================================================
   HEADER CSS END
================================================== */


/* ==================================================
   HERO BANNER CSS START
================================================== */

.hero-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-banner img {
    display: block;
    width: 100%;
    height: auto;
}

/* ==================================================
   HERO BANNER CSS END
================================================== */


/* ==================================================
   MAIN CONTENT CSS START
================================================== */

main {
    width: 100%;
}

.content-section {
    padding: 50px 0;
}

.content-section + .content-section {
    padding-top: 10px;
}

main h1 {
    color: #0f3d56;
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 18px;
}

main h2 {
    color: #0f3d56;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 18px;
}

main p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* ==================================================
   MAIN CONTENT CSS END
================================================== */


/* ==================================================
   IMAGE GRID CSS START
================================================== */

.featured-section {
    padding: 10px 0 55px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.banner-img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
}

/* ==================================================
   IMAGE GRID CSS END
================================================== */


/* ==================================================
   HOW TO BOOK / CTA CSS START
================================================== */

.booking-cta {
    width: 100%;
    background: #0f3d56;
    color: #ffffff;
    padding: 65px 20px;
}

.booking-cta-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-cta-content {
    text-align: center;
}

.booking-subtitle {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #ffd166;
}

.booking-cta-content h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 36px;
}

.booking-cta-content > p {
    max-width: 700px;
    margin: 0 auto 35px;
    color: #ffffff;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.booking-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 25px;

    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;

    text-align: left;
}

.step-number {
    flex-shrink: 0;

    font-size: 30px;
    line-height: 1;
    font-weight: 700;

    color: #ffd166;
}

.booking-step h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 19px;
}

.booking-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
}

.booking-btn {
    display: inline-block;

    padding: 14px 32px;

    background: #ffd166;
    color: #0f3d56;

    border-radius: 30px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition: 0.3s;
}

.booking-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* ==================================================
   HOW TO BOOK / CTA CSS END
================================================== */


/* ==================================================
   TESTIMONIAL CSS START
================================================== */

.testimonials-section {
    width: 100%;
    padding: 60px 20px;
    background: #f5f7f9;
}

.testimonials-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container > h2 {
    margin-bottom: 35px;
    text-align: center;
    color: #0f3d56;
    font-size: 32px;
}

.testimonial-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    padding: 28px;

    background: #ffffff;

    border: 1px solid #e4e4e4;
    border-radius: 14px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.testimonial-user img {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    object-fit: cover;
}

.testimonial-user h3 {
    margin: 0 0 3px;

    color: #0f3d56;

    font-size: 18px;
}

.testimonial-user span {
    color: #777;
    font-size: 14px;
}

.testimonial-rating {
    margin-bottom: 12px;

    color: #f5a623;

    font-size: 19px;
    letter-spacing: 2px;
}

.testimonial-text {
    margin: 0;

    color: #555;

    font-size: 15px;
    line-height: 1.7;
}

/* ==================================================
   TESTIMONIAL CSS END
================================================== */


/* ==================================================
   FOOTER CSS START
================================================== */

footer {
    background: #0f3d56;
    color: #ffffff;

    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-grid h3 {
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffd166;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);

    text-align: center;
}

/* ==================================================
   FOOTER CSS END
================================================== */


/* ==================================================
   TABLET RESPONSIVE CSS START
================================================== */

@media (max-width: 992px) {

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-steps {
        grid-template-columns: 1fr;
    }

    .testimonial-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

}

/* ==================================================
   TABLET RESPONSIVE CSS END
================================================== */


/* ==================================================
   MOBILE RESPONSIVE CSS START
================================================== */

@media (max-width: 768px) {

    .navbar {
        padding: 15px 0;

        flex-direction: column;

        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;

        gap: 10px 18px;
    }

    .content-section {
        padding: 35px 0;
    }

    main h1 {
        font-size: 30px;
    }

    main h2 {
        font-size: 26px;
    }

    .booking-cta {
        padding: 50px 15px;
    }

    .booking-cta-content h2 {
        font-size: 30px;
    }

    .testimonials-section {
        padding: 50px 15px;
    }

    .testimonials-container > h2 {
        font-size: 28px;
    }

}

/* ==================================================
   MOBILE RESPONSIVE CSS END
================================================== */


/* ==================================================
   SMALL MOBILE RESPONSIVE CSS START
================================================== */

@media (max-width: 480px) {

    .container,
    .booking-cta-container,
    .testimonials-container {
        width: 92%;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        font-size: 14px;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .banner-img {
        height: auto;
    }

    main h1 {
        font-size: 27px;
    }

    main h2 {
        font-size: 24px;
    }

    .booking-step {
        padding: 20px;
    }

    .testimonial-card {
        padding: 22px;
    }

}