: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);
}

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

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: 40px 0;
}

.mobile-container {
    width: 1191px; /* Fixed width as requested */
    max-width: none; /* Removed constraints */
    background-color: transparent;
    min-height: 100vh;
    box-shadow: none;
    overflow-x: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px; /* Increased gap */
}

/* 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;
}

/* 
.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 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;
}

.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-container {
        transform-origin: top left;
        transform: scale(0.3); /* Scale down to fit mobile screens roughly */
        width: 1191px; /* Keep original width for layout calculation */
        /* Since we are scaling, we might need to adjust the container height or let it flow */
        margin-bottom: -70%; /* Adjust margin to remove whitespace caused by scaling */
    }
    
    body {
        /* Center the scaled content */
        display: block;
        overflow-x: hidden;
    }
}

/* ========== 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 */

/* --- 行程简介布局 (根据天数调整间距) --- */
.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;
}
