/* Inner pages — aligned with homepage (tours.css / content.css) */

/* ── Sections ── */
.page-section {
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 3vw, 1.5rem);
}

.page-section--alt {
    background: #f7f5f2;
}

.page-section-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.page-section-head {
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.page-section-head h2 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.page-section-head p {
    font-size: clamp(0.88rem, 1.8vw, 1rem);
    color: #5c5348;
    max-width: 620px;
    margin: 0.45rem auto 0;
    line-height: 1.6;
}

.page-section-head .section-gold-line {
    margin: clamp(0.65rem, 2vw, 0.85rem) auto 0;
}

.page-section-head--left {
    text-align: left;
}

.page-section-head--left p {
    margin-left: 0;
}

.page-section-head--left .section-gold-line {
    margin-left: 0;
}

/* Split layout (detail + sidebar pages) */
.page-section-inner--split,
.tour-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(1.5rem, 3vw, 2.25rem);
    align-items: stretch;
    max-width: 1240px;
    margin: 0 auto;
}

/* ── Static tour grid (reuses .tour-card from tours.css) ── */
.tours-static-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.25rem);
}

.tours-static-grid .tour-card {
    flex: unset;
    width: 100%;
    height: 100%;
}

.tours-static-grid .tour-card-image {
    display: block;
    text-decoration: none;
}

/* ── One tour per row (site pages: luxury, discover, etc.) ── */
.tours-list-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.5vw, 1.25rem);
}

.tour-row-card {
    --tour-row-h: 300px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 0;
    min-height: var(--tour-row-h);
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-row-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.tour-row-card-image {
    display: block;
    overflow: hidden;
    height: var(--tour-row-h);
    flex-shrink: 0;
}

.tour-row-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-row-card:hover .tour-row-card-image img {
    transform: scale(1.05);
}

.tour-row-card-body {
    padding: 1.1rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-height: var(--tour-row-h);
}

.tour-row-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.tour-row-card-title {
    font-family: "Cinzel", serif;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

.tour-row-card-title a {
    color: #111;
    text-decoration: none;
}

.tour-row-card-title a:hover {
    color: #e68a3e;
}

.tour-row-card-duration {
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a5c3e;
    background: rgba(26, 92, 62, 0.08);
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    white-space: nowrap;
}

.tour-row-card-route {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #5c5348;
    line-height: 1.45;
}

.tour-row-card-route svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    fill: #2d8a4e;
}

.tour-row-card-desc {
    font-size: 0.84rem;
    line-height: 1.6;
    color: #5c5348;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-row-card-highlights {
    margin-top: 0.15rem;
}

.tour-row-card-highlights-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e68a3e;
    margin-bottom: 0.3rem;
}

.tour-row-card-highlights ul {
    list-style: none;
    display: grid;
    gap: 0.2rem;
}

.tour-row-card-highlights li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #5c5348;
}

.tour-row-card-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5c3e;
    font-weight: 700;
    font-size: 0.72rem;
}

.tour-row-card-note {
    font-size: 0.74rem;
    color: #888;
    font-style: italic;
    margin-top: auto;
    padding-top: 0.25rem;
}

.tour-row-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.35rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tour-row-card-price {
    font-size: 0.82rem;
    color: #2d8a4e;
    font-weight: 600;
}

.tour-row-card-price strong {
    color: #1a5c3e;
    font-size: 0.95rem;
}

.tour-row-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tour-row-card-actions .tour-btn {
    flex: 0 1 auto;
    min-width: 130px;
    padding: 0.52rem 0.85rem;
}

/* Info callout box */
.page-info-box {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(0.9rem, 2vw, 1.15rem) clamp(1rem, 2.5vw, 1.25rem);
    background: linear-gradient(135deg, rgba(26, 92, 62, 0.06) 0%, rgba(230, 138, 62, 0.06) 100%);
    border-left: 4px solid #e68a3e;
    border-radius: 0 10px 10px 0;
}

.page-info-box p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #5c5348;
    margin: 0;
}

.page-section-head--left p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #5c5348;
    margin-top: 0.4rem;
    max-width: 720px;
}

/* ── Page package grid (same tour-card format as homepage / blog) ── */
.page-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.25rem);
    align-items: stretch;
}

.page-pkg-grid .tour-card.tour-package-card {
    flex: none;
    width: 100%;
    max-width: none;
}

