/* Heritage & Culture Theme Stylesheet - Viathra Leisure */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
    --forest: #143d32;
    --forest-deep: #0c2b24;
    --ivory: #f7f3ea;
    --sage: #e8ede5;
    --charcoal: #25312c;
    --cinnamon: #b45b3e;
    --gold: #c49a4a;
    --white: #ffffff;
    --line: #d6d8d0;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--ivory);
    color: var(--charcoal);
    font-family: var(--font-sans);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--forest-deep);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-top: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.15;
}

h2 em, h1 em {
    font-style: italic;
    color: var(--cinnamon);
    font-weight: 400;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cinnamon);
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 1px;
    background: var(--cinnamon);
}

.page-width {
    width: min(92%, 1240px);
    margin-left: auto;
    margin-right: auto;
}

/* Custom Heritage Navbar Modifications */
.site-nav-heritage.floating-pill-header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 1150px);
    z-index: 1050;
    background: #09201a !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 0.55rem 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.logo-v-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

.logo-brand-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    color: var(--white);
    font-weight: 600;
}

.logo-brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
}

.site-nav-heritage .nav-link {
    color: rgba(247, 243, 234, 0.85) !important;
    font-weight: 400;
    font-size: 0.88rem;
    padding: 0.4rem 1rem !important;
    transition: color 0.2s ease;
}

.site-nav-heritage .nav-link:hover,
.site-nav-heritage .nav-link.active {
    color: var(--white) !important;
}

.btn-pill-journey {
    background-color: var(--cinnamon);
    color: var(--white) !important;
    border: none;
    padding: 0.65rem 1.35rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-pill-journey:hover {
    background-color: #9c4c32;
    color: var(--white) !important;
}

.btn-pill-account {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.65rem 1.1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-pill-account:hover {
    background-color: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white) !important;
}

/* Hero Carousel & Theme Banner */
.theme-hero {
    position: relative;
    background: #09201a;
    color: var(--ivory);
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slides-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.8s ease-in-out, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.hero-slide-item.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.theme-hero-bg,
.hero-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: none;
}

.theme-hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(4, 21, 16, 0.90) 0%, rgba(7, 29, 22, 0.60) 41%, rgba(8, 31, 24, 0.06) 74%),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(5, 24, 18, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

.theme-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 8rem;
    padding-bottom: 5rem;
    max-width: 820px;
}

.breadcrumb-heritage {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(247, 243, 234, 0.65);
    margin-bottom: 2rem;
}

.breadcrumb-heritage a {
    color: rgba(247, 243, 234, 0.85);
    text-decoration: none;
}

.badge-go-pill {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 2px 12px;
    font-size: 0.7rem;
    color: rgba(247, 243, 234, 0.8);
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-display-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7.5vw, 5.8rem);
    line-height: 1.02;
    color: var(--white);
    font-weight: 400;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-display-title em {
    font-style: italic;
    color: var(--ivory);
    font-weight: 400;
    display: block;
}

