﻿:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --bg-gray: #f5f7fa;
    --accent-green: #4caf50;
    --text-gray: #666666;
    --card-bg: #ffffff;
    --tag-bg: #e8f5e9;
    --tag-text: #2e7d32;
    --border-radius: 40px; /* Scaled up radius */
    --card-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
    --preview-scale: 0.67;
    --preview-padding: 27px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    color: #333;
    padding: var(--preview-padding) 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
}

.mobile-scale-frame {
    width: 798px;
    min-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.mobile-container {
    width: 1191px; /* Fixed width as requested */
    max-width: none; /* Removed constraints */
    background-color: transparent;
    min-height: 100vh;
    box-shadow: none;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px; /* Increased gap */
    transform: scale(var(--preview-scale));
    transform-origin: top left;
    will-change: transform;
}

/* Common Utilities */
.highlight-green {
    color: var(--accent-green);
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

/* Section 1: Hero */
.hero-section {
    width: 1191px; /* Fixed dimensions */
    height: 1684px; /* Fixed dimensions */
    min-height: 1684px; /* Ensure minimum height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--bg-gray);
    padding: 80px 40px; /* Scaled padding */
    border-radius: 0; /* Scaled radius */
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

.main-title {
    font-size: 96px; /* Scaled from 36px */
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.subtitle {
    font-size: 32px; /* Scaled from 12px */
    color: var(--text-gray);
    margin-bottom: 120px;
    font-weight: 300;
}

.logo-area {
    margin-bottom: 60px;
    display: flex;
    justify-content: center; /* Horizontally center logo */
    align-items: center;
    width: 100%;
}

.logo-img {
    max-width: 300px;
    height: auto;
    display: block;
}

.hero-logo-img {
    width: auto;
    max-width: 360px;
    max-height: 150px;
    object-fit: contain;
}

/* 
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-black);
    position: relative;
    padding-bottom: 10px;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-green);
}
*/

.cta-button {
    margin-top: 60px; /* Add top margin to push button down */
    display: inline-block;
    padding: 30px 100px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    text-decoration: none;
    font-size: 42px;
    border-radius: 60px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
}

/* Section 2: Story */
.story-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px; /* Scaled padding */
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.section-header {
    margin-bottom: 40px; /* Reduced from 60px */
}

.section-header h2 {
    font-size: 64px; /* Scaled from 24px */
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 24px; /* Scaled from 10px */
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Reduced from 50px */
    flex-grow: 1; /* Fill remaining space */
    padding-bottom: 0; /* Remove extra padding, rely on section padding */
}

.story-text p {
    font-size: 28px; /* Reduced from 32px */
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px; /* Reduced from 30px */
    text-align: justify;
}

.story-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-top: 10px;
    flex-grow: 1; /* Expand image area */
    position: relative;
    /* Reduced min-height to prevent overflow */
    min-height: 300px; 
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* Focus on the bottom/center of the image usually looks better for landscapes */
    object-position: center bottom;
}

/* Section 3: Itinerary */
.itinerary-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--primary-white); /* Use white background */
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-grow: 1;
    justify-content: space-around; /* Distribute items evenly */
    padding: 20px 0;
}

.itinerary-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.day-badge {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 24px;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
    margin-top: 10px; /* Align with first line */
}

.itinerary-content {
    flex-grow: 1;
    background-color: var(--bg-gray);
    padding: 30px;
    border-radius: 30px;
}

.itinerary-meta {
    display: flex;
    gap: 40px;
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--text-gray);
    font-weight: 500;
}

.itinerary-meta i {
    color: var(--accent-green);
    margin-right: 10px;
}

.itinerary-route {
    font-size: 28px;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
}

/* Section 4: Day Detail (Redesigned) */
.day-detail-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 80px 60px;
    background-color: rgb(245, 247, 250); /* Updated to specific color */
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Add a subtle background pattern or gradient */
.day-detail-section::before {
    content: '01';
    position: absolute;
    top: -50px;
    right: -20px;
    font-size: 400px;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    z-index: 0;
    pointer-events: none;
}

.day-02::before {
    content: '02';
}

.day-03::before {
    content: '03';
}

.day-04::before {
    content: '04';
}

.day-05::before {
    content: '05';
}

.day-06::before {
    content: '06';
}

.day-07::before {
    content: '07';
}

.day-detail-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-left {
    flex-grow: 1;
}

.day-tag {
    display: inline-block;
    background-color: var(--primary-black);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.day-route-title {
    font-size: 72px; /* Increased size */
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary-black);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.day-route-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 32px; /* Large readable text */
    color: #444;
    font-weight: 600;
}

.route-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-info i {
    color: var(--accent-green);
    font-size: 28px;
}

.route-divider {
    color: #ddd;
    font-weight: 300;
}

.day-route-subtitle {
    font-size: 28px;
    color: #666;
    font-weight: 400;
    background-color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.subtitle-divider {
    color: var(--accent-green);
    margin: 0 10px;
    font-weight: bold;
}

.day-detail-body {
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex-grow: 1;
    z-index: 1;
    padding-bottom: 20px; /* Add bottom padding */
}

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 50px;
    height: 720px; /* Slightly reduced height to fit padding */
}

/* Day Detail Transparent Style (Shared by Day 1-5) */
.day-detail-section + .day-detail-section {
    margin-top: 50px; /* æ¾¶æ°¬ãæ¶å¬®æ£¿é¨å¯æ£¿çº?*/
}

.day-detail-transparent .detail-text-card {
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.day-detail-transparent .day-detail-body {
    padding-bottom: 60px; /* More space at bottom */
}

.day-detail-transparent .detail-gallery-grid {
    height: 700px; /* Reduce height slightly to accommodate extra padding */
}

.gallery-item {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.detail-text-card {
    background-color: #fff;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 10px solid var(--accent-green);
}

.highlight-intro {
    font-size: 30px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

.detail-text-card p {
    font-size: 28px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.highlight-text {
    color: var(--accent-green);
    font-weight: 800;
}

.tip-text {
    background-color: var(--bg-gray);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 26px;
    color: #666;
    margin-top: 10px;
}

.tip-text i {
    color: var(--accent-green);
    font-size: 32px;
}

/* Remove unused collage styles */
.detail-gallery-collage, .collage-item, .collage-large, .detail-info-grid, .info-card, .info-card-title, .info-card-content, .highlight-tag {
    display: none;
}

/* Section: Trip Intro */
.trip-intro-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 80px 80px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.intro-title {
    font-size: 62px;
    font-weight: 900;
    color: #222;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.intro-desc-box {
    text-align: center;
    padding: 0 60px 40px;
    margin-bottom: 30px;
    border-bottom: 3px dashed #ddd;
}

.intro-desc {
    font-size: 28px;
    color: #333;
    font-weight: 500;
    line-height: 1.9;
}

.intro-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
    justify-content: center;
}

.intro-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 44px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.intro-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
}

.intro-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-card-icon i {
    font-size: 24px;
    color: #2e7d32;
}

.intro-card-title {
    font-size: 34px;
    font-weight: 800;
    color: #222;
}

.intro-card-text {
    font-size: 26px;
    color: #333;
    font-weight: 500;
    line-height: 1.7;
    padding-left: 70px;
}



/* Section: Trip Highlights */
.highlights-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 80px 60px 60px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.highlights-header {
    margin-bottom: 30px;
}

.highlights-header h2 {
    font-size: 72px;
    font-weight: 900;
    color: #222;
    margin-bottom: 12px;
}

.highlights-sub {
    font-size: 28px;
    color: #333;
    font-weight: 400;
}

.highlights-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    min-height: 0;
}

.highlights-grid-6 {
    grid-template-rows: repeat(3, 1fr);
}

.highlights-grid-8 {
    grid-template-rows: repeat(4, 1fr);
    gap: 18px 40px;
}

.highlight-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
}