.page-pkg-grid .tour-pkg-title a,
.page-pkg-grid .tour-pkg-title a:hover,
.page-pkg-grid .tour-pkg-title a:focus {
    color: inherit;
    text-decoration: none;
}

.page-section-inner--split .page-pkg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ── Category cards (tours index) — tour-package format ── */
.category-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.25rem);
}

.category-card.tour-package-card {
    flex: none;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.category-card .tour-pkg-title {
    text-transform: none;
}

.category-card .category-card-count {
    margin: 0;
    font-size: clamp(0.72rem, 1.3vw, 0.82rem);
    color: #8a8278;
}

/* ── Tour detail page ── */
.tour-detail-page {
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem) clamp(3rem, 6vw, 4.5rem);
    background: #fff;
}

.tour-detail-main {
    min-width: 0;
}

/* Quick stats strip */
.tour-detail-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.tour-detail-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(145deg, #faf9f7 0%, #fff 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.tour-detail-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: rgba(26, 92, 62, 0.1);
    color: #1a5c3e;
    margin-bottom: 0.15rem;
}

.tour-detail-stat-icon svg {
    width: 1.05rem;
    height: 1.05rem;
}

.tour-detail-stat-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #9a9084;
}

.tour-detail-stat strong {
    font-family: "Outfit", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
}

.tour-detail-stat strong small {
    font-size: 0.72rem;
    font-weight: 600;
    color: #5c5348;
}

.tour-detail-stat--price strong {
    color: #1a5c3e;
}

.tour-detail-intro {
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    background: linear-gradient(135deg, #faf9f7 0%, #fff 55%, rgba(230, 138, 62, 0.04) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.tour-detail-duration {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a5c3e;
    background: rgba(26, 92, 62, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.tour-detail-intro h2,
.tour-itinerary h2,
.tour-guide-block h2,
.page-intro-block h2 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.25rem, 2.8vw, 1.65rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 0.35rem;
}

.tour-detail-intro p,
.page-intro-block p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #5c5348;
    margin-top: 0.75rem;
}

.tour-detail-overview {
    margin-top: 0.85rem;
}

.tour-detail-overview p {
    margin: 0 0 0.9rem;
    font-size: 0.92rem;
    line-height: 1.75;
    color: #5c5348;
}

.tour-detail-overview p:last-child {
    margin-bottom: 0;
}

.tour-detail-overview ul,
.tour-detail-overview ol {
    margin: 0 0 0.9rem;
    padding-left: 1.2rem;
    color: #5c5348;
    font-size: 0.92rem;
    line-height: 1.7;
}

.tour-detail-overview a {
    color: #1a5c3e;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.tour-detail-overview strong,
.tour-detail-overview b {
    color: #1a1510;
    font-weight: 700;
}

.tour-detail-price {
    margin-top: 1rem;
    font-size: 0.92rem;
    color: #2d8a4e;
    font-weight: 600;
}

.tour-detail-price strong {
    font-size: 1.15rem;
    color: #1a5c3e;
}

/* Highlights — card grid */
.tour-highlights--cards {
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.tour-highlights--cards h3 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: #111;
    margin-bottom: 1rem;
}

.tour-highlights-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.tour-highlights-grid li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #5c5348;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tour-highlights-grid li:hover {
    border-color: rgba(230, 138, 62, 0.35);
    box-shadow: 0 8px 24px rgba(230, 138, 62, 0.1);
}

.tour-highlights-check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(26, 92, 62, 0.12);
    color: #1a5c3e;
    margin-top: 0.1rem;
}

.tour-highlights-check svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* Legacy highlights box (other pages) */
.tour-highlights:not(.tour-highlights--cards) {
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
    padding: clamp(1rem, 2.5vw, 1.35rem);
    background: #f7f5f2;
    border-radius: 14px;
    border-left: 4px solid #e68a3e;
}

.tour-highlights:not(.tour-highlights--cards) h3 {
    font-family: "Cinzel", serif;
    font-size: 1.05rem;
    color: #111;
    margin-bottom: 0.75rem;
}

.tour-highlights:not(.tour-highlights--cards) ul {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.tour-highlights:not(.tour-highlights--cards) li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #5c5348;
}

.tour-highlights:not(.tour-highlights--cards) li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1a5c3e;
    font-weight: 700;
}

