/* ============================================ */
/* EXPERIENCES PAGE STYLES - SERENDIB ESCAPE */
/* ============================================ */

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

:root {
    --color-white: #FFFFFF;
    --color-stone: #F9F9F7;
    --color-cream: #F4F1EA;
    --color-dark: #1a1a1a;
    --color-red: #BC2026;
    --color-red-dark: #9e1a1f;
    --color-gray-light: #f5f5f5;
    --color-gray-mid: #6b6b6b;
    --color-gray-dark: #333;
    --color-green: #2d6a4f;
    --color-gold: #c9a84c;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'Montserrat', sans-serif;
    --transition-smooth: 0.5s cubic-bezier(0.2, 0.9, 0.4, 1);
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: var(--color-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Hero Section */
.hero-experiences {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
        url('https://images.pexels.com/photos/545976/pexels-photo-545976.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center 40%;
    display: flex;
    align-items: flex-end;
    padding: 0 0 80px 0;
}

.hero-content {
    width: 100%;
}

.hero-text-overlay {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-title-large {
    font-family: var(--font-serif);
    font-size: clamp(42px, 8vw, 84px);
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards 0.3s;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 24px);
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
}

.scroll-indicator p {
    color: white;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--color-white);
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}

.breadcrumbs {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray-mid);
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--color-red);
}

/* Intro Text */
.intro-text-section {
    background: var(--color-white);
    padding: 60px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.intro-left {
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1.3;
    color: var(--color-dark);
}

.intro-right {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-mid);
}

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Main Content Layout */
.main-content {
    display: flex;
    gap: 60px;
    padding: 60px 0;
    position: relative;
}

/* ── CALENDAR SIDEBAR ── */
.calendar-sidebar {
    width: 340px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e8ecf2;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.calendar-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 4px;
}

.calendar-subtitle {
    font-size: 13px;
    color: #6b7a8f;
    margin-bottom: 16px;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.calendar-nav-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 12px;
    color: #1A365D;
    transition: all 0.2s;
    border-radius: 6px;
}

.calendar-nav-btn:hover {
    background: #f0f2f6;
}

.calendar-month-year {
    font-weight: 600;
    font-size: 16px;
    color: #1A365D;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 12px;
}

.calendar-day-header {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #6b7a8f;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    color: #334155;
    position: relative;
    font-weight: 500;
}

.calendar-day:hover:not(.empty) {
    background: #f0f2f6;
}

.calendar-day.empty {
    cursor: default;
    color: #d1d5db;
}

.calendar-day.today {
    background: #e8ecf2;
    font-weight: 700;
    color: #1A365D;
}

.calendar-day.has-event {
    font-weight: 700;
    color: #1A365D;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C5A86E;
}

.calendar-day.selected {
    background: #1A365D;
    color: #fff;
    font-weight: 700;
}

.calendar-day.selected.has-event::after {
    background: #fff;
}

.calendar-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 12px 0;
    border-top: 1px solid #e8ecf2;
    margin-bottom: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7a8f;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.has-event {
    background: #C5A86E;
}

.legend-dot.today {
    background: #e8ecf2;
    border: 2px solid #1A365D;
}

.legend-dot.selected {
    background: #1A365D;
}

/* ── SELECTED DATE EVENTS ── */
.selected-date-events {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid #e8ecf2;
}

.selected-date-events h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1A365D;
    margin-bottom: 12px;
}

.selected-date-events .no-events-message {
    font-size: 13px;
    color: #6b7a8f;
    text-align: center;
    padding: 16px 0;
}

.date-event-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background: #f8fafc;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    align-items: center;
}

.date-event-item:hover {
    border-color: #C5A86E;
    background: #fff;
    transform: translateX(4px);
}

.date-event-item .event-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.date-event-item .event-info {
    flex: 1;
}

.date-event-item .event-info .event-title {
    font-weight: 600;
    font-size: 14px;
    color: #1A365D;
}

.date-event-item .event-info .event-details {
    font-size: 13px;
    color: #6b7a8f;
}

.date-event-item .event-info .event-time {
    font-size: 12px;
    color: #C5A86E;
    font-weight: 500;
}

.date-event-item .event-book-btn {
    padding: 6px 16px;
    background: #1A365D;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.date-event-item .event-book-btn:hover {
    background: #15304f;
    transform: scale(1.02);
}

/* ── RESULTS WRAPPER ── */
.results-wrapper {
    flex: 1;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.results-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1A365D;
    margin: 0;
}

.results-count {
    font-size: 14px;
    color: #6b7a8f;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* Experience Card */
.experience-card {
    position: relative;
    text-decoration: none;
    color: white;
    display: block;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.5s forwards;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    background: var(--color-dark);
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1);
}

.experience-card:hover .card-image img {
    transform: scale(1.08);
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-gold);
    color: white;
    padding: 4px 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
    border-radius: 4px;
}

.spots-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(45, 106, 79, 0.9);
    color: white;
    padding: 4px 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 3;
    border-radius: 4px;
}