.highlight-img-wrap {
    width: 100%;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    min-height: 0;
}

.highlight-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.highlight-card:hover .highlight-img-wrap img {
    transform: scale(1.05);
}

.highlight-img-empty {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-img-empty i {
    font-size: 42px;
    color: var(--accent-green);
    opacity: 0.3;
}

.highlight-name {
    margin-top: 14px;
    font-size: 30px;
    font-weight: 800;
    color: #2e7d32;
    text-align: center;
    line-height: 1.3;
}

.highlight-text {
    margin-top: 6px;
    font-size: 22px;
    color: #333;
    text-align: center;
    line-height: 1.5;
}

/* 8æ¤¤ç°ç«·çâ¬ç»±Ñå¾çå©æ£ */
.highlights-grid-8 .highlight-name {
    margin-top: 10px;
    font-size: 26px;
}

.highlights-grid-8 .highlight-text {
    margin-top: 4px;
    font-size: 20px;
}

.highlights-grid-8 .highlight-img-wrap {
    border-radius: 16px;
}

.highlights-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    gap: 20px;
}

.highlights-empty i {
    font-size: 60px;
}

.highlights-empty p {
    font-size: 28px;
}

/* Section: Compare */
.compare-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 80px 50px 60px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.compare-grid {
    display: grid;
    gap: 30px;
    align-items: start;
}

.compare-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.compare-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.compare-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    position: relative;
    border: 3px solid transparent;
    transition: transform 0.3s ease;
}

.compare-card:hover {
    transform: translateY(-4px);
}

.compare-card-recommended {
    border-color: #2e7d32;
}

.compare-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 2px;
}

.compare-card-name {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #222;
    padding: 36px 24px 20px;
    border-bottom: 2px solid #f0f0f0;
}

.compare-card-recommended .compare-card-name {
    color: #2e7d32;
}

.compare-details {
    flex: 1;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.compare-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid #f5f5f5;
}

.compare-row:nth-child(odd) {
    background: #fafafa;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-label {
    font-size: 24px;
    color: #888;
    font-weight: 500;
}

.compare-value {
    font-size: 24px;
    color: #333;
    font-weight: 700;
    text-align: right;
    max-width: 60%;
}

.compare-tip {
    margin-top: auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px 44px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border-left: 5px solid #2e7d32;
}

.compare-tip-title {
    font-size: 30px;
    font-weight: 800;
    color: #222;
    margin-bottom: 14px;
}

.compare-tip-title i {
    color: #f9a825;
    margin-right: 8px;
}

.compare-tip-content {
    font-size: 24px;
    color: #666;
    line-height: 2.2;
}

/* Section: Ranch */
.ranch-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 70px 50px 50px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ranch-title {
    font-size: 60px;
    font-weight: 900;
    color: #222;
    text-align: center;
    margin-bottom: 16px;
}

.ranch-subtitle {
    font-size: 26px;
    color: #666;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ranch-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 0;
}

.ranch-card {
    flex: 1;
    display: flex;
    gap: 28px;
    align-items: stretch;
    min-height: 0;
}

.ranch-card-right {
    flex-direction: row-reverse;
}

.ranch-card-img {
    flex: 0.85;
    border-radius: 20px;
    overflow: hidden;
    min-height: 0;
    max-height: 380px;
}

.ranch-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ranch-card-img-empty {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdf0d5, #f5e6c8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ranch-card-img-empty i {
    font-size: 42px;
    color: #c88a2e;
    opacity: 0.3;
}

.ranch-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.ranch-card-title {
    font-size: 34px;
    font-weight: 800;
    color: #2e7d32;
    margin-bottom: 14px;
    line-height: 1.4;
}

.ranch-card-title i {
    margin-right: 8px;
    font-size: 28px;
}

.ranch-card-desc {
    font-size: 24px;
    color: #222;
    line-height: 2;
}

/* Section 5: Tickets */
.tickets-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tickets-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ticket-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.2s;
}

.ticket-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ticket-item i {
    color: var(--accent-green);
    font-size: 32px;
    width: 40px;
    text-align: center;
}

.special-activity-card {
    background-color: var(--primary-black);
    color: #fff;
    padding: 50px;
    border-radius: 40px;
    margin-top: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.activity-header {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.activity-header i {
    color: var(--accent-green);
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.activity-tags span {
    background-color: rgba(255,255,255,0.15);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 26px;
    font-weight: 500;
}

.tickets-footer-note {
    margin-top: auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-green);
    border: 2px dashed var(--accent-green);
}

.tickets-footer-note i {
    font-size: 36px;
}

/* Section 6 & 7: Hotel Accommodation */
.hotel-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 80px 60px; /* Reduced vertical padding slightly */
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hotel-content-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    flex-grow: 1;
}

.hotel-content-grid-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(min-content, 1fr);
    gap: 40px;
    flex-grow: 1;
}

.hotel-content-grid-6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 40px;
    flex-grow: 1;
}

/* Make the FIRST item full width for better balance (1 Top + 4 Bottom) */
.hotel-content-grid-5 .hotel-region-card:first-child {
    grid-column: 1 / -1; /* Span full width */
    display: flex;
    flex-direction: column; /* Keep vertical layout but allow list to expand */
    justify-content: center;
}

/* Lay out the list items horizontally or in 2 columns for the wide card */
.hotel-content-grid-5 .hotel-region-card:first-child .hotel-list {
     display: grid;
     grid-template-columns: repeat(2, 1fr); /* 2 Columns for the list */
     gap: 15px 60px;
     width: 100%;
}

/* Reset the last child style if previously applied */
.hotel-content-grid-5 .hotel-region-card:last-child {
    grid-column: auto; /* Default */
}

.hotel-content-grid-5 .hotel-region-card:last-child .hotel-list {
     display: flex; /* Default back to flex column */
     flex-direction: column;
     gap: 20px;
}

.hotel-region-card {
    background-color: #fff;
    border-radius: 40px;
    padding: 35px; /* Slightly reduced padding */
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 25px; /* Reduced gap */
    transition: transform 0.3s ease;
}

.hotel-region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px; /* Reduced padding */
    margin-bottom: 5px; /* Reduced margin */
}

.region-header i {
    font-size: 36px; /* Slightly smaller icon */
    color: var(--accent-green);
    background-color: rgba(76,175,80,0.1);
    padding: 12px;
    border-radius: 50%;
    width: 60px; /* Slightly smaller box */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.region-header h3 {
    font-size: 32px; /* Slightly smaller font */
    font-weight: 800;
    color: #333;
}

.hotel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Reduced gap between list items */
}

