@import url('shared-theme.css?v=20260430w');

.hero {
    background:
        linear-gradient(90deg, rgba(2, 11, 16, 0.9), rgba(5, 24, 32, 0.7), rgba(6, 23, 31, 0.52)),
        linear-gradient(180deg, rgba(6, 23, 31, 0.08), #031118 96%),
        url("../assets/images/header_2.jpg") center/cover;
}

.hero h1,
.hero p {
    opacity: 0;
    animation: fade-up 0.7s ease forwards;
}

.hero h1 {
    animation-delay: 0.3s;
}

.hero p {
    animation-delay: 0.5s;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container.how-page {
    padding-top: 62px;
    padding-bottom: 38px;
}

.booking-id-banner,
.step-card,
.info-box,
.hours-card,
.important-note,
.faq-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.065);
    box-shadow: 0 18px 48px rgba(0, 8, 14, 0.34);
    backdrop-filter: blur(24px) saturate(1.05);
}

.booking-id-banner {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 62px;
    padding: 20px 22px;
    border-left: 4px solid var(--teal);
    background:
        linear-gradient(90deg, rgba(143, 212, 203, 0.12), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.055);
}

.booking-id-banner > i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(105, 208, 196, 0.12);
    color: var(--teal);
    font-size: 1.2rem;
}

.booking-id-banner h2,
.info-box h3,
.hours-card h3,
.important-note h3,
.faq-section h2,
.journey-cta h2 {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
}

.booking-id-banner h2 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.booking-id-banner p,
.step-card p,
.info-box p,
.info-box li,
.hours-card,
.important-note li,
.faq-answer p,
.journey-cta p {
    color: var(--muted);
    line-height: 1.75;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 44px 0 64px;
}

.step-card,
.info-box,
.hours-card,
.important-note {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.step-card.visible,
.info-box.visible,
.hours-card.visible,
.important-note.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:nth-child(1) { transition-delay: 0ms; }
.step-card:nth-child(2) { transition-delay: 80ms; }
.step-card:nth-child(3) { transition-delay: 160ms; }
.step-card:nth-child(4) { transition-delay: 240ms; }
.step-card:nth-child(5) { transition-delay: 320ms; }
.step-card:nth-child(6) { transition-delay: 400ms; }

.step-card {
    position: relative;
    z-index: 1;
    padding: 34px 24px;
    overflow: visible;
    text-align: center;
}

.step-card.visible:hover,
.hours-card.visible:hover,
.info-box.visible:hover,
.important-note.visible:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    box-shadow: 0 28px 70px rgba(0, 6, 10, 0.46), var(--glow);
}

.step-number {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #a6eee6, #69d0c4);
    color: #041018;
    font-size: 1.35rem;
    font-weight: 900;
}

.step-card > i {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
    color: #69d0c4;
    font-size: 2.4rem;
}

.step-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
}

.step-card p {
    position: relative;
    z-index: 2;
}

.info-box,
.hours-card,
.important-note {
    margin: 26px 0;
    padding: 28px;
}

.info-box.info,
.info-box.success,
.info-box.warning {
    background:
        linear-gradient(145deg, rgba(148, 181, 189, 0.14), rgba(48, 77, 88, 0.08)),
        linear-gradient(90deg, rgba(143, 212, 203, 0.12), transparent);
}

.info-box h3,
.hours-card h3,
.important-note h3 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
}

.info-box h3 i,
.hours-card h3 i,
.important-note h3 i {
    color: var(--teal);
}

.info-box ul,
.important-note ul {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.info-box li,
.important-note li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0;
}

.info-box li i,
.important-note li i {
    flex: 0 0 auto;
    margin-top: 5px;
    color: var(--teal);
}

.inline-note {
    margin-top: 15px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.hour-item {
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(218, 239, 242, 0.12);
    border-radius: 10px;
    background: rgba(151, 183, 191, 0.08);
}

.hour-day {
    color: #ffffff;
    font-weight: 900;
}

.hour-time {
    color: var(--teal);
    font-weight: 800;
}

.closed-badge {
    display: inline-flex;
    width: max-content;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(229, 238, 241, 0.14);
    border-radius: 999px;
    background: rgba(229, 238, 241, 0.08);
    color: #b7c1c7;
    font-size: 0.85rem;
    font-weight: 800;
}

.off-day {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(218, 239, 242, 0.12);
    border-radius: 10px;
    background: rgba(151, 183, 191, 0.08);
    color: var(--muted);
    line-height: 1.65;
}

.off-day i {
    margin-top: 4px;
    color: var(--teal);
}

.important-note {
    border-color: rgba(255, 209, 102, 0.24);
}

.faq-section {
    padding: 58px 0 40px;
}

.faq-list {
    display: grid;
    gap: 14px;
    width: min(900px, 100%);
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    display: flex;
    width: 100%;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    text-align: left;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.045);
    box-shadow: none;
    filter: none;
    transform: none;
}

.faq-question i {
    flex: 0 0 auto;
    color: var(--teal);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
}

.faq-item.open .faq-answer {
    max-height: 220px;
}

.journey-cta {
    padding: 76px 0;
    border-top: 1px solid rgba(105, 208, 196, 0.18);
    border-bottom: 1px solid rgba(105, 208, 196, 0.18);
    background:
        linear-gradient(135deg, rgba(105, 208, 196, 0.14), rgba(147, 198, 216, 0.05)),
        rgba(7, 19, 25, 0.76);
}