/* Itinerary — modern card timeline */
.tour-itinerary--modern {
    margin-top: clamp(2rem, 4vw, 2.75rem);
}

.tour-itinerary-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 1.35rem;
}

.tour-itinerary-sub {
    font-size: 0.82rem;
    color: #9a9084;
    margin: 0;
    max-width: 280px;
    line-height: 1.5;
}

.tour-itinerary-track {
    display: grid;
    gap: 0.85rem;
}

.tour-itinerary-card {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: stretch;
}

.tour-itinerary-card-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.35rem;
}

.tour-itinerary-card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e68a3e;
    box-shadow: 0 0 0 4px rgba(230, 138, 62, 0.2);
    flex-shrink: 0;
}

.tour-itinerary-card-line {
    flex: 1;
    width: 2px;
    min-height: 1rem;
    margin-top: 0.35rem;
    background: linear-gradient(180deg, rgba(230, 138, 62, 0.55) 0%, rgba(230, 138, 62, 0.12) 100%);
    border-radius: 2px;
}

.tour-itinerary-card-body {
    position: relative;
    overflow: hidden;
    padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1rem, 2.5vw, 1.35rem);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tour-itinerary-card:hover .tour-itinerary-card-body {
    transform: translateY(-2px);
    border-color: rgba(230, 138, 62, 0.25);
    box-shadow: 0 14px 36px rgba(230, 138, 62, 0.12);
}

.tour-itinerary-card-step {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e68a3e;
    margin-bottom: 0.45rem;
}

.tour-itinerary-card-bg-num {
    position: absolute;
    top: 0.35rem;
    right: 0.75rem;
    font-family: "Cinzel", serif;
    font-size: clamp(2.5rem, 6vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(230, 138, 62, 0.08);
    pointer-events: none;
    user-select: none;
}

.tour-itinerary-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 12px;
    margin-bottom: 0.65rem;
    color: #1a5c3e;
    background: rgba(26, 92, 62, 0.1);
}

.tour-itinerary-card-icon--sunset {
    color: #c45c1a;
    background: rgba(230, 138, 62, 0.15);
}

.tour-itinerary-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.tour-itinerary-card-body h3 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 0.4rem;
    padding-right: 2rem;
    line-height: 1.35;
}

.tour-itinerary-card-body p {
    font-size: 0.86rem;
    line-height: 1.7;
    color: #5c5348;
    margin: 0;
}

.tour-itinerary-card-media {
    margin: 0.85rem 0 0;
    border-radius: 12px;
    overflow: hidden;
    background: #eee;
}

.tour-itinerary-card-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* Extra content below itinerary */
.tour-extra-content {
    margin-top: clamp(2rem, 4vw, 2.75rem);
    padding-top: clamp(1.25rem, 3vw, 1.75rem);
    border-top: 1px solid rgba(26, 61, 50, 0.08);
}

.tour-extra-content-head {
    margin-bottom: 1rem;
}

.tour-extra-content-head h2,
.tour-extra-heading {
    font-family: "Cinzel", serif;
    color: #1a3d32;
    line-height: 1.3;
}

.tour-extra-content-head h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    margin: 0 0 0.35rem;
}

.tour-extra-heading--h2 {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    margin: 1.35rem 0 0.55rem;
}

.tour-extra-heading--h3 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    margin: 1.15rem 0 0.45rem;
}

.tour-extra-heading--h4 {
    font-family: "Outfit", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    margin: 1rem 0 0.4rem;
}

.tour-extra-prose {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #4a433c;
}

.tour-extra-prose p {
    margin: 0 0 0.85rem;
}

.tour-extra-prose a {
    color: #1a5c3e;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.tour-extra-prose a:hover {
    color: #c9922e;
}

.tour-extra-prose ul,
.tour-extra-prose ol {
    margin: 0 0 0.85rem;
    padding-left: 1.25rem;
}

.tour-extra-prose li {
    margin-bottom: 0.35rem;
}

.tour-extra-figure {
    margin: 1.1rem 0;
}

