/* ---------- Global ---------- */
:root {
    --brand-teal: #197279;
    --brand-teal-dark: #0e5255;
    --brand-teal-deep: #0e4c4f;
    --brand-gold: #bb8c3f;
    --brand-gold-strong: #bc8c40;
    --brand-gold-light: #dbac58;
    --brand-gold-hover: #c28e2f;
    --ink: #0f172a;
    --muted: #64748b;
    --nav-muted: #5a6472;
    --line: #e2e8f0;
    --surface: #ffffff;
    --soft-bg: #f5f7fb;
    --success-bg: #d1e7dd;
    --success-border: #badbcc;
    --success-text: #0f5130;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at 8% 4%, rgba(25, 114, 121, 0.08), transparent 28rem), radial-gradient(circle at 94% 14%, rgba(187, 140, 63, 0.12), transparent 24rem), var(--soft-bg);
    color: var(--ink);
}

main {
    flex: 1;
    overflow: hidden;
}

a {
    color: var(--brand-teal);
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

    a:hover {
        color: var(--brand-teal-deep);
    }

img {
    max-width: 100%;
}

::selection {
    background: rgba(187, 140, 63, 0.26);
}

/* ---------- Navbar ---------- */
.navbar {
    min-height: 76px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.78);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0;
}

.brand-logo-frame {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .brand-logo-frame img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.navbar-toggler {
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    padding: 0.55rem 0.7rem;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(25, 114, 121, 0.2);
    }

a.nav-link {
    position: relative;
    font-size: 15px;
    color: var(--nav-muted);
    padding: 0.65rem 0.75rem;
    cursor: pointer;
}

    a.nav-link::after {
        content: "";
        position: absolute;
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.3rem;
        height: 2px;
        background: var(--brand-gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.22s ease;
    }

    a.nav-link:hover,
    a.nav-link.active {
        color: var(--brand-teal);
    }

        a.nav-link:hover::after,
        a.nav-link.active::after {
            transform: scaleX(1);
        }

.nav-cta {
    border-radius: 0.5rem;
    box-shadow: 0 12px 24px rgba(187, 140, 63, 0.18);
}

/* ---------- Buttons ---------- */
.btn {
    border-radius: 0.5rem;
    font-weight: 600;
    letter-spacing: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background-color: var(--brand-teal);
    border-color: var(--brand-teal);
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
        background-color: var(--brand-teal-deep);
        border-color: var(--brand-teal-deep);
    }

.btn-gold {
    background-color: var(--brand-gold);
    color: #fff;
    padding-inline: 1.5rem;
    border-color: var(--brand-gold);
}

    .btn-gold:hover,
    .btn-gold:focus,
    .btn-gold:active,
    .btn-gold.active {
        background-color: var(--brand-gold-hover);
        border-color: var(--brand-gold-hover);
        color: #fff;
    }

.btn-teal-soft {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
}

    .btn-teal-soft:hover {
        background-color: #30858c;
        color: #fff;
    }

/* ---------- Hero ---------- */
.hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(14, 76, 79, 0.95), rgba(25, 114, 121, 0.96)), var(--brand-teal);
    color: #fff;
    padding-top: 7rem;
    padding-bottom: 5.25rem;
}

    .hero-section::before,
    .hero-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        z-index: -1;
    }

    .hero-section::before {
        width: 32rem;
        height: 32rem;
        top: -14rem;
        right: -8rem;
    }

    .hero-section::after {
        width: 22rem;
        height: 22rem;
        left: -9rem;
        bottom: -10rem;
        background: rgba(187, 140, 63, 0.16);
    }

.hero-kicker,
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--brand-gold-light);
}

.hero-title {
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1rem;
}

    .hero-title .highlight {
        color: var(--brand-gold-light);
    }

.hero-copy {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
}

.hero-cta a {
    padding: 0.78rem 1.35rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 2.4rem;
    max-width: 660px;
}

    .hero-stats > div,
    .stat-tile {
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 0.75rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
    }

.hero-stat-number {
    color: var(--brand-gold-strong);
}

.hero-stat-label {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 0.3rem;
}

.hero-media {
    position: relative;
    min-height: 520px;
}

.hero-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.32);
}

    .hero-photo-card img {
        display: block;
        width: 100%;
        min-height: 430px;
        object-fit: cover;
    }

    .hero-photo-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.55));
    }

.hero-floating-card {
    position: absolute;
    left: -1.2rem;
    bottom: 2rem;
    width: min(82%, 360px);
    border-radius: 1rem;
    padding: 1.2rem;
    color: #fff;
    background: rgba(14, 82, 85, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.24);
    backdrop-filter: blur(14px);
}