.journey-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.journey-cta h2 {
    margin-bottom: 8px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.journey-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-primary {
    background: linear-gradient(135deg, #a6eee6, #69d0c4);
    color: #041018;
    box-shadow: 0 12px 28px rgba(105, 208, 196, 0.18);
}

.cta-secondary {
    border: 1px solid rgba(229, 238, 241, 0.24);
    background: transparent;
    color: #ffffff;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.065);
}

@media (min-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .step-card::before,
    .step-card::after {
        content: "";
        position: absolute;
        top: 63px;
        z-index: 1;
        width: calc(50% + 12px);
        border-top: 2px dashed rgba(105, 208, 196, 0.42);
        pointer-events: none;
    }

    .step-card::before {
        left: -12px;
    }

    .step-card::after {
        right: -12px;
    }

    .step-card:nth-child(3n + 1)::before,
    .step-card:nth-child(3n)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .container.how-page {
        padding-top: 44px;
    }

    .booking-id-banner {
        grid-template-columns: 1fr;
        margin-bottom: 46px;
        padding: 20px;
    }

    .info-box,
    .hours-card,
    .important-note {
        padding: 22px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .journey-cta-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .journey-cta-actions,
    .cta-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero h1,
    .hero p,
    .step-card,
    .info-box,
    .hours-card,
    .important-note,
    .faq-answer,
    .faq-question i,
    .cta-btn {
        animation: none;
        transition: none;
    }

    .hero h1,
    .hero p,
    .step-card,
    .info-box,
    .hours-card,
    .important-note {
        opacity: 1;
        transform: none;
    }
}

/* === Final Teal Travel Page Override === */
:root {
    --bg: #eef4f7;
    --bg-2: #f6f9fb;
    --panel: #ffffff;
    --line: #d9e3ea;
    --line-strong: #b9c8d3;
    --text: #10202b;
    --muted: #607080;
    --primary: #0f766e;
    --teal: #0f766e;
    --cyan: #256d85;
    --warning: #d97706;
    --success: #15803d;
    --danger: #b91c1c;
    --shadow: 0 14px 34px rgba(16, 32, 43, 0.09);
}

body {
    background: #eef4f7 !important;
    color: var(--text) !important;
}

.header,
.step-card,
.info-box,
.hours-card,
.important-note,
.faq-item,
.faq-answer,
.how-card {
    background: #ffffff !important;
    border-color: var(--line) !important;
    color: var(--text) !important;
    box-shadow: var(--shadow) !important;
}

.logo h1,
.header h1,
.step-card h3,
.info-box h3,
.hours-card h3,
.important-note h3,
.faq-question,
.section-title,
h2,
h3 {
    color: var(--text) !important;
    -webkit-text-fill-color: var(--text) !important;
}

.hero h1,
.hero p {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.logo p,
.header p,
.step-card p,
.info-box p,
.hours-card p,
.important-note p,
.faq-answer,
.step-card li,
.info-box li {
    color: var(--muted) !important;
}

.nav a {
    color: #263747 !important;
}

.nav a:hover,
.nav a.active {
    color: var(--primary) !important;
    background: #e8f5f3 !important;
    border-color: #b8ded8 !important;
}

.cta-btn,
.btn,
button {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.18) !important;
}
/* === End Final Teal Travel Page Override === */

/* === Coastal Blue Client Page Override === */
:root {
    --bg: #f3f8fb;
    --panel: #ffffff;
    --line: #d9e7ef;
    --line-strong: #b8ccd8;
    --text: #14283a;
    --muted: #63768a;
    --primary: #1f7a9c;
    --teal: #1f7a9c;
    --cyan: #4ea7c8;
    --warning: #d99a2b;
    --shadow: 0 16px 38px rgba(20, 40, 58, 0.1);
}

body {
    background: #f3f8fb !important;
    color: var(--text) !important;
}

.header,
.step-card,
.info-box,
.hours-card,
.important-note,
.faq-item,
.faq-answer,
.how-card {
    background: #ffffff !important;
    border-color: var(--line) !important;
    color: var(--text) !important;
    box-shadow: var(--shadow) !important;
}

.hero h1,
.hero p {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.logo h1,
.header h1,
.step-card h3,
.info-box h3,
.hours-card h3,
.important-note h3,
.faq-question,
.section-title,
h2,
h3 {
    color: var(--text) !important;
    -webkit-text-fill-color: var(--text) !important;
}

.logo p,
.header p,
.step-card p,
.info-box p,
.hours-card p,
.important-note p,
.faq-answer,
.step-card li,
.info-box li {
    color: var(--muted) !important;
}

.nav a {
    color: #2d4053 !important;
}

.nav a:hover,
.nav a.active {
    color: var(--primary) !important;
    background: #eaf6fb !important;
    border-color: #bfe1ee !important;
}

.cta-btn,
.btn,
button {
    background: #e6b44f !important;
    border-color: #e6b44f !important;
    color: #14283a !important;
    box-shadow: 0 12px 26px rgba(170, 121, 34, 0.2) !important;
}
/* === End Coastal Blue Client Page Override === */