.theme-intro {
    font-size: 1.15rem;
    color: rgba(247, 243, 234, 0.85);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: var(--cinnamon);
    color: var(--white);
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary:hover {
    background-color: #9c4c32;
    color: var(--white);
}

.btn-hero-ghost {
    background: rgba(0, 0, 0, 0.25);
    color: var(--white);
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.carousel-line-indicators {
    position: absolute;
    bottom: 2.5rem;
    right: 5%;
    display: flex;
    gap: 0.6rem;
    z-index: 5;
}

.carousel-line-indicators .line-item {
    width: 38px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-line-indicators .line-item.active {
    background: var(--cinnamon);
    width: 52px;
}

.ghost-button:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

/* Theme Overview & Facts */
.theme-overview {
    padding: 6rem 0;
    background-color: var(--ivory);
    border-bottom: 1px solid var(--line);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.theme-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.fact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fact-item span {
    font-size: 0.88rem;
    color: #666;
    font-weight: 500;
}

/* Heritage Map & Important Places Section */
.heritage-map-section {
    background: var(--forest-deep);
    padding: 110px 0 120px;
    position: relative;
    overflow: hidden;
}

.section-heading.light h2 {
    color: var(--white);
}

.section-heading.light h2 em {
    color: #e1cda9;
}

.section-heading.light .section-label {
    color: #ceb98f;
}

.section-heading.light > p {
    color: rgba(255, 255, 255, 0.72);
}

.map-experience {
    border-radius: 24px;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 610px;
    display: grid;
    overflow: hidden;
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.35);
    margin-top: 3rem;
}

.heritage-map-card {
    background: radial-gradient(circle at 70% 18%, #ffffff, rgba(255, 255, 255, 0) 36%),
                linear-gradient(135deg, #f4f1e8, #cedbcd);
    place-items: center;
    display: grid;
    position: relative;
    padding: 2.5rem 1.5rem;
}

.heritage-map-card svg {
    width: 100%;
    max-width: 390px;
    height: auto;
    max-height: 500px;
}

.island {
    fill: url(#heritageIsland);
    filter: drop-shadow(0 18px 18px rgba(40, 73, 59, 0.18));
}

.heritage-route {
    fill: none;
    stroke: var(--cinnamon);
    stroke-width: 3px;
    stroke-dasharray: 7 7;
}

.place-marker {
    cursor: pointer;
    outline: none;
    transition: all 0.25s ease;
}

.place-marker circle {
    fill: var(--forest);
    transition: all 0.25s ease;
}

.place-marker.active circle {
    fill: var(--cinnamon);
    filter: drop-shadow(0 4px 5px rgba(80, 34, 20, 0.25));
}

.place-marker text {
    fill: var(--forest);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-family: var(--font-body);
}

.place-marker.active text {
    fill: #241108;
    font-weight: 800;
}

.map-note {
    color: #6f7b74;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 9px;
    position: absolute;
    bottom: 18px;
    left: 22px;
}

.place-feature {
    background: var(--ivory);
    grid-template-rows: 55% 45%;
    display: grid;
    height: 100%;
}

.place-image {
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: 280px;
    transition: background-image 0.35s ease;
}

.place-image > span {
    position: absolute;
    top: 20px;
    right: 22px;
    background: rgba(9, 32, 26, 0.75);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.place-copy {
    padding: 36px 42px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.place-copy > p:first-child {
    color: var(--cinnamon);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.place-copy h3 {
    color: var(--forest);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.place-copy > p:last-of-type {
    color: #646f69;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.place-controls {
    gap: 8px;
    display: flex;
    position: absolute;
    bottom: 28px;
    right: 32px;
}

.place-controls button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--forest);
    background: transparent;
    color: var(--forest);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.place-controls button:hover {
    background: var(--forest);
    color: var(--white);
}
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.place-copy h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.place-copy p {
    color: #555;
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}

/* Tour Packages Section & Cards */
.packages-section {
    padding: 6rem 0;
    background: var(--ivory);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(20, 61, 50, 0.1);
    color: inherit;
}

.package-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-image-wrap img {
    transform: scale(1.06);
}

.package-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(12, 43, 36, 0.85);
    color: var(--gold);
    backdrop-filter: blur(8px);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-duration {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--forest-deep);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.package-card-copy {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-card-copy h3 {
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
    color: var(--forest-deep);
}

.package-card-copy .package-rec {
    font-size: 0.82rem;
    color: var(--cinnamon);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.package-card-copy p {
    font-size: 0.92rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.package-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.package-price {
    font-size: 0.85rem;
    color: #777;
}

.package-price strong {
    display: block;
    font-size: 1.25rem;
    color: var(--forest);
    font-family: var(--font-heading);
}

.package-link-text {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cinnamon);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* Day-by-Day Itinerary Accordion */
.itinerary-section {
    padding: 6rem 0;
    background-color: var(--sage);
}

.itinerary-heading {
    max-width: 650px;
    margin-bottom: 3.5rem;
}

.itinerary-container {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.itinerary-day {
    border-bottom: 1px solid var(--line);
}

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

.itinerary-day-btn {
    width: 100%;
    padding: 1.75rem 2.25rem;
    background: transparent;
    border: none;
    display: grid;
    grid-template-columns: 100px 200px 1fr 40px;
    align-items: center;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.itinerary-day-btn:hover,
.itinerary-day.active .itinerary-day-btn {
    background: rgba(232, 237, 229, 0.4);
}

.day-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--cinnamon);
    font-weight: 600;
}

.day-place {
    font-weight: 700;
    color: var(--forest);
    font-size: 0.95rem;
}

.itinerary-day-btn strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--forest-deep);
    font-weight: 600;
}

.day-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--forest-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.itinerary-day.active .day-toggle {
    transform: rotate(45deg);
    background: var(--forest-deep);
    color: var(--ivory);
}

.day-description {
    display: none;
    padding: 0 2.25rem 2rem 225px;
    color: #555;
    font-size: 0.98rem;
}

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

.day-meta-tags {
    display: inline-flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: #888;
    margin-top: 0.75rem;
}

/* Included / Excluded Grid */
.included-section {
    padding: 6rem 0;
    background: var(--ivory);
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.included-card, .excluded-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.list-heading {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.list-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.included-card .list-icon {
    background: rgba(20, 61, 50, 0.1);
    color: var(--forest);
}

.excluded-card .list-icon {
    background: rgba(180, 91, 62, 0.1);
    color: var(--cinnamon);
}

.list-heading h3 {
    margin: 0;
    font-size: 1.3rem;
}

.list-heading p {
    margin: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    font-weight: 700;
}

.included-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.included-grid li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: #444;
}

.included-grid li span {
    font-weight: 700;
    flex-shrink: 0;
}

.included-card li span { color: var(--forest); }
.excluded-card li span { color: var(--cinnamon); }

/* Plan / Inquiry CTA Section */
.plan-section {
    padding: 7rem 0;
    background: var(--forest-deep);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.plan-section h2 {
    color: var(--ivory);
    margin-bottom: 1.25rem;
}

.plan-copy {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.plan-detail {
    font-size: 1.15rem;
    color: rgba(247, 243, 234, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.plan-button {
    background-color: var(--cinnamon);
    color: var(--white);
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(180, 91, 62, 0.4);
}

.plan-button:hover {
    background-color: #9c4c32;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(180, 91, 62, 0.5);
}

.plan-note {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(247, 243, 234, 0.5);
    letter-spacing: 0.05em;
}

/* Experiences Page Custom Styles */
.experience-hero {
    background: var(--forest-deep);
    color: var(--ivory);
    padding: 8rem 0 6rem;
    position: relative;
}

.mood-compass-section {
    padding: 6rem 0;
    background: var(--ivory);
}

.mood-compass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.mood-compass-visual {
    background: var(--forest);
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1;
    max-width: 460px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 60px rgba(0,0,0,0.3);
}

.mood-ring {
    position: absolute;
    border: 1px dashed rgba(247, 243, 234, 0.25);
    border-radius: 50%;
    width: 80%;
    height: 80%;
}

.mood-btn {
    position: absolute;
    background: var(--white);
    color: var(--forest-deep);
    border: none;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.mood-btn.active, .mood-btn:hover {
    background: var(--cinnamon);
    color: var(--white);
    transform: scale(1.08);
}

.mood-1 { top: 12%; }
.mood-2 { right: 8%; }
.mood-3 { bottom: 12%; }
.mood-4 { left: 8%; }

.mood-card-active {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.rare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.rare-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.rare-card-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.rare-card-body {
    padding: 1.75rem;
}

.day-composer-section {
    padding: 6rem 0;
    background: var(--sage);
}

.day-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    overflow-x: auto;
}

.day-tab-btn {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1rem 2rem;
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
    min-width: 140px;
}

.day-tab-btn span {
    display: block;
    font-size: 0.8rem;
    color: var(--cinnamon);
    font-weight: 700;
}

.day-tab-btn strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--forest-deep);
}

.day-tab-btn.active {
    background: var(--forest-deep);
    border-color: var(--forest-deep);
}

.day-tab-btn.active span { color: var(--gold); }
.day-tab-btn.active strong { color: var(--ivory); }

.day-feature-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.day-feature-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.day-feature-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsiveness */
@media (max-width: 992px) {
    .overview-grid,
    .map-experience,
    .mood-compass-grid,
    .included-grid,
    .day-feature-card {
        grid-template-columns: 1fr;
    }
    
    .itinerary-day-btn {
        grid-template-columns: 80px 1fr 40px;
        gap: 0.5rem;
    }
    
    .itinerary-day-btn strong {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
    }
    
    .day-description {
        padding-left: 2.25rem;
    }
    
    .rare-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 576px) {
    .theme-facts {
        grid-template-columns: 1fr;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .included-card, .excluded-card {
        padding: 2rem 1.5rem;
    }
}