.tour-extra-figure img {
    display: block;
    width: 100%;
    border-radius: 14px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.tour-extra-figure figcaption {
    margin-top: 0.45rem;
    font-size: 0.8rem;
    color: #7a6f62;
    text-align: center;
}

/* Legacy itinerary (fallback) */
.tour-itinerary:not(.tour-itinerary--modern) {
    margin-top: clamp(2rem, 4vw, 2.75rem);
}

.tour-itinerary-list {
    margin-top: 1.25rem;
    display: grid;
    gap: 0;
    border-left: 2px solid rgba(230, 138, 62, 0.35);
    margin-left: 0.5rem;
    padding-left: 1.25rem;
}

.tour-itinerary-day {
    position: relative;
    padding-bottom: 1.35rem;
}

.tour-itinerary-day:last-child {
    padding-bottom: 0;
}

.tour-itinerary-day-num {
    position: absolute;
    left: calc(-1.25rem - 1px);
    transform: translateX(-50%);
    top: 0;
}

.tour-itinerary-day-num span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.3rem 0.5rem;
    background: #e68a3e;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    white-space: nowrap;
}

.tour-itinerary-day-body {
    padding-left: 0.5rem;
}

.tour-itinerary-day-body h3 {
    font-family: "Outfit", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.35rem;
}

.tour-itinerary-day-body p {
    font-size: 0.86rem;
    line-height: 1.65;
    color: #5c5348;
}

/* Tour guide */
.tour-guide-block {
    margin-top: clamp(2rem, 4vw, 2.75rem);
}

.tour-guide-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding: clamp(1rem, 2.5vw, 1.35rem);
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
}

.tour-guide-photo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f7f5f2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tour-guide-info h3 {
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
    color: #111;
}

.tour-guide-role {
    font-size: 0.78rem;
    font-weight: 600;
    color: #e68a3e;
    margin: 0.25rem 0 0.55rem;
}

.tour-guide-bio {
    font-size: 0.86rem;
    line-height: 1.65;
    color: #5c5348;
    margin-bottom: 0.65rem;
}

.tour-guide-meta {
    list-style: none;
    font-size: 0.8rem;
    color: #5c5348;
    display: grid;
    gap: 0.3rem;
}

.tour-guide-meta strong {
    color: #111;
}

/* ── Booking sidebar (sticky) ── */
.tour-detail-sidebar,
.page-sidebar-col {
    position: relative;
    align-self: stretch;
}

.tour-booking-sidebar {
    position: sticky;
    top: calc(var(--header-height, 118px) + 1rem);
    align-self: start;
}

.tour-booking-card {
    background: #fff;
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.tour-booking-head {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tour-booking-head img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: contain;
}

.tour-booking-head h3 {
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a3d32;
    line-height: 1.25;
    margin: 0;
}

.tour-booking-tour-name {
    font-size: 0.76rem;
    font-weight: 600;
    color: #e68a3e;
    margin-top: 0.2rem;
    line-height: 1.4;
}

.tour-booking-form .plan-trip-form__row--2 {
    grid-template-columns: 1fr;
}

.tour-booking-form .plan-trip-form__submit {
    margin-bottom: 0;
}

.tour-booking-contact {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    font-size: 0.72rem;
}

.tour-booking-contact a {
    color: #1a5c3e;
    font-weight: 600;
    text-decoration: none;
}

.tour-booking-contact a:hover {
    color: #e68a3e;
}

.tour-booking-contact span {
    color: #999;
    margin: 0 0.35rem;
}

/* Contact info */
.contact-info-list {
    list-style: none;
    margin-top: 0.75rem;
    display: grid;
    gap: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5c5348;
}

.contact-info-list a {
    color: #1a5c3e;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-list a:hover {
    color: #e68a3e;
}

.page-intro-block {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.page-featured-head {
    margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .tours-static-grid,
    .page-pkg-grid,
    .category-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .page-section-inner--split,
    .tour-detail-layout {
        grid-template-columns: 1fr;
    }

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

    .tour-highlights-grid {
        grid-template-columns: 1fr;
    }

    .tour-row-card {
        --tour-row-h: auto;
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .tour-row-card-image {
        height: 200px;
    }

    .tour-row-card-body {
        min-height: 0;
    }

    .tour-row-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .tour-row-card-actions {
        width: 100%;
    }

    .tour-row-card-actions .tour-btn {
        flex: 1;
    }

    .tour-booking-sidebar {
        position: static;
    }

    .tour-guide-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tour-guide-photo img {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .tours-static-grid,
    .page-pkg-grid,
    .category-cards,
    .page-section-inner--split .page-pkg-grid {
        grid-template-columns: 1fr;
    }

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