﻿
:root {
    --primary: #087f8c;
    --primary-dark: #05636d;
    --secondary: #ff9f1c;
    --dark: #12343b;
    --text: #52636a;
    --light: #f5fbfc;
    --white: #ffffff;
    --border: #e3eef0;
    --shadow: 0 12px 35px rgba(8, 76, 87, 0.10);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* HEADER */
.topbar {
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    padding: 9px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    font-size: 25px;
    font-weight: 800;
    color: var(--primary);
}

    .logo span {
        color: var(--secondary);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

    .nav-links a:hover {
        color: var(--primary);
    }

.nav-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 11px 19px;
    border-radius: 50px;
}

/* HERO */
.hero {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(90deg, rgba(5, 44, 51, .92), rgba(5, 44, 51, .55)), url("Images/PackageType/Corporate.jpg") center/cover;
    color: #fff;
}

.hero-content {
    max-width: 780px;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);
    padding: 7px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    font-size: 14px;
}

.hero .h1 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    margin-bottom: 20px;
}

    .hero .h1 span {
        color: #ffd166;
    }

.hero p {
    font-size: 18px;
    max-width: 720px;
    color: rgba(255,255,255,.9);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: .25s;
}

.btn-primary {
    background: var(--secondary);
    color: #172b30;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        background: #ffb13b;
    }

.btn-outline {
    border: 1px solid rgba(255,255,255,.7);
    color: #fff;
}

    .btn-outline:hover {
        background: #fff;
        color: var(--dark);
    }

/* STATS */
.stats {
    margin-top: -45px;
    position: relative;
    z-index: 5;
}

.stats-grid {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.stat {
    padding: 25px;
    text-align: center;
    border-right: 1px solid var(--border);
}

    .stat:last-child {
        border-right: 0;
    }

    .stat strong {
        display: block;
        color: var(--primary);
        font-size: 26px;
        margin-bottom: 3px;
    }

    .stat span {
        font-size: 14px;
        color: var(--text);
    }

/* COMMON */
section {
    padding: 85px 0;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.eyebrow {
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 9px;
}

.h2 {
    color: var(--dark);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--text);
}

/* INTRO */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.intro-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .intro-image img {
        width: 100%;
        height: 470px;
        object-fit: cover;
    }

.intro-content .h2 {
    margin-bottom: 20px;
}

.intro-content p {
    margin-bottom: 18px;
}

.check-list {
    list-style: none;
    margin: 22px 0;
}

    .check-list li {
        position: relative;
        padding-left: 30px;
        margin: 12px 0;
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 1px;
            width: 21px;
            height: 21px;
            line-height: 21px;
            text-align: center;
            border-radius: 50%;
            background: #dff6f4;
            color: var(--primary);
            font-size: 12px;
            font-weight: 800;
        }

/* 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: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.04);
    transition: .25s;
}

    .package-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

.package-image {
    height: 210px;
    overflow: hidden;
}

    .package-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.package-body {
    padding: 25px;
}

    .package-body .h3 {
        color: var(--dark);
        margin-bottom: 8px;
        font-size: 22px;
    }

.price {
    font-size: 27px;
    font-weight: 800;
    color: var(--primary);
    margin: 15px 0;
}

    .price small {
        color: #7a8b90;
        font-size: 13px;
        font-weight: normal;
    }

.package-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-body li {
    padding: 7px 0;
    border-bottom: 1px dashed #dbe7e9;
    font-size: 14px;
}

/* EXPERIENCE */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.experience-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: .25s;
}

    .experience-card:hover {
        border-color: #aadce0;
        box-shadow: var(--shadow);
    }

.experience-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #e8f8f8;
    font-size: 22px;
    margin-bottom: 15px;
}

.experience-card .h3 {
    color: var(--dark);
    margin-bottom: 8px;
}

/* DESTINATIONS */
.destinations {
    background: var(--light);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.destination {
    min-height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    color: #fff;
}

    .destination img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0;
    }

    .destination::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(transparent 35%, rgba(0,0,0,.78));
    }

.destination-content {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 18px;
}

.destination .h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.destination p {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255,255,255,.9);
}

/* BENEFITS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit {
    padding: 25px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
}

.benefit-number {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 12px;
}

.benefit .h3 {
    color: var(--dark);
    margin-bottom: 8px;
}

/* ACTIVITIES */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.activity {
    padding: 25px 18px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

    .activity .icon {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .activity .h3 {
        color: var(--dark);
        font-size: 17px;
        margin-bottom: 6px;
    }

    .activity p {
        font-size: 13px;
    }

/* ITINERARY */
.itinerary {
    background: var(--light);
}

.timeline {
    max-width: 850px;
    margin: auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 25px;
    position: relative;
    padding-bottom: 30px;
}

    .timeline-item:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 44px;
        top: 50px;
        bottom: 0;
        width: 2px;
        background: #c9e5e8;
    }

.day {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

    .timeline-content .h3 {
        color: var(--dark);
        margin-bottom: 5px;
    }

/* CTA */
.cta {
    background: linear-gradient(100deg, rgba(5,64,72,.96), rgba(8,127,140,.88)), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
    text-align: center;
}

    .cta .h2 {
        color: #fff;
    }

    .cta p {
        max-width: 700px;
        margin: 0 auto 25px;
        color: rgba(255,255,255,.9);
    }

/* FAQ */
.faq {
    max-width: 850px;
    margin: auto;
}

details {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 700;
    color: var(--dark);
    list-style: none;
    position: relative;
    padding-right: 45px;
}

    summary::after {
        content: "+";
        position: absolute;
        right: 20px;
        font-size: 22px;
        color: var(--primary);
    }

details[open] summary::after {
    content: "−";
}

details p {
    padding: 0 20px 20px;
    font-size: 15px;
}

/* FOOTER */
footer {
    background: #092f36;
    color: rgba(255,255,255,.75);
    padding: 45px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

footer .h3 {
    color: #fff;
    margin-bottom: 15px;
}

footer p,
footer li {
    font-size: 14px;
}

footer ul {
    list-style: none;
}

footer li {
    margin: 8px 0;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

/* FLOATING CTA */
.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    padding: 13px 20px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .destination-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .activity-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .package-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .topbar-inner {
        justify-content: center;
        text-align: center;
    }

        .topbar-inner span:last-child {
            display: none;
        }

    .nav {
        min-height: 62px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 70px 0;
    }

        .hero p {
            font-size: 16px;
        }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .intro-grid,
    .experience-grid,
    .package-grid,
    .benefits-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .intro-image img {
        height: 320px;
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }

    .day {
        width: 55px;
        height: 55px;
        font-size: 12px;
    }

    .timeline-item:not(:last-child)::after {
        left: 27px;
    }
}

@media (max-width: 480px) {
    .hero-actions .btn {
        width: 100%;
    }

    .destination-grid,
    .activity-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

        .stat:last-child {
            border-bottom: 0;
        }

    .floating-cta {
        right: 12px;
        left: 12px;
        text-align: center;
    }
}
