﻿

:root {
    --primary: #087f8c;
    --primary-dark: #055b65;
    --secondary: #f4b942;
    --dark: #102a31;
    --text: #506268;
    --light: #f5fafb;
    --white: #ffffff;
    --border: #e5eeee;
    --shadow: 0 15px 50px rgba(15, 52, 60, .10);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

/* =========================
           HEADER
        ========================= */

.topbar {
    background: var(--dark);
    color: #fff;
    padding: 9px 0;
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 22px;
    align-items: center;
}

.topbar i {
    color: var(--secondary);
    margin-right: 5px;
}

.navbar {
    height: 76px;
    background: #fff;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 20px rgba(0,0,0,.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 700;
    font-size: 24px;
}

.logo-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

    .nav-links a:hover {
        color: var(--primary);
    }

.nav-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 8px;
}

.mobile-menu {
    display: none;
    font-size: 25px;
    color: var(--dark);
    cursor: pointer;
}

/* =========================
           HERO
        ========================= */

.hero {
    min-height: 680px;
    position: relative;
    background: linear-gradient(90deg, rgba(4,37,43,.82) 0%, rgba(4,37,43,.55) 45%, rgba(4,37,43,.15) 100%), url("/hastag/img/carousel/4.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    width: min(760px, 100%);
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}

.hero-badge-h {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    margin-bottom: 22px;
}

    .hero-badge-h span {
        color: var(--secondary);
    }

.hero-text {
    font-size: 19px;
    max-width: 650px;
    color: rgba(255,255,255,.9);
    margin-bottom: 28px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-feature {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.18);
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
}

    .hero-feature i {
        color: var(--secondary);
        margin-right: 6px;
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: none;
    cursor: pointer;
    padding: 15px 24px;
    border-radius: 9px;
    font-weight: 700;
    transition: .25s;
}

.btn-primary {
    background: var(--secondary);
    color: #182d30;
}

    .btn-primary:hover {
        background: #ffc95d;
        transform: translateY(-2px);
    }

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.5);
    margin-left: 10px;
}

    .btn-outline:hover {
        background: #fff;
        color: var(--dark);
    }

.hero-price {
    margin-top: 20px;
    font-size: 14px;
}

    .hero-price strong {
        font-size: 26px;
        color: #fff;
    }

/* =========================
           TRUST
        ========================= */

.trust {
    margin-top: -45px;
    position: relative;
    z-index: 5;
}

.trust-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 28px 35px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    border-right: 1px solid var(--border);
}

    .trust-item:last-child {
        border: none;
    }

.trust-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #eaf8f9;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trust-item strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
}

.trust-item small {
    color: #7b8b8f;
    font-size: 12px;
}

/* =========================
           SECTIONS
        ========================= */

section {
    padding: 90px 0;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.eyebrow {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 10px;
}

.h2 {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 45px);
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-head p {
    color: var(--text);
}

/* =========================
           INTRO
        ========================= */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image {
    position: relative;
}

    .intro-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 25px;
    }

.experience-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 15px;
    padding: 20px 25px;
    text-align: center;
}

    .experience-badge strong {
        display: block;
        color: var(--primary);
        font-size: 30px;
    }

.intro-content h2 {
    text-align: left;
}

.intro-content > p {
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

    .check-list li {
        display: flex;
        gap: 12px;
        color: var(--dark);
        font-weight: 500;
    }

    .check-list i {
        color: var(--primary);
        margin-top: 5px;
    }

/* =========================
           PACKAGES
        ========================= */

.packages {
    background: var(--light);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.package-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: .3s;
}

    .package-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
    }

.package-image {
    height: 220px;
    position: relative;
}

    .package-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: #182d30;
    padding: 6px 11px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
}

.package-body {
    padding: 25px;
}

    .package-body .h3 {
        color: var(--dark);
        font-family: "Playfair Display", serif;
        font-size: 25px;
        margin-bottom: 7px;
    }

.duration {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 15px;
}

.package-price {
    font-size: 25px;
    color: var(--dark);
    font-weight: 700;
    margin: 18px 0;
}

    .package-price small {
        font-size: 12px;
        font-weight: 400;
        color: #879498;
    }

.package-list {
    list-style: none;
    display: grid;
    gap: 9px;
    margin-bottom: 22px;
    font-size: 14px;
}

    .package-list i {
        color: var(--primary);
        width: 20px;
    }

.package-btn {
    width: 100%;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
}

    .package-btn:hover {
        background: var(--primary);
        color: #fff;
    }

/* =========================
           DESTINATIONS
        ========================= */

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.destination {
    position: relative;
    height: 330px;
    overflow: hidden;
    border-radius: 16px;
    color: #fff;
}

    .destination img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

    .destination:hover img {
        transform: scale(1.08);
    }

    .destination:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(transparent 35%, rgba(0,0,0,.8));
    }

.destination-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

    .destination-content .h3 {
        font-family: "Playfair Display", serif;
        font-size: 25px;
        margin-bottom: 3px;
    }

    .destination-content p {
        font-size: 12px;
        color: rgba(255,255,255,.85);
    }