.spots-badge.sold-out {
    background: rgba(188, 32, 38, 0.9);
}

.category-label {
    position: absolute;
    bottom: 70px;
    left: 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    z-index: 3;
    border-radius: 4px;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.card-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 4px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.card-details {
    display: flex;
    gap: 12px;
    margin: 6px 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty {
    padding: 2px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

.difficulty.beginner {
    background: rgba(45, 106, 79, 0.6);
}

.difficulty.moderate {
    background: rgba(201, 168, 76, 0.6);
}

.difficulty.challenging {
    background: rgba(188, 32, 38, 0.6);
}

.group-size {
    color: rgba(255,255,255,0.8);
    padding: 2px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.upcoming-date {
    font-size: 12px;
    color: var(--color-gold);
    margin: 6px 0;
}

.card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
    margin: 6px 0;
}

.card-price small {
    font-size: 12px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.7);
}

.view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(8px);
}

.experience-card:hover .view-link {
    opacity: 1;
    transform: translateY(0);
    border-bottom-color: var(--color-gold);
}

.results-message {
    grid-column: 1 / -1;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    background: var(--color-stone);
    color: var(--color-gray-mid);
    font-size: 16px;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 40px 0 60px;
}

.pagination-btn {
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    padding: 12px 24px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-dark);
    min-width: 100px;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--color-red);
    border-color: var(--color-red);
    color: white;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 12px;
    align-items: center;
}

.page-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-gray-mid);
    border-radius: 50%;
}

.page-number:hover {
    background: rgba(188, 32, 38, 0.1);
    color: var(--color-red);
}

.page-number.active {
    background: var(--color-red);
    color: white;
}

.page-dots {
    font-size: 16px;
    color: var(--color-gray-mid);
    padding: 0 4px;
}

/* Testimonials */
.testimonials-section {
    background: var(--color-cream);
    padding: 80px 0;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    text-align: center;
    padding: 40px;
}

.review-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.review-source img {
    height: 32px;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.review-quote {
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.review-author {
    font-weight: 700;
    font-size: 14px;
}

.review-location {
    font-size: 12px;
    color: var(--color-gray-mid);
    margin-top: 4px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-nav button {
    background: none;
    border: 1px solid var(--color-gray-mid);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-nav button:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--color-white);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-dark);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    margin-top: 20px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #e0e0e0;
}

@media (max-width: 900px) {
    .process-steps::before {
        display: none;
    }
}

.step-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
    background: white;
    padding: 0 15px;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 16px;
}

.step-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 12px;
    color: var(--color-gray-mid);
}

/* Expert CTA */
.expert-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.expert-cta-image {
    background-image: url('https://images.pexels.com/photos/260608/pexels-photo-260608.jpeg?auto=compress&cs=tinysrgb&w=800');
    background-size: cover;
    background-position: center;
}

.expert-cta-content {
    background: var(--color-dark);
    color: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-cta-content h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    margin-bottom: 20px;
}

.expert-cta-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-solid-red {
    background: var(--color-red);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-solid-red:hover {
    background: var(--color-red-dark);
}

.btn-outline-red {
    background: transparent;
    border: 2px solid var(--color-red);
    color: var(--color-red);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-red:hover {
    background: var(--color-red);
    color: white;
}

@media (max-width: 900px) {
    .expert-cta {
        grid-template-columns: 1fr;
    }
    .expert-cta-content {
        padding: 50px 30px;
    }
}

/* Floating Pill */
.floating-pill {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: white;
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
    gap: 8px;
    transition: transform 0.4s ease;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.98);
}

.floating-pill.visible {
    transform: translateX(-50%) translateY(0);
}

.pill-item {
    padding: 8px 20px;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-gray-mid);
    transition: all 0.3s;
    border-radius: 30px;
    cursor: pointer;
}

.pill-item.active {
    background: var(--color-red);
    color: white;
}

.pill-item:hover:not(.active) {
    background: rgba(188, 32, 38, 0.1);
    color: var(--color-red);
}

.pill-enquire {
    background: var(--color-red);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.pill-enquire:hover {
    background: var(--color-red-dark);
}

@media (max-width: 768px) {
    .floating-pill {
        display: none;
    }
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: var(--color-red);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    z-index: 99;
    transition: transform 0.3s;
    cursor: pointer;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.mobile-menu-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
    .main-content {
        flex-direction: column;
    }

    .calendar-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 24px;
    }

    .calendar-grid {
        max-width: 400px;
        margin: 0 auto;
    }

    .selected-date-events {
        max-width: 400px;
        margin: 0 auto;
    }

    .calendar-legend {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .calendar-sidebar {
        padding: 16px;
    }

    .calendar-day {
        font-size: 12px;
    }

    .date-event-item {
        flex-wrap: wrap;
    }

    .date-event-item .event-book-btn {
        width: 100%;
        text-align: center;
        padding: 8px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}