.hero-orbit {
    position: absolute;
    right: -0.6rem;
    top: 2rem;
    border-radius: 0.9rem;
    padding: 0.8rem 1rem;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    color: #fff;
}

    .glass-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .glass-card li {
        padding: 0.75rem 0;
        display: flex;
        align-items: center;
    }

        .glass-card li i {
            font-size: 1.1rem;
            margin-right: 0.7rem;
            color: var(--brand-gold-light);
        }

.page-hero {
    padding-top: 6.6rem;
    padding-bottom: 4.2rem;
    text-align: center;
}

    .page-hero .hero-copy {
        margin-inline: auto;
    }

/* ---------- Sections ---------- */
.section-block {
    padding: 5rem 0;
}

.section-block-sm {
    padding: 4rem 0;
}

.section-title {
    font-weight: 800;
    font-size: clamp(1.85rem, 3vw, 2.6rem);
    color: var(--ink);
}

.section-subtitle {
    font-size: 1.04rem;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brand-gold-strong);
    font-weight: 700;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.split-media {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: 1rem;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

    .split-media img {
        width: 100%;
        height: 100%;
        min-height: 390px;
        object-fit: cover;
    }

.split-media-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

/* ---------- Cards ---------- */
.card,
.feature-card,
.destination-card,
.info-card {
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background-color: var(--surface);
    box-shadow: 0 14px 34px rgba(148, 163, 184, 0.16);
}

.feature-card,
.destination-card,
.info-card {
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .feature-card:hover,
    .destination-card:hover,
    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 46px rgba(148, 163, 184, 0.25);
        border-color: rgba(187, 140, 63, 0.58);
    }

.feature-icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1rem;
    background-color: var(--brand-teal);
    color: #fff;
}

.feature-card:hover .feature-icon,
.destination-card:hover .feature-icon {
    background-color: var(--brand-teal-deep);
}

.journey-step {
    position: relative;
    padding-left: 4.4rem;
}

/* ---------- Compass Blog ---------- */
.compass-page {
    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 247, 251, 0.96));
}

.compass-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid rgba(25, 114, 121, 0.18);
}

.compass-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--brand-gold-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.compass-title {
    max-width: 760px;
    margin-bottom: 0.85rem;
    color: var(--ink);
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.compass-title span {
    color: var(--brand-teal);
}

.compass-copy {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.compass-mark {
    display: grid;
    width: 5.5rem;
    height: 5.5rem;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(187, 140, 63, 0.42);
    border-radius: 50%;
    color: var(--brand-gold-strong);
    font-size: 1.8rem;
    transform: rotate(8deg);
}

.compass-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1.25fr) minmax(0, 2fr) auto;
    gap: 0.7rem;
    align-items: center;
    padding: 0.7rem;
    border: 1px solid rgba(25, 114, 121, 0.16);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
    backdrop-filter: blur(12px);
}

.compass-search {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 3.05rem;
    padding: 0 0.85rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: #fff;
    color: var(--brand-teal);
}

.compass-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    font: inherit;
}

.compass-search:focus-within {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 0.2rem rgba(25, 114, 121, 0.18);
}

.compass-selects {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.compass-selects .form-select {
    min-width: 0;
    min-height: 3.05rem;
    font-size: 0.86rem;
}

.compass-filter-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.compass-filter-actions .btn-link {
    color: var(--muted);
    font-size: 0.86rem;
    text-decoration: none;
}

.compass-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.compass-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 0.85rem;
    background: var(--surface);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08), 0 3px 8px rgba(15, 23, 42, 0.04);
    opacity: 0;
    transform: translateY(24px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.65s ease var(--reveal-delay, 0ms);
}

.compass-card.is-visible,
.compass-intro.is-visible,
.compass-filters.is-visible,
.compass-empty.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.compass-card:hover {
    border-color: rgba(25, 114, 121, 0.46);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14), 0 6px 12px rgba(15, 23, 42, 0.06);
    transform: translateY(-8px);
}

.compass-card-image {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    background: #dce9e8;
}

.compass-card-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(14, 76, 79, 0.3));
    content: "";
}

.compass-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.compass-card:hover .compass-card-image img {
    transform: scale(1.06);
}

.compass-card-arrow {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-gold);
    color: #fff;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.18);
}

.compass-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.35rem 1.4rem 1.2rem;
}

.compass-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.compass-tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(25, 114, 121, 0.2);
    border-radius: 999px;
    padding: 0.3rem 0.62rem;
    background: #f2f8f7;
    color: var(--brand-teal-deep);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.compass-tag-primary {
    border-color: rgba(187, 140, 63, 0.32);
    background: #fff8eb;
    color: #8a641f;
}

