* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f2f6f7;
    --bg-soft: #e9f0f2;
    --panel: #ffffff;
    --panel-alt: #f8fbfc;
    --line: #d7e3e7;
    --text-main: #142126;
    --text-body: #2d434d;
    --text-muted: #5f7884;
    --brand: #0f5e73;
    --brand-deep: #073d4c;
    --brand-soft: #d4ebf1;
    --accent: #d4a35f;
    --accent-strong: #b4782f;
    --success: #2f7e4a;
    --danger: #9d2b2b;
    --shadow-sm: 0 8px 22px rgba(7, 41, 52, 0.08);
    --shadow-md: 0 18px 40px rgba(7, 41, 52, 0.14);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
    color: var(--text-body);
    background:
        radial-gradient(circle at 90% -10%, #d7eef6 0%, rgba(215, 238, 246, 0) 40%),
        radial-gradient(circle at 0% 20%, #e5f4e5 0%, rgba(229, 244, 229, 0) 32%),
        var(--bg);
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 94, 115, 0.1);
}

.header-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    text-decoration: none;
    color: var(--text-main);
    font-size: 24px;
    letter-spacing: 2px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    text-decoration: none;
    color: #555555;
    font-size: 15px;
    font-weight: 400;
    font-family: "Helvetica Neue", Arial, sans-serif;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--brand);
}

.banner {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #d9e8ed;
}

.banner-slider,
.banner-slide {
    height: 100%;
}

.banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(3, 32, 43, 0.56), rgba(3, 32, 43, 0.28));
}

.page-home .banner-slide::before {
    background: linear-gradient(110deg, rgba(3, 32, 43, 0.22), rgba(3, 32, 43, 0.08));
}

.banner-content {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, calc(100% - 40px));
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.96), 0 2px 6px rgba(0, 0, 0, 1);
}

.banner-content p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(18px, 2vw, 20px);
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 5px 16px rgba(0, 0, 0, 0.94), 0 2px 5px rgba(0, 0, 0, 1);
}

.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer;
    z-index: 4;
    font-size: 22px;
    transition: background 0.2s ease;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

.home-intro {
    padding: 52px 0 36px;
}

.founder-section {
    padding: 8px 0 26px;
}

.founder-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px;
}

