/* ============================================
   Page Templates Styles
   Shared styles for all page templates
   ============================================ */

/* Page Content Container */
.page-content {
    padding: 40px 20px;
    background: #f8f9fa;
    min-height: 60vh;
}

/* Page Article */
.page-article {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Page Introduction */
.page-introduction {
    background: #f0f7ff;
    border-left: 4px solid #3B7DC3;
    padding: 20px 25px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.page-introduction-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Table of Contents */
.table-of-contents {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.table-of-contents h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: #3B7DC3;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.toc-list a:hover {
    color: #F5A623;
    padding-left: 5px;
}

/* Content Sections */
.content-section {
    margin-bottom: 32px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e5e7eb;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    margin: 30px 0 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3B7DC3;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2a5a8f;
    margin: 25px 0 15px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

.content-section img {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    max-height: 440px;
    object-fit: cover;
    margin: 22px auto;
    border-radius: 8px;
}

.content-section img:not([src]),
.content-section img[src=""] {
    display: none;
}

/* FAQ Accordion */
.faq-section {
    margin-top: 20px;
}

.faq-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3B7DC3;
}

.faq-item.active {
    border-color: #3B7DC3;
    box-shadow: 0 4px 12px rgba(59, 125, 195, 0.15);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: #1a365d;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-item.active .faq-question {
    background: #f0f7ff;
    color: #3B7DC3;
}

.faq-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #3B7DC3;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: #555;
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 12px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

.faq-answer-content strong {
    color: #1a365d;
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid #F5A623;
    padding: 20px 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.highlight-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.highlight-box strong {
    color: #E09612;
}

/* Contact CTA */
.contact-cta-text {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Sidebar */
.page-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #3B7DC3;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
}

.sidebar-links a:hover {
    background: #f0f7ff;
    color: #3B7DC3;
    padding-left: 16px;
}

/* Listing and destination templates */
.template-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2a5a8f 100%);
    color: white;
    padding: 70px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.template-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 14px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
}

.template-hero p {
    font-size: 18px;
    max-width: 820px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.65;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
}

.filter-strip {
    background: white;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.listing-intro {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 24px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.listing-intro-main h2 {
    color: #1a365d;
    font-size: 26px;
    line-height: 1.3;
    margin: 0 0 10px;
}

.listing-intro-main p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

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

.listing-stats div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 12px;
    min-width: 0;
}

.listing-stats strong,
.listing-stats span {
    display: block;
}

.listing-stats strong {
    color: #1a365d;
    font-size: 18px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.listing-stats span {
    color: #64748b;
    font-size: 12px;
    line-height: 1.35;
    margin-top: 5px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dce6f2;
    color: #1a365d;
    background: #f7fbff;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.25;
}

.filter-chip.active,
.filter-chip:hover {
    background: #3B7DC3;
    color: white;
    border-color: #3B7DC3;
}

.filter-chip-button {
    cursor: pointer;
    font-family: inherit;
}

.planning-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.planning-path-grid--compact {
    margin-top: -4px;
}

.planning-path-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.planning-path-card i {
    color: #F5A623;
    font-size: 20px;
    margin-bottom: 12px;
}

.planning-path-card h3 {
    color: #1a365d;
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 8px;
}

.planning-path-card p {
    color: #475569;
    line-height: 1.65;
    margin: 0;
    font-size: 14px;
}

.sidebar-link-button {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    padding: 0;
    text-align: left;
    cursor: pointer;
}

.sidebar-link-button:hover {
    color: #3B7DC3;
}

.list-stack {
    display: grid;
    gap: 24px;
}

.route-list-card,
.article-list-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
}

.route-list-card img,
.article-list-card img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
}

.list-card-body {
    padding: 24px;
}

.eyebrow {
    color: #3B7DC3;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.list-card-body h2,
.list-card-body h3 {
    color: #1a365d;
    line-height: 1.3;
    margin-bottom: 10px;
}

.list-card-body p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #666;
    font-size: 14px;
    margin-bottom: 18px;
}

.meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    color: #3B7DC3;
    border: 1px solid #3B7DC3;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
}

