/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #f7f6f2;
    color: #1e1e2a;
    line-height: 1.6;
}

/* ===== SHARED POLISH & ACCESSIBILITY OVERRIDES ===== */
.logo-image {
    height: 58px;
}

/* The supplied logo already includes the company name. */
.logo > span {
    display: none;
}

.link-card {
    color: inherit;
    text-decoration: none;
    display: block;
}

.form-status {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: #eef7ef;
    color: #24552a;
    display: none;
}

.form-status.is-visible {
    display: block;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 0.25rem 0 1.15rem;
    color: #444;
    font-size: 0.92rem;
    line-height: 1.45;
}

.form-consent input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    flex: 0 0 auto;
}

.form-note {
    margin-top: 0.8rem;
    color: #666;
    font-size: 0.88rem;
}


.tour-results-summary {
    text-align: center;
    margin-top: 1.25rem;
    color: #555;
}

@media (max-width: 768px) {
    .header-top {
        justify-content: center;
    }

    .nav-primary,
    .nav-secondary {
        width: 100%;
        justify-content: center;
        gap: 0.75rem 1.2rem;
    }

    .nav-primary a,
    .nav-secondary a {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
    }

    .logo-image {
        height: 46px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .nav-primary,
    .nav-secondary {
        gap: 0.45rem 0.9rem;
    }

    .logo-image {
        height: 40px;
    }
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid #f2c66d;
    outline-offset: 3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: #d4a24e;
    color: #fff;
    padding: 0.9rem 2.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

.btn-primary:hover {
    background: #b8893a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 162, 78, 0.35);
}

.btn-search {
    display: inline-block;
    background: #d4a24e;
    color: #fff;
    padding: 0.7rem 2.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

.btn-search:hover {
    background: #b8893a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 162, 78, 0.30);
}

/* ===== HEADER ===== */
header {
    background: #1a1a2e;
    color: #fff;
    padding: 1rem 0 0.5rem;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: #d4a24e;
}

.nav-primary {
    display: flex;
    gap: 2rem;
}

.nav-primary a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.nav-primary a:hover,
.nav-primary a.active {
    color: #fff;
    border-bottom-color: #d4a24e;
}

.nav-secondary {
    display: flex;
    gap: 2rem;
    padding-top: 0.8rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.8rem;
}

.nav-secondary a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
    font-weight: 400;
}

.nav-secondary a:hover {
    color: #fff;
}
/* Logo with image */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo span {
    color: #d4a24e;
}

/* 小屏幕适配 */
@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    .logo-image {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
        gap: 0.4rem;
    }
    .logo-image {
        height: 28px;
    }
}

/* Final shared overrides */
.logo-image { height: 58px; }
.logo > span { display: none; }

@media (max-width: 768px) {
    .header-top { justify-content: center; }
    .nav-primary,
    .nav-secondary {
        width: 100%;
        justify-content: center;
        gap: 0.75rem 1.2rem;
    }
    .nav-primary a,
    .nav-secondary a {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
    }
    .logo-image { height: 46px; }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }
    .nav-primary,
    .nav-secondary { gap: 0.45rem 0.9rem; }
    .logo-image { height: 40px; }
}
/* ===== PAGE HERO (内页横幅) ===== */
.page-hero {
    background-size: cover;
    background-position: center;
    padding: 5rem 0 4rem;
    position: relative;
    color: #fff;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}
/* Logo link */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover .logo {
    opacity: 0.85;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo span {
    color: #d4a24e;
}

/* 小屏幕适配 */
@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    .logo-image {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
        gap: 0.4rem;
    }
    .logo-image {
        height: 28px;
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.3rem;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* ===== ABOUT PAGE ===== */
.our-story {
    padding: 4rem 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #1a1a2e;
}

.story-text p {
    color: #444;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.story-text strong {
    color: #1a1a2e;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
    display: block;
}

.our-values {
    padding: 4rem 0;
    background: #f7f6f2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.value-card .icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 0.8rem;
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #1a1a2e;
}

.value-card p {
    color: #555;
    font-size: 0.95rem;
}

.team {
    padding: 4rem 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    background: #f7f6f2;
    padding: 2rem 1.5rem 1.8rem;
    border-radius: 16px;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.8rem;
    border: 3px solid #d4a24e;
}

.team-card h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
}

.team-card .role {
    display: block;
    font-size: 0.85rem;
    color: #d4a24e;
    font-weight: 600;
    margin: 0.2rem 0 0.6rem;
}

.team-card p {
    font-size: 0.9rem;
    color: #555;
}

.stats {
    padding: 3.5rem 0;
    background: #1a1a2e;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-grid .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d4a24e;
}

.stats-grid .label {
    font-size: 1rem;
    opacity: 0.8;
}

.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: #fff;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
}

.cta-section p {
    color: #555;
    font-size: 1.1rem;
    margin: 0.5rem 0 2rem;
}

/* ===== FOOTER ===== */
footer {
    background: #12121e;
    color: #aaa;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-grid h4 {
    color: #fff;
    margin-bottom: 0.8rem;
}

.footer-grid a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 0.4rem;
    transition: 0.2s;
}