.founder-avatar-wrap {
    background: linear-gradient(180deg, #f2f9fb 0%, #e2f0f5 100%);
    border: 1px solid #cde1e9;
    border-radius: 16px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    padding: 16px;
}

.founder-avatar {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f5e73, #073d4c);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: "Times New Roman", "Noto Serif SC", serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.founder-name {
    font-size: 20px;
    color: var(--text-main);
    font-weight: 700;
}

.founder-role {
    color: var(--text-muted);
    font-size: 13px;
}

.founder-content > p {
    color: var(--text-body);
    font-size: 15px;
    margin-bottom: 10px;
}

.founder-content .section-title {
    margin-bottom: 10px;
}

.founder-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.founder-points span {
    font-size: 13px;
    color: var(--brand-deep);
    background: #e6f2f6;
    border: 1px solid #cce2ea;
    border-radius: 999px;
    padding: 5px 10px;
}

.founder-quote {
    border-left: 4px solid var(--accent);
    background: #fff8ef;
    color: #8a5c20;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 14px;
}

.home-kicker,
.section-kicker {
    color: var(--brand);
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.home-title {
    font-family: "Times New Roman", "Noto Serif SC", serif;
    color: var(--text-main);
    font-size: clamp(28px, 4.2vw, 44px);
    line-height: 1.24;
    max-width: 1000px;
}

.value-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.value-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    color: var(--brand-deep);
    margin-bottom: 8px;
    font-size: 20px;
}

.value-card p {
    color: var(--text-body);
    font-size: 15px;
}

.selector-section {
    padding: 42px 0;
}

.selector-head h2 {
    color: var(--text-main);
    font-size: 26px;
    margin-bottom: 4px;
}

.selector-head p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.selector-grid {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.selector-grid input,
.selector-grid select,
.selector-grid textarea,
.lead-form input,
.lead-form select,
.lead-form textarea,
.month-range-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.month-range-wrap select {
    flex: 1;
    min-width: 0;
}

.month-range-sep {
    flex-shrink: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid #c9d7dd;
    border-radius: 10px;
    padding: 12px 12px;
    font-size: 14px;
    color: var(--text-main);
    background: #fff;
    min-height: 44px;
    font-family: inherit;
}

.selector-grid input:focus,
.selector-grid select:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    outline: 2px solid #c6e8f1;
    border-color: var(--brand);
}

.btn {
    border: none;
    border-radius: 10px;
    min-height: 44px;
    padding: 0 18px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff;
    box-shadow: 0 8px 20px rgba(15, 94, 115, 0.28);
}

.btn-ghost {
    background: #fff;
    color: var(--brand);
    border: 1px solid var(--brand);
}

.selector-meta {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.curated-routes,
.topic-section,
.knowledge-section,
.news-section,
.consult-section {
    padding: 52px 0;
}

.ship-topic {
    padding-top: 26px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 24px;
}

.section-title {
    color: var(--text-main);
    font-size: clamp(24px, 3vw, 34px);
    font-family: "Times New Roman", "Noto Serif SC", serif;
    line-height: 1.3;
}

.section-subtitle {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.text-link {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.text-link:hover {
    text-decoration: underline;
}

.cruise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cruise-card {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.cruise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cruise-card-cover {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.cruise-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cruise-card-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 52%;
    background: linear-gradient(to top, rgba(4, 29, 38, 0.84), rgba(4, 29, 38, 0));
}

.card-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.88);
    color: var(--brand-deep);
}

.card-label-row {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 24px);
}

.card-label-row .card-label {
    position: static;
    top: auto;
    left: auto;
}

.card-label.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 4px 11px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 11px;
    background: var(--company-strong, #4f748a);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.card-label .company-badge-name {
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.card-label.route-highlight-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 222, 120, 0.55);
    border-radius: 11px;
    background: rgba(7, 27, 37, 0.9);
    color: #ffd95f;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    padding: 4px 10px;
    max-width: 48%;
}

.route-highlight-name {
    display: block;
    max-width: 100%;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    color: #ffd95f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.company-generic {
    --company-strong: #4f748a;
}

.company-hal {
    --company-strong: #11875f;
}

.company-rc {
    --company-strong: #1b5dd6;
}

.company-celebrity {
    --company-strong: #6f4ac9;
}

.company-princess {
    --company-strong: #c64a79;
}

.company-ncl {
    --company-strong: #0087b8;
}

.company-cunard {
    --company-strong: #a3613c;
}

.company-crystal {
    --company-strong: #5d6f98;
}

.company-msc {
    --company-strong: #0073a8;
}

.company-disney {
    --company-strong: #b5831f;
}

.company-silversea {
    --company-strong: #607b9d;
}

.company-ponant {
    --company-strong: #1d8e6f;
}

.card-intro {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.cruise-card-body {
    padding: 18px;
    display: grid;
    gap: 12px;
    flex: 1;
}

.card-topline {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.card-title {
    color: var(--text-main);
    font-size: 19px;
    line-height: 1.42;
}

.card-meta {
    font-size: 14px;
    color: var(--text-body);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.card-ship-name,
.card-meta span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.card-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-stars-label {
    font-size: 12px;
    color: #4f6874;
    font-weight: 700;
}

.card-star-row {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.card-star {
    font-size: 14px;
    line-height: 1;
}

.card-star.on {
    color: #f3bd37;
}

.card-star.off {
    color: #c8d5db;
}

.card-star.half {
    color: #f3bd37;
    background: linear-gradient(90deg, #f3bd37 50%, #c8d5db 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-deep);
}

.card-reason {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px dashed #cfdee3;
    padding-top: 12px;
    gap: 12px;
}

.card-footer-simple {
    justify-content: flex-end;
}

.price {
    color: var(--accent-strong);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.price span {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 4px;
    font-weight: 500;
}

.mini-btn {
    color: var(--brand);
    font-weight: 700;
    font-size: 14px;
}

.no-result {
    text-align: center;
    padding: 46px 22px;
    background: #fff;
    border: 1px dashed #b6cad2;
    border-radius: var(--radius-md);
    color: var(--text-muted);
}

.topic-grid,
.ship-topic-grid,
.knowledge-grid,
.news-grid {
    display: grid;
    gap: 16px;
}

.route-topic-grid,
.star-level-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.asia-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.topic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ship-topic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.knowledge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.topic-card,
.ship-card,
.knowledge-card,
.news-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.route-topic-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    min-height: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    background: #d9e8ed;
}

.route-topic-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    transition: transform 0.25s ease;
}

.route-topic-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 27, 35, 0.78), rgba(5, 27, 35, 0.18));
}

.page-home .route-topic-card::after {
    display: none;
}

.route-topic-card span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.82), 0 1px 3px rgba(0, 0, 0, 0.92);
}

