* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
    color: #1a1a1a;
    padding-top: 70px;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: #294f63;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 600;
}

.logo a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.logo a:hover {
    color: #f6d978;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
}

.nav-links a:hover {
    color: #f6d978;
}

/* Hamburger */

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ================= HERO ================= */

.hero {
    height: 52vh;
    min-height: 360px;
    max-height: 520px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(41,79,99,0.34);
    z-index: 1;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.8s ease, transform 4.5s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 80px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    background: white;
    color: #294f63;
    padding: 14px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    background: #f6d978;
    color: white;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.58);
    border-radius: 50%;
    background: rgba(41,79,99,0.46);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(246,217,120,0.9);
    border-color: rgba(255,255,255,0.85);
}

.hero-arrow.prev {
    left: 28px;
}

.hero-arrow.next {
    right: 28px;
}



/* ================= ABOUT ================= */

.about {
    padding: 80px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.about h2 {
    color: #294f63;
    margin-bottom: 20px;
}

/* ================= SERVICES ================= */

.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background:
        linear-gradient(0deg, rgba(41,79,99,0.24) 0%, rgba(41,79,99,0.16) 20%, rgba(41,79,99,0.07) 40%, rgba(41,79,99,0) 62%),
        #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(41,79,99,0.12);
    transition: 0.3s ease;
}



.service-card h3 {
    color: #294f63;
    margin-bottom: 15px;
}

.service-points {
    margin-top: 14px;
    padding-left: 18px;
    padding-top: 12px;
    border-top: 1px solid #e5e9f1;
}

.service-points li {
    margin: 7px 0;
    line-height: 1.45;
}

.service-points strong {
    color: #294f63;
}

.service-card:last-child {
    grid-column: 2;
}

/* ================= FOOTER ================= */

footer {
    background: #294f63;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
}
.social-links {
    margin-top: 10px;
}

.social-links a {
    font-size: 28px;
    color: #f6d978;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 0.7;
}
/* ================= MOBILE ================= */

@media (max-width: 1024px) {
    .navbar {
        padding: 0 20px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #294f63;
        flex-direction: column;
        text-align: center;
        gap: 0;
        display: none;
        padding: 20px 0;
    }

    .nav-links li {
        padding: 12px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 48vh;
        min-height: 330px;
        max-height: 430px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-content {
        padding: 0 58px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
    }

    .hero-arrow.prev {
        left: 12px;
    }

    .hero-arrow.next {
        right: 12px;
    }

        .services {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .service-card:last-child {
        grid-column: auto;
    }

}



/* Color box overrides */
.service-card,
.trip-card {
    background: #294f63;
    color: #ffffff;
}

.service-card h2,
.service-card h3,
.service-card p,
.service-card li,
.service-card strong,
.service-card em,
.trip-card h2,
.trip-card h3,
.trip-card p,
.trip-card li,
.trip-card strong,
.trip-card em,
.trip-card span {
    color: #ffffff;
}

.service-card[tabindex="0"]:hover,
.service-link .service-card:hover {
    background: #f6d978;
    color: #000000;
}

.service-card[tabindex="0"]:hover h2,
.service-card[tabindex="0"]:hover h3,
.service-card[tabindex="0"]:hover p,
.service-card[tabindex="0"]:hover li,
.service-card[tabindex="0"]:hover strong,
.service-card[tabindex="0"]:hover em,
.service-link .service-card:hover h2,
.service-link .service-card:hover h3,
.service-link .service-card:hover p,
.service-link .service-card:hover li,
.service-link .service-card:hover strong,
.service-link .service-card:hover em {
    color: #000000;
}

/* Hover readability overrides */
button:hover,
.btn:hover,
.book-btn:hover,
.contact-button:hover,
.slider-button:hover:not(:disabled),
.hero-arrow:hover {
    color: #000000;
}

/* Trip detail readability overrides */
.trip-card {
    background: #294f63;
    color: #ffffff;
}

.trip-card:hover {
    background: #294f63;
    color: #ffffff;
}

.trip-card .note,
.trip-card .highlight-note {
    background: #ffffff;
    color: #1a1a1a;
}

.trip-card .note strong,
.trip-card .note em,
.trip-card .note span,
.trip-card .highlight-note strong,
.trip-card .highlight-note em,
.trip-card .highlight-note span {
    color: #1a1a1a;
}