.btn-primary-solid {
    display: inline-block;
    color: white;
    background: #F5A623;
    padding: 11px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    cursor: pointer;
}

.city-hero .container {
    max-width: 880px;
}

.city-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.city-hero-actions .btn-primary-solid,
.city-hero-actions .hero-link {
    min-width: 170px;
    text-align: center;
}

.city-hero-actions .hero-link {
    border-color: rgba(255, 255, 255, 0.86);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(3px);
}

.city-hero-actions .hero-link:hover {
    background: rgba(255, 255, 255, 0.18);
}

.city-landing-block {
    scroll-margin-top: 96px;
}

.city-landing-block h2 {
    margin-bottom: 18px;
}

.city-landing-block .content-section {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.city-block-tag_query .route-list-card,
.city-block-category .route-list-card {
    grid-template-columns: 230px minmax(0, 1fr);
}

.city-block-tag_query .route-list-card img,
.city-block-category .route-list-card img {
    min-height: 188px;
}

.city-block-tag_query .list-card-body,
.city-block-category .list-card-body {
    padding: 20px;
}

.city-text-callout {
    border: 1px solid rgba(26, 115, 232, 0.18);
    border-radius: 8px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.city-text-callout h3 {
    margin: 0 0 10px;
    font-size: 21px;
    color: #14345c;
}

.city-text-callout .content-section {
    margin-bottom: 16px;
}

.city-text-callout .btn-primary-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.city-cta-block .city-text-callout {
    background: linear-gradient(135deg, #fff7e8 0%, #ffffff 100%);
    border-color: rgba(245, 166, 35, 0.34);
}

.city-faq-block .content-section h3 {
    font-size: 20px;
    color: #1a365d;
    margin: 24px 0 8px;
    padding-top: 16px;
    border-top: 1px solid #e4edf7;
}

.city-faq-block .content-section h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.city-faq-block .content-section p {
    margin-bottom: 0;
}

.city-planning-card {
    border-top: 4px solid #F5A623;
}

.city-planning-card .eyebrow {
    margin-bottom: 4px;
}

.sidebar-empty {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.destination-topic-planner h2,
.destination-topic-checklist h2,
.destination-topic-cta h2 {
    margin-bottom: 16px;
}

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

.destination-topic-grid article {
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 18px;
    min-width: 0;
}

.destination-topic-grid i {
    color: #F5A623;
    font-size: 20px;
    margin-bottom: 10px;
}

.destination-topic-grid h3 {
    color: #1a365d;
    font-size: 18px;
    margin: 0 0 8px;
}

.destination-topic-grid p {
    color: #475569;
    line-height: 1.65;
    margin: 0;
    font-size: 14px;
}

.destination-topic-checklist ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.destination-topic-checklist li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    color: #334155;
    line-height: 1.65;
}

.destination-topic-checklist i {
    color: #16a34a;
    margin-top: 5px;
}

.destination-topic-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #fff7e8 0%, #ffffff 100%);
    border-color: rgba(245, 166, 35, 0.34);
}

.destination-topic-cta p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.destination-topic-cta .btn-primary-solid {
    min-width: 150px;
    text-align: center;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.destination-tile {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
}

.destination-tile img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.destination-tile-body {
    padding: 20px;
}

.destination-tile h2 {
    color: #1a365d;
    font-size: 22px;
    margin-bottom: 8px;
}

.quick-facts {
    background: white;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    text-align: center;
}

.quick-fact-icon {
    color: #3B7DC3;
    font-size: 30px;
    margin-bottom: 8px;
}

.quick-fact-value {
    color: #1a365d;
    font-size: 22px;
    font-weight: 700;
}

.quick-fact-label {
    color: #777;
    font-size: 13px;
}

.tour-detail-hero {
    min-height: 520px;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    padding: 80px 20px;
}

.tour-hero-content {
    max-width: 880px;
}

.tour-hero-content h1 {
    font-size: 52px;
    line-height: 1.14;
    margin: 10px 0 16px;
}

.tour-hero-content p {
    font-size: 20px;
    line-height: 1.65;
    max-width: 780px;
}

.tour-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.tour-hero-badges span,
.trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
}

.tour-hero-badges span {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.34);
    padding: 10px 13px;
}

.tour-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.tour-summary-grid div {
    background: white;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tour-summary-grid strong,
.tour-summary-grid span {
    display: block;
}

.tour-summary-grid strong {
    color: #1a365d;
    font-size: 14px;
    margin-bottom: 8px;
}

.tour-summary-grid span {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.trust-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.trust-strip span {
    color: #1a365d;
    background: #f0f7ff;
    padding: 9px 12px;
    font-size: 14px;
}

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.itinerary-day {
    border: 1px solid #e4edf7;
    border-radius: 8px;
    margin-bottom: 14px;
    background: #fff;
    overflow: hidden;
}

.itinerary-day-header {
    width: 100%;
    border: 0;
    background: #f8fbff;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto 18px;
    gap: 14px;
    align-items: center;
    padding: 18px;
    cursor: pointer;
    color: #1a365d;
    text-align: left;
}

.day-pill {
    background: #3B7DC3;
    color: white;
    padding: 7px 10px;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
}

.day-title {
    font-weight: 700;
    font-size: 17px;
}

.day-meals {
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.itinerary-day .itinerary-content {
    display: none;
    padding: 0 20px 20px;
}

.itinerary-day.active .itinerary-content {
    display: block;
}

.itinerary-day.active .fa-chevron-down {
    transform: rotate(180deg);
}

.price-note {
    background: #fff8e8;
    border-left: 4px solid #F5A623;
    padding: 16px 18px;
    border-radius: 4px;
    margin-bottom: 20px;
    color: #4b4b4b;
    line-height: 1.7;
}

.price-table-wrap {
    overflow-x: auto;
}

.tour-price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.tour-price-table th,
.tour-price-table td {
    border: 1px solid #e2e8f0;
    padding: 14px;
    text-align: left;
}

.tour-price-table th {
    background: #1a365d;
    color: white;
}

.tour-price-table td {
    color: #444;
}

.form-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tour-quote-card {
    position: sticky;
    top: 82px;
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    margin-bottom: 24px;
}

.tour-quote-card h3 {
    color: #1a365d;
    font-size: 26px;
    margin: 8px 0 10px;
}

.tour-quote-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.tour-quote-card .btn-primary-solid,
.tour-quote-card .btn-outline {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.landing-feature {
    background: #f7fbff;
    border: 1px solid #dce6f2;
    border-radius: 8px;
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.landing-feature i {
    color: #3B7DC3;
    margin-top: 4px;
}

.landing-feature p {
    margin: 0;
    color: #444;
    line-height: 1.65;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.7;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #3B7DC3;
    font-weight: 700;
}

.floating-tour-navigation {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-tour-navigation.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Tailor-made Section */
.tailor-made-section {
    background: linear-gradient(135deg, #1a365d 0%, #2a5a8f 100%);
    padding: 60px 20px;
    margin-top: 40px;
}

.tailor-made-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tailor-made-image img {
    width: 100%;
    border-radius: 8px;
}

.tailor-made-text {
    color: white;
}

.tailor-made-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tailor-made-text p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.tailor-made-cta .btn {
    display: inline-block;
    background: #F5A623;
    color: white;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.tailor-made-cta .btn:hover {
    background: #E09612;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 60px 20px;
    background: white;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.why-choose-us-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

.why-choose-us-item:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

.why-choose-us-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: #3B7DC3;
}

.why-choose-us-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
}

.why-choose-us-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tailor-made-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-content {
        padding: 20px 15px;
    }

    .page-article {
        padding: 25px 20px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .faq-question {
        padding: 15px 18px;
        font-size: 16px;
    }

    .faq-answer-content {
        padding: 0 18px 15px;
    }

    .tailor-made-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tailor-made-text h2 {
        font-size: 28px;
    }

    .tailor-made-text p {
        font-size: 16px;
    }

    .why-choose-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-sidebar {
        position: static;
        margin-top: 30px;
    }

    .template-hero h1 {
        font-size: 31px;
    }

    .listing-intro {
        grid-template-columns: 1fr;
    }

    .planning-path-grid {
        grid-template-columns: 1fr;
    }

    .destination-topic-grid,
    .destination-topic-cta {
        grid-template-columns: 1fr;
    }

    .destination-topic-cta .btn-primary-solid {
        width: 100%;
    }

    .content-layout,
    .route-list-card,
    .article-list-card {
        grid-template-columns: 1fr;
    }

    .city-hero-actions {
        justify-content: stretch;
    }

    .city-hero-actions .btn-primary-solid,
    .city-hero-actions .hero-link {
        width: 100%;
    }

    .route-list-card img,
    .article-list-card img {
        min-height: 220px;
    }

    .destination-grid,
    .quick-facts {
        grid-template-columns: 1fr;
    }

    .tour-detail-hero {
        min-height: 440px;
        padding: 58px 18px;
    }

    .tour-hero-content h1 {
        font-size: 34px;
    }

    .tour-hero-content p {
        font-size: 17px;
    }

    .tour-summary-grid,
    .form-grid-two {
        grid-template-columns: 1fr;
    }

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

    .itinerary-day-header {
        grid-template-columns: 72px minmax(0, 1fr) 18px;
    }

    .day-meals {
        grid-column: 2 / 3;
        white-space: normal;
    }

    .tour-quote-card {
        position: static;
    }

    .landing-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Tour Itinerary Page Styles
   ============================================ */

/* Tour Overview */
.tour-overview h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark, #1a365d);
}

.tour-overview-content {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tour-highlights {
    margin-bottom: 2rem;
}

.tour-highlights h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark, #1a365d);
}

.tour-highlights ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.tour-highlights li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Tour Itinerary */
.tour-itinerary {
    margin-bottom: 2rem;
}

.tour-itinerary h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark, #1a365d);
}

.itinerary-day {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.itinerary-day:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.itinerary-day h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #3B7DC3;
}

.itinerary-content {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.itinerary-image {
    margin-top: 1rem;
}

.itinerary-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Tour Price */
.tour-price {
    margin-bottom: 2rem;
}

.tour-price h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark, #1a365d);
}

/* Includes & Excludes */
.tour-includes-excludes {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.includes-section h3,
.excludes-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark, #1a365d);
}

.includes-section ul,
.excludes-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.includes-section li,
.excludes-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Tour Inquiry Form */
.tour-inquiry {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.tour-inquiry h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark, #1a365d);
}

.inquiry-form .form-group {
    margin-bottom: 1.5rem;
}

.inquiry-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark, #1a365d);
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #3B7DC3;
    box-shadow: 0 0 0 2px rgba(59, 125, 195, 0.2);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.contact-options label {
    font-weight: normal;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.contact-options input {
    width: auto;
    margin-right: 0.5rem;
}

.inquiry-form .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* ============================================
   Responsive Design for Tour Itinerary
   ============================================ */

@media (max-width: 768px) {
    .tour-overview h1 {
        font-size: 1.75rem;
    }

    .tour-itinerary h2,
    .tour-price h2,
    .tour-inquiry h2 {
        font-size: 1.35rem;
    }

    .itinerary-day h3 {
        font-size: 1.15rem;
    }

    .tour-includes-excludes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tour-inquiry {
        padding: 1.5rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .template-hero {
        padding: 58px 16px;
    }

    .template-hero h1 {
        max-width: 100%;
        font-size: 26px;
        line-height: 1.18;
        overflow-wrap: anywhere;
    }

    .template-hero p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }

    .listing-intro {
        padding: 18px;
        gap: 16px;
    }

    .listing-intro-main h2 {
        font-size: 22px;
    }

    .listing-stats {
        grid-template-columns: 1fr;
    }

    .filter-strip {
        padding: 14px;
        gap: 8px;
    }

    .filter-chip {
        max-width: 100%;
        white-space: normal;
    }

    .planning-path-card {
        padding: 17px;
    }

    .content-section {
        overflow: hidden;
    }

    .content-section h2,
    .content-section h3,
    .lead-text,
    .content-section p,
    .content-section li {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}