.hotel-list li {
    font-size: 30px; /* Increased font size as requested */
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hotel-list li i {
    color: #ccc;
    font-size: 22px; /* Adjusted icon size */
}

.hotel-footer-note {
    margin-top: 30px; /* Reduced top margin */
    text-align: center;
    font-size: 24px; /* Slightly smaller font */
    color: #888;
    background-color: #fff;
    padding: 15px; /* Reduced padding */
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.hotel-footer-note i {
    color: var(--accent-green);
}

/* Section 9: Hotel Notes (New) */
.hotel-notes-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hotel-notes-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    flex-grow: 1;
}

.note-card {
    background-color: #fff;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.note-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.note-card h3 i {
    color: var(--accent-green);
    font-size: 40px;
}

.note-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.note-card li {
    font-size: 30px;
    line-height: 1.6;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.note-card li i {
    color: var(--accent-green);
    margin-top: 8px;
    font-size: 24px;
}

.note-card p {
    font-size: 30px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.special-notice {
    background-color: #fff;
    border-left: 10px solid var(--accent-green);
}

.upgrade-option {
    background-color: var(--primary-black);
    color: #fff;
}

.upgrade-option h3 {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.2);
}

.upgrade-option p {
    color: #eee;
}

.upgrade-option .highlight-text {
    background: none;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 32px;
}

/* Section 10: Dining (New) */
.dining-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--primary-white);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dining-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.meal-count-card {
    background-color: var(--primary-black);
    color: #fff;
    border-radius: 40px;
    padding: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.meal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.meal-icon {
    font-size: 50px;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.meal-info {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.meal-num {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
}

.meal-label {
    font-size: 32px;
    opacity: 0.8;
}

.meal-divider {
    width: 2px;
    height: 80px;
    background-color: rgba(255,255,255,0.2);
}

.dining-details-card {
    background-color: var(--bg-gray);
    border-radius: 40px;
    padding: 60px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.special-meal {
    background-color: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 2px dashed var(--accent-green);
}

.special-meal h3 {
    font-size: 36px;
    color: var(--primary-black);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.special-meal h3 i {
    color: var(--accent-green);
}

.special-meal p {
    font-size: 30px;
    color: #555;
    line-height: 1.6;
}

.special-meal .highlight-text {
    background: none;
    color: var(--accent-green);
    font-weight: 800;
}

.dining-policy h3 {
    font-size: 36px;
    color: var(--primary-black);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dining-policy h3 i {
    color: var(--accent-green);
}

.policy-text {
    font-size: 28px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.policy-text p {
    margin-bottom: 30px;
}

.policy-text ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.policy-text li {
    display: flex;
    align-items: flex-start;
}

.policy-text li strong {
    color: var(--primary-black);
    font-weight: 800;
    margin-right: 10px;
    white-space: nowrap;
}

/* Section 11: Transport (New) */
.transport-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.transport-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.transport-intro-card {
    background-color: var(--primary-black);
    color: #fff;
    border-radius: 40px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.intro-icon {
    font-size: 80px;
    color: var(--accent-green);
    background-color: rgba(255,255,255,0.1);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-text h3 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
}

.intro-text p {
    font-size: 28px;
    line-height: 1.5;
    color: #ddd;
}

.vehicle-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    flex-grow: 1;
}

.vehicle-card {
    background-color: #fff;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.v-icon {
    font-size: 48px;
    color: var(--accent-green);
    background-color: var(--bg-gray);
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v-info {
    display: flex;
    flex-direction: column;
}

.v-group {
    font-size: 24px;
    color: #999;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.v-name {
    font-size: 32px;
    font-weight: 800;
    color: #333;
}

.v-sub {
    font-size: 24px;
    color: #666;
    margin-top: 5px;
}

.transport-note-card {
    background-color: #fff;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-left: 10px solid var(--accent-green);
}

.transport-note-card h3 {
    font-size: 36px;
    color: var(--primary-black);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.transport-note-card h3 i {
    color: var(--accent-green);
}

.transport-notes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transport-notes li {
    font-size: 28px;
    line-height: 1.6;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.transport-notes li i {
    color: var(--accent-green);
    margin-top: 8px;
    font-size: 24px;
}

.transport-notes li strong {
    color: #333;
    font-weight: 800;
    white-space: nowrap;
}

/* Section 12: Booking (New) */
.booking-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--primary-white);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.booking-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-gray);
    padding: 40px 20px;
    border-radius: 40px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--accent-green);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.step-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.step-arrow {
    color: #ccc;
    font-size: 30px;
}

.highlight-step .step-icon {
    background-color: var(--accent-green);
    color: #fff;
    box-shadow: 0 10px 30px rgba(76,175,80,0.3);
}

.highlight-step .step-text {
    color: var(--accent-green);
}

/* Payment Details */
.payment-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-grow: 1;
}

.payment-card {
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.deposit-card {
    background-color: #fff;
    border: 2px solid #eee;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.payment-header i {
    font-size: 40px;
    color: var(--accent-green);
}

.payment-header h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-black);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.option-item {
    font-size: 28px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-item i {
    color: #999;
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.small-note {
    font-size: 22px;
    color: #999;
    margin-left: 10px;
}

.final-card {
    background-color: var(--primary-black);
    color: #fff;
}

.final-card .payment-header {
    border-bottom-color: rgba(255,255,255,0.2);
}

.final-card .payment-header h3 {
    color: #fff;
}

.final-card .payment-desc {
    font-size: 30px;
    line-height: 1.6;
    color: #eee;
    margin-bottom: 40px;
}

.payment-methods-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.payment-methods-row span {
    background-color: rgba(255,255,255,0.15);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Section 13: Cancellation (New) */
.cancellation-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cancellation-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
}

.policy-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #fff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    padding-left: 50px;
}

.policy-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    bottom: -60px; /* Connect to next item */
    width: 4px;
    background-color: #eee;
    z-index: 0;
}

.policy-item:last-child::before {
    display: none;
}

.policy-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    z-index: 1;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #eee;
}

.green-marker { background-color: #4caf50; }
.yellow-marker { background-color: #ffc107; }
.orange-marker { background-color: #ff9800; }
.red-marker { background-color: #f44336; }

.policy-time {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-black);
    width: 400px; /* Fixed width for alignment */
}

.policy-detail {
    font-size: 30px;
    color: #666;
    flex-grow: 1;
}

.green-text {
    color: var(--accent-green);
    font-weight: 800;
}

.percent {
    font-size: 36px;
    font-weight: 800;
    color: #333;
}

.special-policy-card {
    background-color: var(--primary-black);
    color: #fff;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.special-policy-card h3 {
    font-size: 36px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 20px;
}

.special-policy-card h3 i {
    color: var(--accent-green);
}

.policy-desc p {
    font-size: 30px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #eee;
}

.policy-desc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy-desc li {
    font-size: 28px;
    line-height: 1.6;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.policy-desc li i {
    color: var(--accent-green);
    margin-top: 8px;
}

.policy-desc li strong {
    color: #fff;
}

/* Section 14: License (New) */
.license-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--primary-white);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.license-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 60px; /* Increased gap */
    height: 100%;
    max-height: 1200px;
    padding: 20px;
}

.license-item {
    background-color: transparent; /* Removed gray background */
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    /* Removed shadow from container */
    box-shadow: none;
}

.license-item:hover {
    transform: translateY(-5px);
    /* Removed shadow from container */
    box-shadow: none;
}

.license-img-box {
    width: 100%;
    height: 100%;
    flex-grow: 1;
    background-color: #fff;
    border-radius: 10px; /* Sharp corners for frame look */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid #f8f8f8; /* Thick frame */
    padding: 0; /* Remove padding to maximize image */
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05); /* Deep shadow */
    position: relative;
}

/* Optional: Add a subtle 'glass' shine or texture if desired, but keep it clean for now */

.license-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure full document is visible */
    background-color: #fff; /* White background for transparent PNGs */
}

.license-name {
    font-size: 36px; /* Increased font size */
    font-weight: 800;
    color: var(--primary-black);
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.license-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    border-radius: 2px;
}

/* Section 15: Driver Team (New) */
.driver-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.driver-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.driver-intro-card {
    background-color: var(--primary-black);
    color: #fff;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.driver-intro-card p {
    font-size: 32px;
    line-height: 1.8;
    text-align: justify;
}

.driver-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    flex-grow: 1;
}

.driver-card-main {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.driver-card {
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.driver-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.driver-img-box {
    width: 100%;
    flex-grow: 1; /* Allow image box to fill available space */
    overflow: hidden;
    min-height: 0; /* Important for flex/grid child scrolling/sizing */
}

.driver-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.driver-card:hover .driver-img-box img {
    transform: scale(1.05);
}

.driver-info {
    padding: 30px;
    text-align: center;
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.driver-info h3 {
    font-size: 36px;
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 800;
}

.driver-info p {
    font-size: 24px;
    color: #666;
    line-height: 1.5;
}

/* Section 16: Guarantee (renamed from 8) */
.guarantee-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Section 8: Price (renamed from 16) */
.price-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.price-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.price-table-container {
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 2px solid #eee;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 28px;
    flex: 1;
}

.price-table thead {
    background-color: var(--primary-black);
    color: #fff;
}

.price-table th {
    padding: 35px 20px;
    text-align: center;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 2px;
}

.price-sub {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 5px;
}

.price-table td {
    padding: 35px 20px;
    text-align: center;
    border-bottom: 2px solid #f5f5f5;
    color: #444;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:nth-child(even) {
    background-color: #fcfcfc;
}

.date-col {
    font-weight: 600;
    color: #333;
    font-size: 28px;
}

.price-col {
    font-family: 'Arial', sans-serif; /* Use a clean font for numbers */
    font-weight: bold;
    font-size: 30px;
}

.highlight-price {
    color: var(--accent-green);
    font-size: 34px;
    font-weight: 900;
}

.price-notes-card {
    background-color: #fff;
    border-radius: 40px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.note-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.note-item i {
    font-size: 36px;
    color: var(--accent-green);
    background-color: var(--bg-gray);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.note-text {
    font-size: 28px;
    line-height: 1.6;
    color: #555;
    padding-top: 10px;
}

.note-text strong {
    color: #333;
    font-weight: 800;
    margin-right: 10px;
}

.guarantee-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.guarantee-header-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.green-line {
    width: 50px;
    height: 5px;
    background-color: var(--accent-green);
}

.guarantee-label {
    font-size: 28px; /* Scaled */
    font-weight: bold;
    color: var(--accent-green);
    letter-spacing: 4px;
}

.section-title-large {
    font-size: 72px; /* Scaled from 28px */
    font-weight: 900;
    margin-bottom: 15px;
}

.guarantee-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
    flex-grow: 1;
}

.service-card {
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: var(--card-shadow);
}

.light-card {
    background-color: var(--bg-gray);
}

.dark-card {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.card-icon-title {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.icon-box {
    width: 80px; /* Scaled */
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
}

.black-icon {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.card-icon-title h3 {
    font-size: 42px; /* Scaled from 18px */
    font-weight: bold;
}

.card-desc {
    font-size: 32px; /* Scaled from 13px */
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.card-tag {
    display: inline-block;
    background-color: var(--tag-bg);
    color: var(--tag-text);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 24px; /* Scaled from 11px */
    font-weight: bold;
}

/* Dark Card Specifics */
.complaint-line {
    margin-bottom: 40px;
}

.complaint-label {
    font-size: 28px;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.complaint-number {
    font-size: 64px; /* Scaled from 28px */
    font-weight: bold;
    letter-spacing: 2px;
}

.complaint-features {
    list-style: none;
    font-size: 28px; /* Scaled from 12px */
    color: #ccc;
}

.complaint-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.complaint-features li i {
    color: var(--accent-green);
    margin-top: 8px;
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.stat-box {
    background-color: #fff;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    padding: 40px;
    width: 48%;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.stat-number {
    font-size: 64px; /* Scaled from 24px */
    font-weight: 900;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 28px; /* Scaled from 12px */
    color: var(--text-gray);
}

/* Footer */
.page-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px solid #eee;
    font-size: 24px; /* Scaled from 10px */
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--accent-green);
    border-radius: 50%;
    margin-right: 15px;
}

.divider {
    margin: 0 15px;
    color: #ddd;
}

/* Section 17: Map (New) */
.map-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--bg-gray);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.map-image-container {
    width: 100%;
    height: 100%;
    max-height: 1200px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    border: 10px solid #f9f9f9;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #fff;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 30px;
    gap: 20px;
}

.map-placeholder i {
    font-size: 100px;
    color: var(--accent-green);
    opacity: 0.5;
}

.map-overlay-text {
    position: absolute; 
    bottom: 30px; 
    right: 30px; 
    background: rgba(255,255,255,0.9); 
    padding: 15px 30px; 
    border-radius: 30px; 
    font-weight: bold; 
    color: #333; 
    font-size: 24px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-overlay-text i {
    color: var(--accent-green);
}

.map-legend {
    display: flex;
    gap: 60px;
    background-color: var(--bg-gray);
    padding: 30px 60px;
    border-radius: 50px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 28px;
    color: #555;
    font-weight: bold;
}

.legend-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #eee;
}

.legend-dot.start { background-color: var(--primary-black); }
.legend-dot.route { background-color: var(--accent-green); }
.legend-dot.attraction { background-color: #ff9800; }

/* Editor Sidebar Styles */
.editor-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background-color: #2c3e50;
    color: #ecf0f1;
    z-index: 10000;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    overflow-y: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.editor-mode-active .editor-sidebar {
    transform: translateX(0);
}

/* Adjust body to make room for sidebar when active */
.editor-mode-active {
    padding-left: 320px !important; /* Move content to right */
}

/* Sidebar Toggle Button (Always visible) */
#toggle-edit-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10001;
    width: auto;
}

.editor-sidebar #toggle-edit-btn {
    position: static;
    width: 100%;
    margin-bottom: 20px;
}

.editor-header h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid #34495e;
    padding-bottom: 10px;
    text-align: center;
}

.editor-section {
    margin-bottom: 30px;
    background: #34495e;
    padding: 15px;
    border-radius: 8px;
}

.editor-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.editor-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #95a5a6;
    color: white;
    font-size: 14px;
    transition: background 0.2s;
}

.editor-btn:hover:not(:disabled) {
    opacity: 0.9;
}

.editor-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.editor-btn.primary { background-color: #3498db; }
.editor-btn.success { background-color: #2ecc71; }
.editor-btn.danger { background-color: #e74c3c; }

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.prop-group {
    margin-bottom: 15px;
}

.prop-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #bdc3c7;
}

.prop-group input[type="color"] {
    width: 100%;
    height: 40px;
    border: none;
    cursor: pointer;
}

.prop-group input[type="number"],
.prop-group input[type="text"],
.prop-group input[type="file"] {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #7f8c8d;
    background: #ecf0f1;
    color: #2c3e50;
}

.editor-footer {
    margin-top: 50px;
    font-size: 12px;
    color: #7f8c8d;
    text-align: center;
}

/* Editor Highlight Styles */
.editor-mode-active * {
    cursor: default; /* Reset cursor */
}

.editor-mode-active h1, 
.editor-mode-active h2, 
.editor-mode-active h3, 
.editor-mode-active p, 
.editor-mode-active span,
.editor-mode-active img,
.editor-mode-active i {
    cursor: pointer; /* Indicate selectable */
}

.editor-selected {
    outline: 3px dashed #e74c3c !important;
    outline-offset: 2px;
    position: relative;
    z-index: 10;
}

/* Section 18: Early Bird (New) */
.early-bird-section {
    width: 1191px;
    height: 1684px;
    min-height: 1684px;
    padding: 100px 60px;
    background-color: var(--bg-gray); /* Match other pages */
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.early-bird-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
}

.promo-banner {
    background: #000; /* Black background */
    color: #fff; /* White text */
    padding: 60px 50px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    margin: 0 40px; /* Align width with cards below */
}

.promo-tag {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-green);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    border: 2px solid #000; /* Add border to separate from black bg */
}

.promo-banner h3 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -1px;
    color: #fff;
}

.promo-banner .promo-desc {
    font-size: 22px;
    color: rgba(255,255,255,0.8); /* Slightly transparent white */
    font-weight: 300;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 40px; /* Add some side padding */
}

.benefit-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row; /* Horizontal Layout */
    align-items: center;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.benefit-icon {
    width: 100px; /* Larger icon container */
    height: 100px;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px; /* Larger icon */
    margin-right: 40px; /* Space between icon and text */
    margin-bottom: 0; /* Reset bottom margin */
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.benefit-info {
    flex-grow: 1;
}

.benefit-card h4 {
    font-size: 32px; /* Larger title */
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-list {
    list-style: none;
    text-align: left;
    font-size: 24px; /* Larger list text */
    color: var(--text-gray);
    width: 100%;
}

.benefit-list li {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-text {
    font-size: 24px; /* Larger body text */
    color: var(--text-gray);
    line-height: 1.6;
    text-align: left; /* Left align for horizontal layout */
    text-align-last: left;
}

/* Elegant highlighting */
.highlight-red {
    color: var(--primary-black);
    font-weight: 600;
}

.price-tag {
    color: var(--accent-green);
    font-size: 22px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.detail-text-card .highlight-text {
    color: var(--accent-green);
    font-weight: 600;
}

[contenteditable="true"] {
    outline: 2px solid #3498db !important;
    background-color: rgba(52, 152, 219, 0.1);
    min-width: 20px;
}

/* Guarantee Section specific fix */
.guarantee-section {
    padding-bottom: 80px !important; /* Force extra space at bottom */
    min-height: auto; /* Allow height to grow */
    height: auto !important; /* Override fixed height if any */
}

/* Responsive - Scaled down for mobile view but maintains ratio */
@media (max-width: 1200px) {
    .mobile-scale-frame {
        margin: 0 auto;
    }

    .mobile-container {
        transform-origin: top left;
        width: 1191px; /* Keep original width for layout calculation */
        margin-bottom: 0;
    }
    
    body {
        display: flex;
        justify-content: center;
        overflow-x: hidden;
    }
}

@media (max-width: 900px) {
    :root { --preview-scale: 0.62; }

    body {
        padding: 0;
    }

    .mobile-scale-frame {
        width: 100vw;
    }
}

@media (max-width: 760px) {
    :root { --preview-scale: 0.54; }
}

@media (max-width: 640px) {
    :root { --preview-scale: 0.45; }
}

@media (max-width: 520px) {
    :root { --preview-scale: 0.43; }
}

@media (max-width: 430px) {
    :root { --preview-scale: 0.36; }
}

@media (max-width: 390px) {
    :root { --preview-scale: 0.33; }
}

@media (max-width: 360px) {
    :root { --preview-scale: 0.30; }
}

/* Summer backend render fixes */
.promo-tag {
    display: none !important;
}

.brand-logo-text {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #1c5963;
    font-family: Arial, 'PingFang SC', sans-serif;
    font-size: 76px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
}

.brand-logo-text span {
    margin-top: 10px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 8px;
}

.story-section {
    padding: 88px 70px 72px;
}

.story-section .section-header {
    margin-bottom: 30px;
}

.story-section .section-header h2,
.compare-section .section-header h2,
.hotel-notes-section .section-header h2,
.early-bird-section .section-header h2 {
    font-size: 60px;
}

.story-content {
    display: grid;
    grid-template-rows: auto 520px;
    gap: 28px;
    flex: 1;
    min-height: 0;
}

.story-text {
    background: #fff;
    border-radius: 30px;
    padding: 38px 46px 32px;
    box-shadow: var(--card-shadow);
}

.story-text p {
    font-size: 25px;
    line-height: 1.72;
    margin-bottom: 16px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-image {
    height: 520px;
    min-height: 0;
    flex: none;
    margin-top: 0;
}

.compare-section {
    padding: 78px 54px 58px;
}

.compare-section .section-header {
    margin-bottom: 26px;
}

.compare-grid {
    flex: 1;
    min-height: 0;
    align-items: stretch;
}

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

.compare-card-name {
    font-size: 32px;
    padding: 32px 18px 18px;
}

.compare-badge {
    font-size: 18px;
    padding: 5px 14px;
}

.compare-row {
    padding: 16px 20px;
}

.compare-label,
.compare-value {
    font-size: 21px;
}

.compare-tip {
    margin-top: 28px;
    padding: 28px 34px;
}

.compare-tip-title {
    font-size: 28px;
}

.compare-tip-content {
    font-size: 22px;
    line-height: 1.8;
}

.hotel-notes-section {
    padding: 86px 60px 64px;
}

.hotel-notes-section .section-header {
    margin-bottom: 28px;
}

.hotel-notes-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
    gap: 28px;
    min-height: 0;
}

.note-card {
    border-radius: 28px;
    padding: 32px 34px;
    gap: 12px;
    min-height: 0;
}

.note-card h3 {
    font-size: 30px;
    gap: 14px;
    padding-bottom: 14px;
    margin-bottom: 4px;
}

.note-card h3 i {
    font-size: 32px;
}

.note-card ul {
    gap: 10px;
}

.note-card li,
.note-card p {
    font-size: 23px;
    line-height: 1.55;
}

.early-bird-section {
    padding: 86px 60px 64px;
}

.early-bird-section .section-header {
    margin-bottom: 30px;
}

.early-bird-content {
    justify-content: flex-start;
    gap: 34px;
    min-height: 0;
}

.promo-banner {
    padding: 44px 50px;
    margin: 0 40px;
}

.promo-banner h3 {
    font-size: 44px;
    margin-bottom: 14px;
    font-weight: 700;
}

.promo-banner .promo-desc {
    font-size: 24px;
}

.benefit-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    padding: 0 40px;
}

.benefit-card {
    border-radius: 24px;
    padding: 30px 32px;
    align-items: flex-start;
}

.benefit-icon {
    width: 78px;
    height: 78px;
    font-size: 32px;
    margin-right: 24px;
}

.benefit-info h4,
.benefit-card h4 {
    font-size: 30px;
    margin-bottom: 12px;
}

.benefit-text,
.benefit-list {
    font-size: 23px;
    line-height: 1.55;
}

.benefit-list li {
    margin-bottom: 6px;
}

/* ========== Editor Sidebar Styles ========== */
#toggle-edit-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10001;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

#toggle-edit-btn.active {
    left: 320px;
}

.editor-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #1a1a2e;
    color: #eee;
    z-index: 10000;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.3);
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

.editor-mode-active .editor-sidebar {
    left: 0;
}

.editor-header {
    padding: 20px;
    background-color: #16213e;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.editor-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.editor-section {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.editor-section h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8899aa;
    margin-bottom: 12px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.editor-btn {
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    background-color: rgba(255,255,255,0.08);
    color: #ddd;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.editor-btn:hover:not(:disabled) {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

.editor-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.editor-btn.primary {
    background-color: #3498db;
    border-color: #2980b9;
    color: #fff;
}

.editor-btn.primary:hover:not(:disabled) {
    background-color: #2980b9;
}

.editor-btn.success {
    background-color: #27ae60;
    border-color: #229954;
    color: #fff;
}

.editor-btn.success:hover:not(:disabled) {
    background-color: #229954;
}

.editor-btn.danger {
    background-color: transparent;
    border-color: #e74c3c;
    color: #e74c3c;
}

.editor-btn.danger:hover:not(:disabled) {
    background-color: #e74c3c;
    color: #fff;
}

.prop-group {
    margin-bottom: 12px;
}

.prop-group label {
    display: block;
    font-size: 12px;
    color: #8899aa;
    margin-bottom: 5px;
}

.prop-group input[type="color"] {
    width: 100%;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    background-color: rgba(255,255,255,0.08);
    cursor: pointer;
    padding: 2px;
}

.prop-group input[type="number"],
.prop-group input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    background-color: rgba(255,255,255,0.08);
    color: #eee;
    font-size: 13px;
}

.prop-group input[type="file"] {
    width: 100%;
    padding: 6px;
    font-size: 12px;
    color: #aaa;
}

.editor-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.editor-footer p {
    font-size: 12px;
    color: #667;
    text-align: center;
}

.editor-selected {
    outline: 3px solid #3498db !important;
    outline-offset: 2px;
    position: relative;
}

.editor-mode-active .mobile-container {
    margin-left: 160px;
    transition: margin-left 0.3s ease;
}

/* ============================================================
   éã¦â¬ä½¸ç«·çâ¬ç»«?- PHPéè§åµéçåµé²å¿åéã©â¬å¤å«¨
   ============================================================ */

/* --- é°æç°µéåçç¼æç¸ç¯å¨ç¬ --- */
.hotel-content-grid-1 {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}
.hotel-content-grid-1 .hotel-region-card {
    width: 80%;
    max-width: 600px;
}

.hotel-content-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    flex-grow: 1;
    align-content: center;
}

.hotel-content-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex-grow: 1;
    align-content: center;
}

/* grid-4, grid-5, grid-6 already defined in base CSS */

/* Hotel layout: full-width stacked region cards with two-column hotel lists */
.hotel-content-grid-1,
.hotel-content-grid-2,
.hotel-content-grid-3,
.hotel-content-grid-4,
.hotel-content-grid-5,
.hotel-content-grid-6 {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    grid-auto-rows: auto !important;
    gap: 42px !important;
    flex-grow: 0 !important;
}

.hotel-content-grid-1 .hotel-region-card,
.hotel-content-grid-2 .hotel-region-card,
.hotel-content-grid-3 .hotel-region-card,
.hotel-content-grid-4 .hotel-region-card,
.hotel-content-grid-5 .hotel-region-card,
.hotel-content-grid-6 .hotel-region-card {
    width: 100% !important;
    max-width: none !important;
    grid-column: auto !important;
}

.hotel-region-card {
    padding: 46px 48px !important;
    gap: 32px !important;
}

.hotel-region-card .region-header {
    margin-bottom: 0 !important;
    padding-bottom: 24px !important;
}

.hotel-region-card .hotel-list,
.hotel-content-grid-5 .hotel-region-card:first-child .hotel-list,
.hotel-content-grid-5 .hotel-region-card:last-child .hotel-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px 86px !important;
    width: 100% !important;
}

.hotel-region-card .hotel-list li {
    min-width: 0 !important;
}

/* Merged hotel board: region cards with all visible tiers in one page */
.hotel-board-section {
    height: auto;
    min-height: 1684px;
    padding: 90px 60px 70px;
    background: var(--bg-gray);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    gap: 0;
}

.hotel-board-header {
    text-align: center;
    margin-bottom: 34px;
}

.hotel-board-header h2 {
    font-family: inherit;
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    color: #202429;
    letter-spacing: 2px;
    margin: 0 0 22px;
}

.hotel-board-subtitle {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px;
    width: 86%;
    margin: 0 auto;
    color: #8d7e62;
}

.hotel-board-subtitle span {
    height: 2px;
    background: #b8aa8b;
}

.hotel-board-subtitle strong {
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 10px;
    white-space: nowrap;
}

.hotel-board-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.hotel-board-card {
    background: #fff;
    border: none;
    border-radius: 40px;
    padding: 38px 18px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.hotel-board-region {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px;
    margin: 0 86px 24px;
}

.hotel-board-region span {
    height: 2px;
    background: #c8bfad;
}

.hotel-board-region h3 {
    font-family: inherit;
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
    color: #1f252b;
    letter-spacing: 2px;
    white-space: nowrap;
}

.hotel-board-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    border: 1px solid #dedbd4;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.hotel-board-table th,
.hotel-board-table td {
    height: 72px;
    padding: 8px 12px;
    border-right: 1px solid #dedbd4;
    border-bottom: 1px solid #dedbd4;
    text-align: center;
    vertical-align: middle;
    font-size: 29px;
    line-height: 1.18;
    font-weight: 500;
    color: #22272c;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.hotel-board-table tr:last-child th,
.hotel-board-table tr:last-child td {
    border-bottom: 0;
}

.hotel-board-table th:last-child,
.hotel-board-table td:last-child {
    border-right: 0;
}

.hotel-board-table .hotel-tier {
    width: 132px;
    font-size: 31px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #2e7d32;
}

.hotel-board-table .hotel-tier-comfort {
    color: #2e7d32;
    background: #fff;
}

.hotel-board-table .hotel-tier-standard {
    color: #2e7d32;
    background: #fff;
}

.hotel-board-table .hotel-tier-luxury {
    color: #2e7d32;
    background: #fff;
}

.hotel-board-note {
    width: 100%;
    min-height: 78px;
    margin-top: 34px;
    padding: 16px 34px;
    border-radius: 42px;
    background: linear-gradient(90deg, #ecebe7, #f8f7f5);
    color: #62573f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 31px;
    line-height: 1.25;
    letter-spacing: 3px;
    text-align: center;
}

.hotel-board-note i {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #758d75;
    color: #fff;
    font-size: 28px;
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    .hotel-board-section {
        padding-left: 60px;
        padding-right: 60px;
    }

    .hotel-board-header h2 {
        font-size: 72px;
    }

    .hotel-board-card {
        border-radius: 26px;
    }

    .hotel-board-region {
        margin-left: 72px;
        margin-right: 72px;
    }

    .hotel-board-table th,
    .hotel-board-table td {
        font-size: 27px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* --- çå²â¼ç» â¬æµ å¬ªç«·çâ¬ (éè§åµæ¾¶âæçå©æ£éç£çª) --- */
.overview-spacious {
    gap: 60px !important;
    padding: 60px 0 !important;
}
.overview-spacious .itinerary-content {
    padding: 40px;
}
.overview-spacious .itinerary-route {
    font-size: 32px;
}

.overview-comfortable {
    gap: 50px !important;
    padding: 40px 0 !important;
}
.overview-comfortable .itinerary-content {
    padding: 35px;
}

.overview-compact {
    gap: 35px !important;
    padding: 20px 0 !important;
}

.overview-dense {
    gap: 25px !important;
    padding: 10px 0 !important;
}
.overview-dense .itinerary-content {
    padding: 25px;
}
.overview-dense .itinerary-meta {
    font-size: 22px;
    gap: 30px;
}
.overview-dense .itinerary-route {
    font-size: 26px;
}

/* --- éã§ã¨ç¼æç¸ç¯å¨ç¬ --- */
.tickets-grid-large {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
}
.tickets-grid-large .ticket-item {
    padding: 45px !important;
    font-size: 34px !important;
}

.tickets-grid-medium {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 35px !important;
}
.tickets-grid-medium .ticket-item {
    padding: 35px !important;
    font-size: 30px !important;
}

.tickets-grid-normal {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
}

.tickets-grid-compact {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
}
.tickets-grid-compact .ticket-item {
    padding: 22px !important;
    font-size: 26px !important;
}

/* --- æµ éç¸çã¨îæ¥?--- */
.price-table-spacious .price-table td,
.price-table-spacious .price-table th {
    padding: 30px 20px !important;
    font-size: 32px !important;
}

.price-table-normal .price-table td,
.price-table-normal .price-table th {
    padding: 20px 15px;
}

.price-table-compact .price-table td,
.price-table-compact .price-table th {
    padding: 14px 12px !important;
    font-size: 26px !important;
}

/* --- éâç¬©æµ¼æ¨»å¬ç¯å¨ç¬ --- */
.benefit-grid-2 .benefit-card {
    padding: 50px !important;
}
.benefit-grid-2 .benefit-card h4 {
    font-size: 36px !important;
}

.benefit-grid-3 .benefit-card {
    padding: 40px;
}

.benefit-grid-4 .benefit-card {
    padding: 30px !important;
}
.benefit-grid-4 .benefit-card h4 {
    font-size: 28px !important;
}

/* Layout fixes for summer display pages */
.hero-season-tag,
.promo-tag {
    display: none !important;
}

.story-section {
    padding: 86px 70px 74px;
}

.story-content {
    grid-template-rows: minmax(0, auto) minmax(500px, 1fr);
    gap: 30px;
}

.story-text {
    max-height: 690px;
    overflow: hidden;
}

.story-text p {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.story-image {
    height: auto;
    min-height: 500px;
}

.compare-section {
    padding: 82px 54px 62px;
}

.compare-grid {
    grid-template-rows: minmax(0, 1fr);
}

.compare-card {
    min-width: 0;
    height: 100%;
}

.compare-details {
    min-height: 0;
}

.compare-row {
    flex: 1 1 0;
    min-height: 76px;
    gap: 14px;
}

.compare-label,
.compare-value {
    line-height: 1.25;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.compare-tip {
    flex: 0 0 auto;
}

.hotel-notes-section {
    padding: 72px 60px 120px;
}

.hotel-notes-section .section-header {
    margin-bottom: 22px;
}

.hotel-notes-content {
    grid-auto-rows: auto;
    grid-template-rows: none;
    align-content: start;
    gap: 24px;
}

.note-card {
    overflow: hidden;
    padding: 26px 34px;
}

.note-card h3 {
    padding-bottom: 12px;
    margin-bottom: 2px;
}

.note-card ul {
    gap: 8px;
}

.note-card h3,
.note-card ul,
.note-card p {
    min-width: 0;
}

.note-card li,
.note-card p {
    line-height: 1.48;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.upgrade-option .highlight-text {
    font-size: 28px;
}

.early-bird-content {
    justify-content: center;
    gap: 42px;
}

.benefit-grid-4 {
    grid-template-rows: repeat(2, minmax(220px, 1fr));
}

.benefit-card {
    min-width: 0;
    overflow: hidden;
}

.benefit-info {
    min-width: 0;
}

.benefit-text,
.benefit-list,
.benefit-list li {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Requested layouts: hotel notes and grass comparison */
.hotel-notes-section {
    padding: 84px 60px 82px;
}

.hotel-notes-section .section-header {
    margin-bottom: 42px;
}

.hotel-notes-content {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 34px;
    align-content: start;
}

.note-card {
    width: 100%;
    border-radius: 34px;
    padding: 36px 54px;
}

.note-card h3 {
    font-size: 34px;
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 16px;
}

.note-card h3 i {
    font-size: 38px;
}

.note-card ul {
    gap: 14px;
}

.note-card li,
.note-card p {
    font-size: 27px;
    line-height: 1.55;
}

.upgrade-option .highlight-text {
    font-size: 29px;
}

.compare-section {
    padding: 86px 50px 74px;
}

.compare-section .section-header {
    margin-bottom: 42px;
}

.compare-grid {
    flex: 0 0 auto;
    grid-template-rows: none;
    align-items: start;
    gap: 32px;
}

.compare-card {
    height: auto;
}

.compare-card-name {
    font-size: 38px;
    padding: 38px 24px 28px;
}

.compare-badge {
    top: 18px;
    right: 18px;
    font-size: 22px;
    padding: 7px 18px;
}

.compare-row {
    flex: 0 0 auto;
    min-height: 0;
    padding: 23px 30px;
}

.compare-label,
.compare-value {
    font-size: 25px;
    line-height: 1.3;
}

.compare-tip {
    margin-top: 130px;
    min-height: 420px;
    padding: 46px 52px;
}

.compare-tip-title {
    font-size: 32px;
    margin-bottom: 22px;
}

.compare-tip-content {
    font-size: 25px;
    line-height: 1.95;
}

/* Requested layout: early bird offer */
.early-bird-section {
    padding: 86px 60px 82px;
}

.early-bird-section .section-header {
    margin-bottom: 0;
}

.early-bird-content {
    flex: 1;
    justify-content: flex-start;
    gap: 62px;
    padding-top: 118px;
}

.early-bird-section .promo-banner {
    margin: 0 40px;
    padding: 54px 60px;
    border-radius: 28px;
    min-height: 238px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.early-bird-section .promo-banner h3 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 400;
}

.early-bird-section .promo-banner .promo-desc {
    font-size: 24px;
    line-height: 1.45;
}

.early-bird-section .promo-tag {
    display: none !important;
}

.early-bird-section .benefit-grid,
.early-bird-section .benefits-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-rows: none;
    gap: 32px;
    padding: 0 40px;
}

.early-bird-section .benefit-card {
    min-height: 156px;
    border-radius: 22px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    text-align: left;
}

.early-bird-section .benefit-icon {
    width: 96px;
    height: 96px;
    margin-right: 56px;
    background-color: #e8f5e9;
    color: var(--accent-green);
    font-size: 38px;
}

.early-bird-section .benefit-icon i::before {
    content: "\f06b";
}

.early-bird-section .benefit-info h4,
.early-bird-section .benefit-card h4 {
    font-size: 32px !important;
    line-height: 1.25;
    margin-bottom: 14px;
}

.early-bird-section .benefit-text,
.early-bird-section .benefit-list {
    font-size: 25px;
    line-height: 1.55;
}

.early-bird-section .benefit-list li {
    margin-bottom: 8px;
}

.early-bird-section .price-tag {
    font-size: 25px;
}

/* Let content pages grow when text or images exceed one screen. Keep the cover fixed. */
.capture-section > section:not(.hero-section) {
    height: auto !important;
    min-height: 1684px !important;
    overflow: visible !important;
}

.capture-section > .hero-section {
    height: 1684px !important;
    min-height: 1684px !important;
    overflow: hidden !important;
}

/* Preserve rich-text green marks from the admin editor on mobile webviews. */
.detail-text-card .highlight-text,
.detail-text-card .highlight-green,
.detail-text-card .ql-color-green,
.detail-text-card .ql-color-008a00,
.detail-text-card .ql-color-4caf50,
.detail-text-card [class~="ql-color-#008a00"],
.detail-text-card [class~="ql-color-#4caf50"],
.detail-text-card [style*="color:#008a00"],
.detail-text-card [style*="color: #008a00"],
.detail-text-card [style*="color:#4caf50"],
.detail-text-card [style*="color: #4caf50"],
.detail-text-card [style*="color:rgb(0, 138, 0)"],
.detail-text-card [style*="color: rgb(0, 138, 0)"],
.detail-text-card [style*="color:rgb(76, 175, 80)"],
.detail-text-card [style*="color: rgb(76, 175, 80)"],
.detail-text-card [style*="color:green"],
.detail-text-card [style*="color: green"] {
    color: var(--accent-green) !important;
}

.detail-text-card .ql-bg-green,
.detail-text-card .ql-bg-008a00,
.detail-text-card .ql-bg-4caf50,
.detail-text-card [class~="ql-bg-#008a00"],
.detail-text-card [class~="ql-bg-#4caf50"],
.detail-text-card [style*="background-color:#008a00"],
.detail-text-card [style*="background-color: #008a00"],
.detail-text-card [style*="background-color:#4caf50"],
.detail-text-card [style*="background-color: #4caf50"],
.detail-text-card [style*="background-color:rgb(0, 138, 0)"],
.detail-text-card [style*="background-color: rgb(0, 138, 0)"],
.detail-text-card [style*="background-color:rgb(76, 175, 80)"],
.detail-text-card [style*="background-color: rgb(76, 175, 80)"] {
    background-color: rgba(76, 175, 80, 0.18) !important;
}

/* Comfort pricing table */
.price-section {
    --price-dark: #15241f;
    --price-ink: #122229;
    --price-subtext: #263f3a;
    --price-accent: var(--accent-green);
    --price-row: #ffffff;
    --price-row-alt: #f6f9f4;
    --price-line: rgba(66, 85, 57, 0.16);
}

.price-section .price-content {
    justify-content: flex-start;
    gap: 42px;
}

.price-section .price-table-container.price-table-compact {
    flex: none;
    display: block;
    overflow: hidden;
    background-color: var(--price-row);
    border: 1px solid var(--price-line);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(19, 36, 31, 0.08);
}

.price-section .price-table {
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    font-family: inherit;
    color: var(--price-ink);
}

.price-section .price-table thead {
    background-color: var(--price-dark);
}

.price-section .price-table th {
    padding: 32px 16px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
    vertical-align: middle;
}

.price-section .price-table th:last-child,
.price-section .price-table td:last-child {
    border-right: 0;
}

.price-section .price-plan-title,
.price-section .price-plan-desc {
    display: block;
}

.price-section .price-plan-desc {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
}

.price-section .price-table td {
    padding: 34px 18px !important;
    border-right: 1px solid var(--price-line);
    border-bottom: 1px solid var(--price-line);
    background-color: var(--price-row);
    vertical-align: middle;
}

.price-section .price-table tbody tr:nth-child(even) td {
    background-color: var(--price-row-alt);
}

.price-section .price-table tbody tr:last-child td {
    border-bottom: 0;
}

.price-section .date-col {
    width: 22%;
    color: var(--price-ink);
    font-size: 30px;
    line-height: 1.22;
    font-weight: 900;
}

.price-section .date-col span {
    display: inline-block;
}

.price-section .price-table.has-comfort th:first-child,
.price-section .price-table.has-comfort .date-col {
    width: 31%;
}

.price-section .price-table.has-comfort .date-col {
    font-size: 22px;
    white-space: nowrap;
}

.price-section .price-table.has-comfort .date-col br {
    display: none;
}

.price-section .price-table.has-comfort .date-col span {
    display: inline;
}

.price-section .price-table.has-comfort th:not(:first-child),
.price-section .price-table.has-comfort .price-plan-col {
    width: 23%;
}

.price-section .price-table.has-comfort .price-amount {
    font-size: 34px;
}

.price-section .price-table.has-comfort .child-price {
    font-size: 22px;
}

.price-section .price-table.no-comfort .date-col {
    width: 34%;
    white-space: nowrap;
}

.price-section .price-table.no-comfort .date-col br {
    display: none;
}

.price-section .price-table.no-comfort .date-col span {
    display: inline;
}

.price-section .price-table.no-comfort .price-plan-col {
    width: 33%;
}

.price-section .price-plan-col {
    width: 26%;
    color: var(--price-ink);
    font-family: inherit;
    text-align: center;
}

.price-section .price-amount {
    color: var(--price-ink);
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
}

.price-section .comfort-plan .price-amount,
.price-section .comfort-plan .child-price {
    color: var(--price-accent);
}

.price-section .child-price {
    margin-top: 9px;
    color: var(--price-subtext);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
}

@media (max-width: 900px) {
    .price-section .price-table.has-comfort .date-col {
        white-space: normal;
        line-height: 1.22;
    }

    .price-section .price-table.has-comfort .date-col br {
        display: initial;
    }

    .price-section .price-table.has-comfort .date-col span {
        display: inline-block;
    }
}