.compass-card h2 {
    margin-bottom: 0.7rem;
    font-size: 1.28rem;
    line-height: 1.25;
}

.compass-card h2 a {
    color: var(--ink);
}

.compass-card h2 a:hover {
    color: var(--brand-teal);
}

.compass-card-body > p {
    display: -webkit-box;
    margin-bottom: 1.35rem;
    overflow: hidden;
    color: var(--muted);
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.compass-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.75rem;
}

.compass-card-meta a {
    flex: 0 0 auto;
    color: var(--brand-teal);
    font-weight: 800;
}

.compass-empty {
    padding: 4rem 1rem;
    border: 1px dashed rgba(25, 114, 121, 0.3);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.64);
    color: var(--muted);
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.compass-empty i {
    color: var(--brand-gold);
    font-size: 2.4rem;
}

.compass-empty h2 {
    margin-top: 1rem;
    color: var(--ink);
    font-size: 1.45rem;
}

.blog-detail-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 247, 251, 0.96));
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 2rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.blog-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-teal);
    font-weight: 700;
}

.blog-breadcrumb > span {
    overflow: hidden;
    max-width: min(55vw, 520px);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-detail-header {
    max-width: 820px;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.blog-detail-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.blog-detail-header h1 {
    margin-bottom: 1.25rem;
    color: var(--ink);
    line-height: 1.1;
}

.blog-summary {
    margin: 0 auto;
    padding: 1.1rem 1.35rem;
    border-left: 4px solid var(--brand-gold);
    background: rgba(255, 248, 235, 0.74);
    color: #536173;
    font-size: 1.12rem;
    line-height: 1.75;
    text-align: left;
}

.blog-date-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 1.5rem;
    margin-top: 1.45rem;
    color: var(--muted);
    font-size: 0.8rem;
}

.blog-date-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-date-meta i {
    color: var(--brand-teal);
    font-size: 1rem;
}

.blog-date-meta strong {
    color: var(--ink);
}

.blog-detail-image {
    display: block;
    width: 100%;
    max-height: 520px;
    margin: 0 auto 3rem;
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 0.85rem;
    object-fit: cover;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.blog-detail-page .article-content {
    max-width: 780px;
    margin: 0 auto;
    color: #334155;
}

.blog-detail-page .article-content h2,
.blog-detail-page .article-content h3 {
    color: var(--ink);
}

.blog-detail-footer {
    max-width: 780px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

    .journey-step .step-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 3rem;
        height: 3rem;
        border-radius: 0.75rem;
        display: grid;
        place-items: center;
        background: var(--brand-teal);
        color: #fff;
        font-weight: 800;
    }

/* ---------- Destination Cards ---------- */
.destination-card {
    text-align: left;
}

.destination-code {
    font-size: 2.55rem;
    font-weight: 700;
    color: var(--brand-teal);
}

.destination-name {
    font-weight: 700;
    margin-top: 10px;
    color: var(--ink);
}

.destination-meta {
    font-size: 0.9rem;
    color: var(--muted);
}

.destination-header {
    min-height: 190px;
    padding: 1.5rem;
    background-size: cover;
    background-position: center;
    color: #fff;
}

    .destination-header h2,
    .destination-header .card-title,
    .destination-header small {
        color: #fff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    }

.destination-shell {
    overflow: hidden;
    border-radius: 1rem;
}

.destination-pill,
.city-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.45rem 0.78rem;
    background-color: rgba(25, 114, 121, 0.08);
    color: var(--brand-teal-deep);
    font-weight: 600;
    font-size: 0.85rem;
}

.city-pill {
    background-color: var(--brand-teal-dark);
    color: #fff;
    border: 0;
}

.highlight-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .highlight-list li {
        display: flex;
        gap: 0.65rem;
        padding: 0.42rem 0;
        color: var(--muted);
    }

        .highlight-list li i {
            color: var(--brand-gold-strong);
            flex: 0 0 auto;
        }

.university-list {
    display: grid;
    gap: 0.75rem;
}

.university-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 0.65rem;
    background: rgba(25, 114, 121, 0.045);
    color: var(--ink);
    font-weight: 600;
}

.university-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--brand-teal);
    color: #fff;
}

/* ---------- Forms ---------- */
.form-control,
.form-select {
    min-height: 3.05rem;
    border-radius: 0.5rem;
    border: 1px solid var(--line);
    background-color: #fff;
}