.star-card span {
    top: 10px;
    bottom: auto;
    left: 10px;
    right: 10px;
    font-size: 34px;
    line-height: 1.18;
}

.route-topic-card:hover img {
    transform: scale(1.04);
}

.asia-route-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.asia-route-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.asia-route-thumb {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.asia-route-body {
    flex: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: #fff;
}

.asia-route-title {
    color: var(--text-main);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
}

.asia-route-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.topic-card h3,
.ship-card h3,
.knowledge-card h3,
.news-card h3 {
    color: var(--text-main);
    font-size: 18px;
    margin-bottom: 10px;
}

.topic-card p,
.ship-card p,
.knowledge-card p,
.news-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.topic-card a,
.ship-card a,
.knowledge-card a,
.news-card a {
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.topic-card a:hover,
.ship-card a:hover,
.knowledge-card a:hover,
.news-card a:hover {
    text-decoration: underline;
}

.news-meta {
    font-size: 12px;
    color: #7a929d;
    margin-bottom: 6px;
}

.news-thumb-link {
    display: block;
    margin: -20px -20px 12px -20px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
}

.news-thumb {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.consult-section {
    background: linear-gradient(135deg, #f8fcfd 0%, #e6f1f4 100%);
    border-top: 1px solid #d7e4e9;
}

.consult-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
}

.consult-info {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.consult-info .section-title {
    font-size: clamp(24px, 3.6vw, 34px);
    margin-bottom: 10px;
}

.contact-channels {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.channel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid #d7e7ec;
    border-radius: 12px;
    background: #f9fcfd;
}

.channel-item span {
    font-size: 13px;
    color: var(--text-muted);
}

.channel-item strong {
    color: var(--brand-deep);
    font-size: 15px;
}

.lead-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 12px;
}

.lead-form label {
    display: grid;
    gap: 6px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
}

.lead-form textarea {
    resize: vertical;
    min-height: 110px;
}

.lead-status {
    min-height: 22px;
    font-size: 13px;
    color: var(--brand);
}

.footer {
    background: #0a1f27;
    color: #d5e2e7;
}

.footer-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

.footer a {
    color: #96d6e8;
    text-decoration: none;
    font-weight: 700;
}

.floating-consult {
    position: fixed;
    right: 18px;
    top: 20px;
    z-index: 100;
    text-decoration: none;
    background: linear-gradient(135deg, #f0b15d, #d4882a);
    color: #fff;
    border-radius: 999px;
    padding: 11px 18px;
    box-shadow: 0 14px 28px rgba(212, 136, 42, 0.4);
    font-size: 14px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.floating-consult:hover {
    transform: translateY(-1px);
}

.wechat-consult-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 18px;
}

.wechat-consult-modal[hidden] {
    display: none;
}

.wechat-consult-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 32, 41, 0.62);
    backdrop-filter: blur(1px);
}

.wechat-consult-panel {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    background: #fff;
    border: 1px solid #d4e3e9;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 18px 18px 16px;
    text-align: center;
}

.wechat-consult-close {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: #edf4f7;
    color: #2d5061;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.wechat-consult-title {
    color: var(--text-main);
    font-size: 23px;
    margin-bottom: 12px;
}

.wechat-consult-qr {
    width: min(280px, 100%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto 10px;
    border-radius: 12px;
    border: 1px solid #d8e6ec;
    box-shadow: 0 10px 22px rgba(14, 76, 104, 0.12);
}

.wechat-consult-id {
    color: var(--text-main);
    font-size: 15px;
    margin-bottom: 12px;
}

.wechat-consult-id strong {
    color: var(--brand-deep);
    font-size: 16px;
}

.wechat-consult-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.wechat-consult-actions .btn {
    min-height: 42px;
    display: grid;
    place-items: center;
    text-decoration: none;
}

.wechat-consult-note {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.wechat-consult-phone {
    color: var(--text-main);
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.6;
}

.wechat-consult-phone strong {
    color: var(--brand-deep);
    font-size: 15px;
}

.wechat-consult-feedback {
    min-height: 18px;
    margin-top: 6px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
}

.wechat-consult-feedback.is-error {
    color: #a03b35;
}

.old-contact {
    background: var(--panel);
    padding: 58px 0;
}

.old-contact .section-title {
    text-align: center;
    margin-bottom: 24px;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    width: min(100%, 320px);
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: var(--bg-soft);
    border: 1px solid #d7e4e9;
    transition: transform 0.22s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--text-main);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-body);
}

.contact-qr {
    width: min(150px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin: 6px auto 8px;
    display: block;
}

.contact-wechat h3 {
    margin-bottom: 0;
}

.contact-time {
    color: var(--text-muted) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.status-good {
    color: var(--success);
}

.status-warn {
    color: var(--danger);
}

@media (max-width: 1100px) {
    .selector-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cruise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topic-grid,
    .ship-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .route-topic-grid,
    .star-level-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .asia-route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .header-inner {
        height: auto;
        padding: 14px 0;
        flex-direction: column;
        align-items: center;
    }

    .nav {
        width: 100%;
        justify-content: center;
        gap: 14px;
    }

    .banner {
        height: 420px;
    }

    .value-grid,
    .knowledge-grid,
    .consult-layout {
        grid-template-columns: 1fr;
    }

    .founder-layout {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-title {
        font-size: clamp(24px, 5vw, 32px);
    }

    .route-topic-grid,
    .star-level-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .asia-route-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        justify-content: center;
        padding: 14px 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(1200px, calc(100% - 26px));
    }

    .banner {
        height: 340px;
    }

    .banner-prev,
    .banner-next {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .selector-grid {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .cruise-grid,
    .topic-grid,
    .ship-topic-grid,
    .knowledge-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .route-topic-grid,
    .star-level-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .wechat-consult-actions {
        grid-template-columns: 1fr;
    }

    .route-topic-card {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .route-topic-card img {
        min-height: 0;
    }

    .route-topic-card span {
        font-size: 21px;
        bottom: 8px;
    }

    .star-card span {
        top: 8px;
        bottom: auto;
        font-size: 27px;
    }

    .card-intro {
        font-size: 17px;
    }

    .floating-consult {
        right: 12px;
        top: 14px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .cruise-card:hover,
    .btn:hover,
    .floating-consult:hover {
        transform: none;
    }

    .cruise-card:active,
    .btn:active,
    .floating-consult:active {
        transform: scale(0.98);
    }
}

/* Temporary homepage mode: keep sections for later restore, but hide them on the homepage. */
.page-home-lite #routeTopics,
.page-home-lite #starLevels,
.page-home-lite #routeSelector {
    display: none;
}