/* =========================
           EXPERIENCES
        ========================= */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.experience {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: .25s;
}

    .experience:hover {
        box-shadow: var(--shadow);
        border-color: transparent;
    }

.experience-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: #eaf8f9;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.experience .h3 {
    color: var(--dark);
    margin-bottom: 8px;
}

/* =========================
           ITINERARY
        ========================= */

.itinerary-section {
    background: var(--dark);
    color: #fff;
}

    .itinerary-section h2 {
        color: #fff;
    }

    .itinerary-section .section-head p {
        color: #b9cacc;
    }

.timeline {
    max-width: 850px;
    margin: auto;
    position: relative;
}

    .timeline:before {
        content: "";
        position: absolute;
        left: 22px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(255,255,255,.15);
    }

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    height: 46px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.timeline-item .h3 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 5px;
}

.timeline-item p {
    color: #b8c9cb;
    font-size: 14px;
}

/* =========================
           GALLERY
        ========================= */

.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 230px 230px;
    gap: 12px;
}

    .gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

        .gallery img:first-child {
            grid-row: span 2;
        }

/* =========================
           FAQ
        ========================= */

.faq-container {
    max-width: 850px;
    margin: auto;
}

details {
    border: 1px solid var(--border);
    margin-bottom: 12px;
    border-radius: 10px;
    background: #fff;
}

summary {
    cursor: pointer;
    padding: 19px 22px;
    color: var(--dark);
    font-weight: 700;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    summary:after {
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--primary);
    }

details[open] summary:after {
    transform: rotate(180deg);
}

details p {
    padding: 0 22px 20px;
    font-size: 14px;
}

/* =========================
           BOOKING
        ========================= */

.booking-section {
    background: linear-gradient(90deg, rgba(5,91,101,.96), rgba(8,127,140,.9)), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-content h2 {
    color: #fff;
    text-align: left;
}

.booking-content p {
    color: rgba(255,255,255,.85);
    margin-bottom: 25px;
}

.booking-points {
    list-style: none;
    display: grid;
    gap: 12px;
}

    .booking-points i {
        color: var(--secondary);
        margin-right: 8px;
    }

.booking-form {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    color: var(--dark);
    box-shadow: var(--shadow);
}

    .booking-form .h3 {
        font-family: "Playfair Display", serif;
        font-size: 28px;
        margin-bottom: 20px;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group.full {
        grid-column: 1/-1;
    }

    .form-group label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        border: 1px solid #dce6e8;
        padding: 12px 13px;
        border-radius: 8px;
        outline: none;
        color: var(--dark);
    }

    .form-group textarea {
        height: 90px;
        resize: vertical;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
        }

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: #fff;
}

    .submit-btn:hover {
        background: var(--primary-dark);
    }

/* =========================
           FOOTER
        ========================= */

footer {
    background: #071e23;
    color: #a9babc;
    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 45px;
}

.footer-logo {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

footer .h4 {
    color: #fff;
    margin-bottom: 17px;
}

footer ul {
    list-style: none;
    display: grid;
    gap: 9px;
    font-size: 13px;
}

footer a:hover {
    color: var(--secondary);
}

.social {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

    .social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }

.copyright {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
}

/* =========================
           WHATSAPP
        ========================= */

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    z-index: 2000;
    box-shadow: 0 8px 25px rgba(37,211,102,.35);
}

    .whatsapp:hover {
        transform: scale(1.08);
    }

/* =========================
           MOBILE CTA
        ========================= */

.mobile-cta {
    display: none;
}

/* =========================
           RESPONSIVE
        ========================= */

@media(max-width: 950px) {

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .trust-box {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .intro-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .package-grid {
        grid-template-columns: 1fr 1fr;
    }

    .destination-grid {
        grid-template-columns: 1fr 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 650px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .topbar {
        display: none;
    }

    .navbar {
        height: 65px;
    }

    .logo {
        font-size: 21px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-text {
        font-size: 16px;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }

    .trust {
        margin-top: -25px;
    }

    .trust-box {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
        gap: 18px;
    }

    .trust-item {
        border: none;
    }

    section {
        padding: 65px 0;
    }

    .intro-image img {
        height: 350px;
    }

    .experience-badge {
        right: 10px;
        bottom: 15px;
    }

    .package-grid,
    .destination-grid,
    .experience-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .destination {
        height: 280px;
    }

    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }

        .gallery img:first-child {
            grid-column: span 2;
            grid-row: auto;
        }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .booking-grid {
        gap: 35px;
    }

    .booking-form {
        padding: 22px;
    }

    .whatsapp {
        bottom: 75px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 23px;
    }

    .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 58px;
        background: #fff;
        box-shadow: 0 -5px 20px rgba(0,0,0,.12);
        display: grid;
        grid-template-columns: 1fr 1fr;
        z-index: 1500;
    }

        .mobile-cta a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            font-weight: 700;
            font-size: 13px;
        }

    .mobile-call {
        color: var(--primary);
        border-right: 1px solid var(--border);
    }

    .mobile-whatsapp {
        background: #25D366;
        color: #fff;
    }

    footer {
        padding-bottom: 80px;
    }
}


