    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    html, body {
        margin: 0;
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        background:
            linear-gradient(180deg, rgba(41,79,99,0.16) 0%, rgba(41,79,99,0.08) 34%, rgba(41,79,99,0.13) 100%),
            #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;
    }

    /* ================= HERO (Cruise Style) ================= */

    .hero {
        margin: 0;
        height: 55vh;
        background: linear-gradient(rgba(41,79,99,0.34), rgba(41,79,99,0.34)),
        url("SouthCoastpics/Bondi3.jpg") center/cover no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
    }

    .navbar + .hero {
        margin-top: 0;
    }

    .hero h1 {
        font-size: 46px;
        margin: 0 0 10px;
        max-width: 500px;  
    }

    .hero p {
        margin: 0;
        max-width: 450px;
        opacity: 0.9;
    }

    /* ================= SECTIONS ================= */

    .about {
        text-align: center;
        padding: 60px 20px 20px;
    }

    .about h2 {
        color: #294f63;
        margin-bottom: 10px;
        font-size: 28px;
    }

    /* ================= SERVICES ================= */

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 35px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: stretch;
}

    .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: 35px 30px;
        border-radius: 8px;
        box-shadow: 0 10px 28px rgba(41,79,99,0.12);
        transition: 0.3s ease;
        overflow-wrap: anywhere;
    }

.service-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    height: 100%;
}

.service-link .service-card {
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.slider-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 70px 40px;
}

.slider-shell {
    position: relative;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #f6d978;
    color: #000000;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.slider-button:hover:not(:disabled) {
    background: #f6d978;
    color: #000000;
}

.slider-button[data-direction="-1"] {
    left: -64px;
}

.slider-button[data-direction="1"] {
    right: -64px;
}

.slider-viewport {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 35px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.slide {
    flex: 0 0 calc((100% - 70px) / 3);
    min-width: 0;
    display: flex;
    align-self: stretch;
}

.slide .service-link,
.slide .service-card {
    width: 100%;
}

.slider-track .service-card {
    min-height: 344px;
}

.services > .service-card {
    height: 100%;
}
.service-link .service-card:hover,
.service-card[tabindex="0"]:hover {
    transform: translateY(-8px);
    background: #f6d978;
    color: #294f63;
}

.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,
.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 {
    color: #294f63;
}

    .service-card h3 {
        color: #294f63;
        margin-bottom: 12px;
        font-size: 18px;
    }

    .service-card p,
    .service-card li {
        font-size: 14px;
        line-height: 1.6;
        overflow-wrap: anywhere;
    }

    .service-card ul {
        padding-left: 18px;
        margin-top: 10px;
    }

    .service-card strong {
        color: #294f63;
    }

    .service-card em {
        display: block;
        margin-top: 10px;
        font-size: 13px;
        color: #666;
    }

    .contact-button {
        display: inline-block;
        margin-top: 16px;
        padding: 10px 18px;
        border-radius: 999px;
        background: #294f63;
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .contact-button:hover {
        background: #f6d978;
        transform: translateY(-2px);
    }

    /* ================= 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 ================= */

    /* ================= HAMBURGER ================= */

    .hamburger {
        display: none;
        font-size: 26px;
        cursor: pointer;
    }

    /* ================= Desktop Only ================= */
    @media (min-width: 1024px) {
        .hero h1 {
            white-space: nowrap;
        }
    }

    @media (max-width: 1100px) {
    .slide {
        flex-basis: calc((100% - 35px) / 2);
    }
    }

    @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;
    }
    }
    /* ================= MOBILE ================= */

    @media (max-width: 768px) {

    
    .navbar {
        padding: 0 20px;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 30px;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .services {
        grid-template-columns: 1fr;
        padding: 25px 15px;
    }

    .slider-section {
        width: 100%;
        padding: 0 22px 48px;
    }

    .slider-shell {
        padding-bottom: 64px;
    }

    .service-card {
        padding: 25px 20px;
    }

    /* MOBILE NAV */

    .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;
    }

    .services {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .slider-track {
        gap: 20px;
        align-items: flex-start;
    }

    .slide {
        flex-basis: 100%;
        align-self: flex-start;
    }

    .slider-button {
        width: 44px;
        height: 44px;
        top: auto;
        bottom: 0;
        transform: none;
    }

    .slider-button[data-direction="-1"] {
        left: calc(50% - 52px);
        right: auto;
    }

    .slider-button[data-direction="1"] {
        left: calc(50% + 8px);
        right: auto;
    }

    .slider-track .service-card {
        min-height: 0;
    }

    .slide .service-card {
        height: auto;
    }

    .service-link,
    .service-card {
        min-width: 0;
    }

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

    @media (max-width: 420px) {
    .navbar {
        height: 62px;
    }

    body {
        padding-top: 62px;
    }

    .logo {
        font-size: 14px;
    }

    .hamburger {
        font-size: 22px;
    }

    .nav-links {
        top: 62px;
    }

    .hero {
        min-height: 220px;
        height: auto;
        padding: 44px 18px;
    }

    .hero h1 {
        font-size: 25px;
        line-height: 1.25;
    }

    .about {
        padding: 38px 18px 18px;
    }

    .about h2 {
        font-size: 23px;
        line-height: 1.3;
    }

    .services {
        padding: 24px 22px;
    }

    .slider-section {
        padding: 0 24px 46px;
    }

    .service-card {
        padding: 22px 18px;
    }

    .service-card h3 {
        font-size: 16px;
        line-height: 1.35;
    }

    .service-card p,
    .service-card li {
        font-size: 13px;
        line-height: 1.55;
    }
    }





/* 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;
}