textarea.form-control {
    min-height: 150px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 0.2rem rgba(25, 114, 121, 0.18);
}

.form-label {
    font-weight: 600;
    color: var(--ink);
}

.required-label::after {
    content: " *";
    color: red;
    font-weight: bold;
}

.contact-map {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 18px 46px rgba(148, 163, 184, 0.2);
    border: 1px solid var(--line);
}

    .contact-map iframe {
        display: block;
        height: 460px;
    }

/* ---------- CTA / Footer ---------- */
.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(14, 82, 85, 0.98), rgba(25, 114, 121, 0.98)), var(--brand-teal);
    color: #fff;
}

    .cta-band::after {
        content: "";
        position: absolute;
        inset: auto -6rem -10rem auto;
        width: 24rem;
        height: 24rem;
        border-radius: 50%;
        background: rgba(187, 140, 63, 0.2);
    }

.site-footer {
    font-size: 0.92rem;
    color: var(--muted);
    margin-top: auto;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer-link {
    color: var(--muted);
}

    .footer-link:hover {
        color: var(--brand-teal);
    }

/* ---------- Utilities ---------- */
.textIndent {
    text-indent: 40px;
    text-align: justify;
}

.sticky-top {
    top: 0;
}

.alert {
    border-radius: 0.5rem;
}

.alert-success {
    background-color: var(--success-bg);
    border-color: var(--success-border);
    color: var(--success-text);
}

.accordion-item {
    border-color: var(--line);
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1f2;
    color: var(--brand-teal);
    font-weight: 700;
}

.accordion-button:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 0.25rem rgba(25, 114, 121, 0.18);
}

.content {
    line-height: 1.8;
}

    .content h2 {
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: var(--ink);
        font-weight: 700;
    }

    .content h3 {
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        color: var(--ink);
        font-weight: 600;
    }

    .content ul,
    .content ol {
        margin-bottom: 1rem;
        padding-left: 2rem;
    }

    .content li {
        margin-bottom: 0.5rem;
    }

/* ---------- Motion ---------- */
.reveal-up {
    opacity: 0;
    transform: translateY(22px);
    animation: revealUp 0.78s ease forwards;
}

.reveal-delay-1 {
    animation-delay: 0.12s;
}

.reveal-delay-2 {
    animation-delay: 0.24s;
}

.reveal-delay-3 {
    animation-delay: 0.36s;
}

.float-soft {
    animation: floatSoft 5.4s ease-in-out infinite;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- Responsive Design ---------- */
@media (max-width: 991.98px) {
    .compass-filters {
        grid-template-columns: 1fr;
    }

    .compass-filter-actions {
        justify-content: flex-start;
    }

    .compass-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-logo-frame {
        width: 62px;
        height: 62px;
        min-width: 62px;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    a.nav-link {
        padding-inline: 0;
    }

        a.nav-link::after {
            left: 0;
            right: auto;
            width: 2rem;
        }

    .hero-section {
        padding-top: 5.6rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 2.55rem;
    }

    .hero-media {
        min-height: auto;
    }

    .hero-floating-card,
    .hero-orbit {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-photo-card img {
        min-height: 340px;
    }

    .section-block {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {
    .compass-intro {
        align-items: flex-start;
    }

    .compass-mark {
        width: 3.8rem;
        height: 3.8rem;
        font-size: 1.3rem;
    }

    .compass-selects {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .compass-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-block,
    .section-block-sm {
        padding: 3.25rem 0;
    }

    .journey-step {
        padding-left: 0;
        padding-top: 4rem;
    }

        .journey-step .step-number {
            top: 0;
        }

    .contact-map iframe {
        height: 360px;
    }
}

@media (max-width: 576px) {
    .blog-breadcrumb {
        margin-bottom: 1.5rem;
    }

    .blog-breadcrumb > span {
        max-width: 42vw;
    }

    .blog-detail-header h1 {
        font-size: 2.15rem;
    }

    .blog-summary {
        padding: 0.9rem 1rem;
        font-size: 1rem;
    }

    .blog-date-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.55rem;
        text-align: left;
    }

    .blog-detail-image {
        max-height: 320px;
        margin-bottom: 2rem;
    }

    .compass-intro {
        padding-top: 0.5rem;
    }

    .compass-title {
        font-size: 2.55rem;
    }

    .compass-mark {
        display: none;
    }

    .compass-selects {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.15rem;
    }

    .hero-cta {
        flex-direction: column;
    }

        .hero-cta a {
            width: 100%;
            text-align: center;
        }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .destination-header {
        min-height: 150px;
    }

    .btn-gold.w-75 {
        width: 100% !important;
    }
}
