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

body {
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.back-btn {
    position: fixed;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s ease;
    z-index: 1000;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(41, 79, 99, 0.38), rgba(41, 79, 99, 0.38)),
        url("CBD/CBD1.jpg") center/cover;
    color: #fff;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

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

.content-section {
    width: min(100% - 40px, 900px);
    margin: 80px auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.trip-info {
    width: min(100%, 720px);
    background: #294f63;
    color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(41,79,99,0.14);
    padding: 36px;
    overflow-wrap: anywhere;
}

.trip-info h2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 28px;
}

.trip-info h3 {
    margin: 22px 0 10px;
    color: #ffffff;
    font-size: 18px;
}

.trip-info p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.trip-info ul {
    margin: 15px 0 20px 20px;
    line-height: 1.6;
}

.note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 500;
}

.highlight-note {
    margin: 0 0 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff4c7;
    border-left: 4px solid #f6d978;
}

.trip-info em {
    display: block;
    margin-top: 12px;
    color: #666;
}

@media (max-width: 900px) {
    .content-section {
        flex-direction: column;
        gap: 40px;
        width: min(100% - 32px, 720px);
    }

    .trip-info {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 26px;
        overflow-wrap: anywhere;
    }

    .hero p {
        font-size: 15px;
    }

    .trip-info {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .back-btn {
        top: 18px;
        left: 12px;
        padding: 8px 14px;
    }

    .hero {
        padding: 64px 16px;
    }
}

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

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