.footer-grid a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.6rem;
}

.social-icons a {
    text-decoration: none;
    transition: 0.2s;
}

.social-icons a:hover {
    transform: scale(1.15);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-primary {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .nav-secondary {
        gap: 1rem;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 1rem;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .stats-grid .number {
        font-size: 2.2rem;
    }
}
/* ===== HOME PAGE SPECIFIC ===== */

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.carousel-overlay h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.carousel-overlay p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 2;
}

.carousel-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dots span.active {
    background: #d4a24e;
    transform: scale(1.2);
}

/* Find My Trip */
.find-trip {
    padding: 3rem 0;
    background: #fff;
    text-align: center;
}

.find-trip h2 {
    font-size: 2rem;
    color: #1a1a2e;
}

.find-trip p {
    color: #666;
    margin-bottom: 1.5rem;
}

.trip-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.trip-filters select {
    padding: 0.7rem 1.2rem;
    border-radius: 40px;
    border: 1px solid #ddd;
    background: #f7f6f2;
    font-size: 1rem;
    color: #1a1a2e;
    min-width: 160px;
    cursor: pointer;
}

/* Why Choose */
.why-choose {
    padding: 4rem 0;
    background: #f7f6f2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.why-card {
    background: #fff;
    padding: 2rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.why-card .icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 0.8rem;
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #1a1a2e;
}

.why-card p {
    color: #555;
    font-size: 0.95rem;
}

/* Destinations */
.destinations {
    padding: 4rem 0;
    background: #fff;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.dest-card {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    background: #f7f6f2;
}

.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.dest-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.dest-card h4 {
    padding: 0.8rem 1rem;
    text-align: center;
    font-size: 1.05rem;
    color: #1a1a2e;
}

/* Mailing List */
.mailing-list {
    padding: 3rem 0;
    background: #1a1a2e;
    color: #fff;
    text-align: center;
}

.mailing-list h2 {
    font-size: 2rem;
}

.mailing-list p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.mailing-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.mailing-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    border: none;
    font-size: 1rem;
}

.mailing-form .btn-primary {
    padding: 0.8rem 2.2rem;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
    .hero-carousel {
        height: 350px;
    }
    .carousel-overlay h1 {
        font-size: 2.2rem;
    }
    .carousel-overlay p {
        font-size: 1rem;
    }
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trip-filters select {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 280px;
    }
    .carousel-overlay h1 {
        font-size: 1.6rem;
    }
    .dest-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    .dest-card img {
        height: 120px;
    }
    .trip-filters select {
        min-width: 100%;
    }
    .mailing-form {
        flex-direction: column;
        padding: 0 1rem;
    }
}
/* ===== TOURS PAGE SPECIFIC ===== */

.tour-filters-section {
    padding: 2.5rem 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.tour-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tour-filters select {
    padding: 0.7rem 1.2rem;
    border-radius: 40px;
    border: 1px solid #ddd;
    background: #f7f6f2;
    font-size: 1rem;
    color: #1a1a2e;
    min-width: 160px;
    cursor: pointer;
}

.tour-list {
    padding: 3rem 0 4rem;
    background: #f7f6f2;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.tour-image {
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.tour-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #d4a24e;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-info {
    padding: 1.5rem 1.8rem;
}

.tour-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.tour-meta .tour-dest {
    font-weight: 600;
    color: #1a1a2e;
}

.tour-info h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.tour-info p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.tour-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tour-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4a24e;
}

.btn-small {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.25s;
}

.btn-small:hover {
    background: #d4a24e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tour-filters select {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
    .tour-filters select {
        min-width: 100%;
    }
    .tour-image img {
        height: 160px;
    }
}
/* ===== CONTACT PAGE SPECIFIC ===== */

.contact-section {
    padding: 4rem 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #f7f6f2;
    transition: 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a24e;
    box-shadow: 0 0 0 3px rgba(212, 162, 78, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info */
.contact-info-wrapper h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-info-wrapper p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: #f7f6f2;
    border-radius: 16px;
    transition: 0.25s;
}

.contact-item:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.contact-item h4 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-item a {
    color: #d4a24e;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-social {
    padding: 1.2rem;
    background: #1a1a2e;
    border-radius: 16px;
    color: #fff;
}

.contact-social h4 {
    margin-bottom: 0.8rem;
}

.contact-social .social-icons a {
    color: #ccc;
}

.contact-social .social-icons a:hover {
    color: #fff;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f7f6f2;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ===== RESPONSIVE CONTACT ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .contact-item {
        padding: 1rem;
    }
    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 0;
    }
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* ===== TESTIMONIALS PAGE SPECIFIC ===== */

.testimonial-stats {
    padding: 3rem 0;
    background: #1a1a2e;
    color: #fff;
}

.testimonial-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.testimonial-stats .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d4a24e;
}

.testimonial-stats .label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Featured Testimonial */
.featured-testimonial {
    padding: 4rem 0;
    background: #fff;
}

.featured-card {
    background: #f7f6f2;
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.featured-quote {
    font-size: 5rem;
    color: #d4a24e;
    line-height: 0.8;
    margin-bottom: -0.5rem;
    font-family: Georgia, serif;
}

.featured-card blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #1a1a2e;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.featured-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d4a24e;
}

.featured-author h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
}

.featured-author span {
    font-size: 0.9rem;
    color: #777;
}

/* Testimonials Grid */
.testimonials-grid-section {
    padding: 4rem 0;
    background: #f7f6f2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: #d4a24e;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #999;
}

.testimonial-text {
    color: #444;
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: #1a1a2e;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #888;
}

/* Load More */
.load-more-wrapper {
    text-align: center;
}

/* Leave Review */
.leave-review {
    padding: 4rem 0;
    background: #fff;
}

.review-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #f7f6f2;
    padding: 3rem;
    border-radius: 24px;
}

.review-card h2 {
    font-size: 2rem;
    color: #1a1a2e;
}

.review-card p {
    color: #666;
    margin: 0.5rem 0 1.5rem;
}

/* ===== RESPONSIVE TESTIMONIALS ===== */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .featured-card {
        padding: 2rem;
    }
    .featured-card blockquote {
        font-size: 1.1rem;
    }
    .testimonial-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .testimonial-stats .number {
        font-size: 2.2rem;
    }
    .review-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .featured-author {
        flex-direction: column;
        text-align: center;
    }
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .testimonial-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}
/* ===== TOUR DETAIL PAGE SPECIFIC ===== */

.tour-detail-hero {
    background-size: cover;
    background-position: center;
    padding: 6rem 0 4rem;
    position: relative;
    color: #fff;
}

.tour-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.tour-detail-hero .container {
    position: relative;
    z-index: 1;
}

.tour-hero-content {
    max-width: 750px;
}

.tour-hero-badge {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge-duration {
    background: #d4a24e;
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-type {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

.tour-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tour-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.tour-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 1rem;
    opacity: 0.85;
}

/* Detail Content */
.tour-detail-content {
    padding: 4rem 0;
    background: #f7f6f2;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-section {
    background: #fff;
    padding: 2rem 2.2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.detail-section h2 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 1.2rem;
}

.detail-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

/* Itinerary */
.itinerary-item {
    border-left: 3px solid #d4a24e;
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.itinerary-item:last-child {
    margin-bottom: 0;
}

.itinerary-day {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 0.3rem;
}

.day-number {
    font-weight: 700;
    color: #d4a24e;
    font-size: 1rem;
}

.day-title {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1.05rem;
}

.itinerary-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Inclusions / Exclusions */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.inclusion-list {
    list-style: none;
    padding: 0;
}

.inclusion-list li {
    padding: 0.4rem 0;
    color: #444;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inclusion-list li::before {
    content: '✅';
    font-size: 0.9rem;
}

.exclusion-list {
    list-style: none;
    padding: 0;
}

.exclusion-list li {
    padding: 0.4rem 0;
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.exclusion-list li::before {
    content: '✖️';
    font-size: 0.9rem;
}

/* Reviews */
.review-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.review-header strong {
    color: #1a1a2e;
    font-size: 1rem;
}

.review-stars {
    color: #d4a24e;
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
}

.review-item p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Sidebar */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 2rem;
}

.booking-price {
    text-align: center;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.2rem;
}

.price-amount {
    font-size: 2.6rem;
    font-weight: 700;
    color: #d4a24e;
    display: block;
}

.price-per {
    font-size: 0.9rem;
    color: #888;
}

.booking-details p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.booking-details strong {
    color: #1a1a2e;
}

.booking-details {
    margin-bottom: 1.5rem;
}

.sidebar-card {
    background: #fff;
    padding: 1.5rem 1.8rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.sidebar-card h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card ul li {
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.95rem;
}

.related-tour {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.related-tour:last-child {
    border-bottom: none;
}

.related-tour img {
    width: 80px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-tour a {
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.related-tour a:hover {
    color: #d4a24e;
}

.related-tour span {
    display: block;
    color: #888;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE TOUR DETAIL ===== */
@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .booking-card {
        position: static;
    }
    .tour-hero-content h1 {
        font-size: 2.4rem;
    }
    .tour-detail-hero {
        padding: 4rem 0 3rem;
    }
}

@media (max-width: 768px) {
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
    .tour-hero-content h1 {
        font-size: 2rem;
    }
    .tour-hero-meta {
        flex-direction: column;
        gap: 0.3rem;
    }
    .detail-section {
        padding: 1.5rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .tour-hero-content h1 {
        font-size: 1.6rem;
    }
    .tour-hero-content p {
        font-size: 1rem;
    }
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .related-tour img {
        width: 60px;
        height: 45px;
    }
}
/* ========================================
   CORPORATE TOURS PAGE - COMPLETE
   ======================================== */

/* ----- Hero ----- */
.corporate-hero {
    background-size: cover;
    background-position: center;
    padding: 5rem 0 4rem;
    position: relative;
    color: #fff;
    text-align: center;
}

.corporate-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.corporate-hero .container {
    position: relative;
    z-index: 1;
}

.corporate-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.corporate-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.corporate-hero .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.corporate-hero .hero-badges span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1.5rem;
    border-radius: 40px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ----- Intro ----- */
.corporate-intro {
    padding: 4rem 0;
    background: #fff;
}

.corporate-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.corporate-intro-text h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.corporate-intro-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.corporate-intro-text .highlight {
    color: #d4a24e;
    font-weight: 600;
}

.corporate-intro-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
    display: block;
}

/* ----- Why Choose Corporate ----- */
.corporate-why {
    padding: 4rem 0;
    background: #f7f6f2;
}

.corporate-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.corporate-why-card {
    background: #fff;
    padding: 2rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.corporate-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.corporate-why-card .icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 0.8rem;
}

.corporate-why-card h4 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
}

.corporate-why-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ----- Corporate Solutions ----- */
.corporate-solutions {
    padding: 4rem 0;
    background: #fff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: #f7f6f2;
    padding: 2rem;
    border-radius: 16px;
    border-top: 4px solid #d4a24e;
    transition: 0.3s;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.solution-card .icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 0.6rem;
}

.solution-card h4 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.solution-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ----- Corporate Stats ----- */
.corporate-stats {
    padding: 3.5rem 0;
    background: #1a1a2e;
    color: #fff;
}

.corporate-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.corporate-stats .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d4a24e;
}

.corporate-stats .label {
    font-size: 1rem;
    opacity: 0.8;
}

/* ----- Corporate Testimonials ----- */
.corporate-testimonials {
    padding: 4rem 0;
    background: #f7f6f2;
}

.corporate-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.corporate-testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.corporate-testimonial-card .stars {
    color: #d4a24e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.corporate-testimonial-card blockquote {
    color: #444;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.corporate-testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.corporate-testimonial-card .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.corporate-testimonial-card .author .name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.corporate-testimonial-card .author .company {
    font-size: 0.85rem;
    color: #888;
}

/* ----- CTA ----- */
.corporate-cta {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

.corporate-cta h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
}

.corporate-cta p {
    color: #555;
    font-size: 1.1rem;
    margin: 0.5rem 0 2rem;
}

/* ========================================
   RESPONSIVE - CORPORATE TOURS
   ======================================== */
@media (max-width: 992px) {
    .corporate-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .corporate-hero h1 {
        font-size: 2.2rem;
    }
    .corporate-hero .hero-badges span {
        font-size: 0.85rem;
        padding: 0.3rem 1rem;
    }
    .corporate-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .corporate-stats .number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .corporate-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .corporate-why-grid {
        grid-template-columns: 1fr;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .corporate-hero h1 {
        font-size: 1.8rem;
    }
}
/* Logo with image */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo span {
    color: #d4a24e;
}

/* 小屏幕适配 */
@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    .logo-image {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1rem;
        gap: 0.4rem;
    }
    .logo-image {
        height: 28px;
    }
}
