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

@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

body {
    font-family: 'Nexa', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: #0F3128;
    min-height: 100vh;
}

.container {
    margin: 0 auto;
    padding: 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0 -15px;
    margin-bottom: 0;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.site-logo {
    height: 80px;
    width: auto;
    display: block;
}

.slh-logo {
    height: 80px;
    width: auto;
    display: block;
}

body > .container > .carousel-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0 -15px 30px -15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-radius: 0;
    overflow: hidden;
}

body > .container > .carousel-container .carousel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
}

body > .container > .carousel-container .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

body > .container > .carousel-container .carousel-slide.active {
    opacity: 1;
}

body > .container > .carousel-container .carousel-slide picture,
body > .container > .carousel-container .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    background: rgba(15, 49, 40, 0.9);
    color: #FFFFFF;
}

.carousel-text-overlay h2 {
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
    line-height: 1.2;
}

.carousel-text-overlay p {
    font-family: 'Nexa', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #FFFFFF;
    opacity: 0.95;
    line-height: 1.5;
}

.carousel-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-nav-button:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-nav-button.prev {
    left: 10px;
}

.carousel-nav-button.next {
    right: 10px;
}

.carousel-nav-button svg {
    width: 20px;
    height: 20px;
    color: #0F3128;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background: #AA7831;
}

@media screen and (min-width: 481px) {
    .carousel-container {
        margin: 0 0 30px 0;
        border-radius: 12px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    body > .container > .carousel-container .carousel-wrapper {
        aspect-ratio: 16/9;
    }

    .carousel-text-overlay {
        position: absolute;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        left: 30px;
        width: 45%;
        padding: 25px;
        border-radius: 8px;
        background: rgba(15, 49, 40, 0.9);
    }

    .carousel-text-overlay h2 {
        font-size: 2.25rem;
        margin-bottom: 15px;
    }

    .carousel-text-overlay p {
        font-size: 1rem;
    }
}

@media screen and (min-width: 769px) {
    .carousel-text-overlay {
        width: 40%;
        left: 40px;
        padding: 35px;
    }

    .carousel-text-overlay h2 {
        font-size: 2.75rem;
        margin-bottom: 18px;
    }

    .carousel-text-overlay p {
        font-size: 1.1rem;
    }

    .carousel-nav-button {
        width: 50px;
        height: 50px;
    }

    .carousel-nav-button.prev {
        left: 15px;
    }

    .carousel-nav-button.next {
        right: 15px;
    }

    .carousel-nav-button svg {
        width: 24px;
        height: 24px;
    }
}

.main-content-column {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.guest-selection,
.calendar-section,
.escape-list-section {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    border: none;

    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.picker-title {
    font-size: 1.4rem;
    color: #0F3128;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.guest-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #0F3128;
    color: white;
    border-radius: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.guest-summary:hover {
    background: #1a4a3e;
    transform: translateY(-2px);
}

.summary-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.summary-count {
    font-size: 1.3rem;
    font-weight: 600;
    color: #AA7831;
}

.chevron {
    margin-left: 10px;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: #AA7831;
}

.guest-summary.open .chevron {
    transform: rotate(180deg);
}

.guest-details {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.guest-details.open {
    padding: 20px;
    max-height: 200px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-row:first-child {
    padding-top: 0;
}

.detail-label {
    color: #0F3128;
    font-weight: 500;
}

.detail-desc {
    color: #666;
    font-size: 0.9rem;
    margin-top: 2px;
}

.detail-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-counter button {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 2px solid #AA7831;
    background: white;
    color: #AA7831;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-counter button:hover:not(:disabled) {
    background: #AA7831;
    color: white;
    transform: scale(1.1);
}

.detail-counter button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.detail-counter .count {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0F3128;
    min-width: 25px;
    text-align: center;
}

@media (max-width: 480px) {
    .main-content-column {
        margin: 0;
    }

    .guest-selection {
        margin-bottom: 25px;
    }

    .picker-title,
    .calendar-label {
        font-size: 1.2rem;
    }

    .detail-counter {
        gap: 12px;
    }

    .detail-counter button {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

.calendar-label {
    font-size: 1.4rem;
    color: #0F3128;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.calendar-container {
    width: 100%;
    margin: 0 auto;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.day-header {
    text-align: center;
    font-weight: 600;
    color: #0F3128;
    padding: 12px 0;
    font-size: 0.9rem;
    background: rgba(15, 49, 40, 0.1);
    border-radius: 8px;
    margin-bottom: 5px;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
    background: white;
    position: relative;
    min-height: 44px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}

.calendar-date:hover:not(.disabled):not(.empty) {
    border-color: #AA7831;
    background: #fff8f0;
    transform: translateY(-2px);
}

.calendar-date.selected {
    background: #0F3128;
    color: white;
    border-color: #0F3128;
}

.calendar-date.in-range {
    background: #AA7831;
    color: white;
    border-color: #AA7831;
}

.calendar-date.disabled {
    background: #f1f3f4;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-date.disabled:hover {
    transform: none;
    border-color: transparent;
    background: #f1f3f4;
}

.calendar-date.empty {
    visibility: hidden;
}

@media (max-width: 480px) {
    .calendar-container {
        width: 100%;
        margin: 0 auto;
        padding: 0 5px;
    }

    .calendar-section {
        padding: 20px 15px;
        text-align: center;
    }

    .calendar-grid {
        padding: 5px;
    }

    .calendar-date {
        font-size: 0.9rem;
        min-height: 36px;
    }

    .date-filter-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 1fr 1fr;
        gap: 10px;
        margin-bottom: 15px;
    }

    .date-filter-box {
        padding: 14px 10px;
        min-height: 75px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .date-filter-box i {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }

    .filter-title {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 2px;
        text-align: center;
    }

    .filter-subtitle {
        font-size: 0.7rem;
        opacity: 0.85;
        text-align: center;
    }

    .filter-controls {
        padding: 16px;
        margin-bottom: 15px;
    }

    .filter-label {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}

.date-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.date-filter-box {
    background: rgba(74, 74, 71, 0.8);
    border: 2px solid #4A4A47;
    border-radius: 12px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #E0E0E0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    min-height: 100px;
}

.date-filter-box:hover {
    background: rgba(170, 120, 49, 0.15);
    border-color: #AA7831;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(170, 120, 49, 0.2);
}

.date-filter-box.active {
    background: linear-gradient(135deg, #AA7831, #D4A843);
    border-color: #AA7831;
    color: white;
    box-shadow: 0 6px 20px rgba(170, 120, 49, 0.4);
}

.date-filter-box i {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.filter-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

.custom-date-slider {
    background: rgba(38, 38, 38, 0.9);
    border: 1px solid #4A4A47;
    border-radius: 12px;
    padding: 25px;
    margin-top: 15px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-container label {
    color: #E0E0E0;
    font-size: 1rem;
    font-weight: 600;
}

.dual-slider-container {
    position: relative;
    margin: 20px 0;
}

.slider-track {
    position: relative;
    height: 8px;
    background: #4A4A47;
    border-radius: 4px;
    margin: 20px 0;
}

.slider-range {
    position: absolute;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, #AA7831, #D4A843);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.date-slider {
    position: absolute;
    top: -6px;
    width: 100%;
    height: 20px;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    pointer-events: none;
}

.date-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #AA7831, #D4A843);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(170, 120, 49, 0.4);
    pointer-events: all;
    position: relative;
    z-index: 2;
}

.date-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #AA7831, #D4A843);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(170, 120, 49, 0.4);
    pointer-events: all;
}

.start-slider::-webkit-slider-thumb {
    border: 3px solid #0F3128;
}

.end-slider::-webkit-slider-thumb {
    border: 3px solid #AA7831;
}

.slider-display {
    padding: 20px;
    background: rgba(74, 74, 71, 0.5);
    border-radius: 8px;
    border: 1px solid #4A4A47;
    margin-top: 15px;
}

.date-range-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.start-date, .end-date {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.date-label {
    color: #999;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.start-date span:nth-child(2) {
    color: #0F3128;
    font-size: 1.2rem;
    font-weight: 600;
}

.end-date span:nth-child(2) {
    color: #AA7831;
    font-size: 1.2rem;
    font-weight: 600;
}

.start-date span:nth-child(3), .end-date span:nth-child(3) {
    color: #E0E0E0;
    font-size: 1rem;
    opacity: 0.8;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #AA7831;
    color: #FFFFFF;
    border: 2px solid #AA7831;
}

.btn-primary:hover {
    background: #0F3128;
    border-color: #AA7831;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 120, 49, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #AA7831;
    border: 2px solid #AA7831;
}

.btn-secondary:hover {
    background: #AA7831;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 120, 49, 0.3);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.content {
    flex: 1;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef); /* Original background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    border: 1px solid #4A4A47;
    position: relative; /* Added for the overlay effect */
    z-index: 1; /* Added for the overlay effect */
    overflow: hidden; /* Ensures the overlay stays within the rounded corners */
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/background.png');
    background-repeat: repeat;
    background-size: 25%; /* Makes the image 4x smaller */
    opacity: 0.3; /* Adjust this value (0.0 to 1.0) for more/less transparency */
    z-index: -1; /* Places the overlay behind the content */
}

.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading-spinner i {
    font-size: 3rem;
    color: #AA7831;
    margin-bottom: 20px;
}

.loading-spinner p {
    font-size: 1.2rem;
}

.error-message {
    text-align: center;
    padding: 60px 20px;
    color: #d32f2f;
}

.error-message i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.error-message h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.error-message p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #bbb;
}

.empty-state h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.offers-container {
    animation: fadeIn 0.5s ease-in;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.offers-header h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-family: 'Crimson Text', serif;
}

.offers-header h2 i {
    color: #AA7831;
    margin-right: 10px;
}

.offers-count {
    background: rgba(170, 120, 49, 0.2);
    color: #AA7831;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #AA7831;
}

.table-container {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.offers-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(74, 74, 71, 0.8);
    font-size: 0.95rem;
    color: #FFFFFF;
}

.offers-table thead {
    background: linear-gradient(135deg, #0F3128 0%, #AA7831 100%);
    color: #FFFFFF;
}

.offers-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.offers-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(170, 120, 49, 0.2);
    vertical-align: top;
}

.offers-table tbody tr:hover {
    background: rgba(170, 120, 49, 0.1);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.offers-table tbody tr:nth-child(even) {
    background: rgba(38, 38, 38, 0.3);
}

.offers-table tbody tr:nth-child(even):hover {
    background: rgba(170, 120, 49, 0.15);
}

.availability-available {
    color: #4CAF50;
    font-weight: 600;
}

.availability-none {
    color: #f44336;
    font-weight: 600;
}

.rate {
    color: #AA7831;
    font-weight: 600;
    font-size: 1.1em;
}

.villa-class {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.villa-class.premium {
    background: linear-gradient(135deg, #AA7831, #D4A843);
    color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(170, 120, 49, 0.3);
}

.villa-class.normal {
    background: rgba(128, 128, 128, 0.2);
    color: #999;
    border: 1px solid rgba(128, 128, 128, 0.3);
}

.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 20px 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.controls {
    flex-direction: column;
    align-items: center;
}

.filter-buttons {
    flex-direction: column;
    align-items: center;
}

.btn {
    padding: 10px 16px;
    font-size: 0.9rem;
}

.btn-filter {
    width: 100%;
    max-width: 220px;
}

.status-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.activities-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.content {
    padding: 20px 15px;
}

.activities-table {
    font-size: 0.8rem;
}

.activities-table th,
.activities-table td {
    padding: 8px 6px;
}

.cell-text {
    max-width: 150px;
}

@media (min-width: 481px) {
    .header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .activities-table {
        font-size: 0.85rem;
    }

    .cell-text {
        max-width: 200px;
    }
}

@media (min-width: 769px) {
    .container {
        max-width: 1200px;
        padding: 20px;
    }

    .header h1 {
        font-size: 2.5rem;
    }

    .controls {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .filter-buttons {
        flex-direction: row;
        align-items: center;
    }

    .btn-filter {
        width: auto;
        max-width: none;
    }

    .status-bar {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .activities-header {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .content {
        padding: 30px;
    }

    .activities-table {
        font-size: 1rem;
    }

    .activities-table th,
    .activities-table td {
        padding: 12px 15px;
    }

    .cell-text {
        max-width: none;
    }
}

.villa-cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.villa-card {
    background: linear-gradient(135deg, #0F3128, #1A4A3A);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid #4A4A47;
}

.villa-card .villa-image-gallery {
    display: flex;
    position: relative;
    height: 250px;
    overflow: hidden;
}

.villa-card .villa-image-container {
    display: flex;
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.villa-card .villa-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: block;
}

.villa-card:hover .villa-main-image {
    transform: scale(1.05);
}

.image-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 49, 40, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.villa-card-header {
    background: linear-gradient(135deg, #0F3128, #2A5F4F);
    padding: 30px;
    position: relative;
    color: white;
}

.villa-tagline {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    font-family: 'Crimson Text', serif;
    line-height: 1.1;
}

.villa-name-subtitle {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 20px;
    opacity: 0.8;
    font-style: italic;
}

.villa-specifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(224, 224, 224, 0.2);
    border-bottom: 1px solid rgba(224, 224, 224, 0.2);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E0E0E0;
    font-size: 0.9rem;
}

.spec-item i {
    color: #AA7831;
    width: 16px;
    text-align: center;
}

.villa-description {
    margin-bottom: 20px;
}

.villa-description[data-expanded="false"] .description-full {
    display: none;
}

.villa-description[data-expanded="true"] .description-preview {
    display: none;
}

.villa-description p {
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.expand-btn {
    background: none;
    border: none;
    color: #AA7831;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    padding: 0;
    margin-top: 5px;
}

.expand-btn:hover {
    color: #D4A843;
}

.key-amenities {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(224, 224, 224, 0.2);
}

.amenities-title {
    color: #AA7831;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Crimson Text', serif;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E0E0E0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.amenities-list li i {
    color: #AA7831;
    width: 12px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .amenities-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

.villa-class-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #AA7831, #D4A843);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.villa-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    font-family: 'Crimson Text', serif;
}

.villa-subtitle {
    font-size: 1.2rem;
    color: #E0E0E0;
    margin-bottom: 20px;
    opacity: 0.9;
}

.villa-description {
    font-size: 1rem;
    color: #E0E0E0;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.85;
}

.villa-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.villa-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #AA7831;
    font-weight: 600;
}

.villa-detail-item i {
    font-size: 1.1rem;
}

.villa-booking-options {
    padding: 30px;
    background: rgba(38, 38, 38, 0.6);
}

.booking-section-title {
    color: #E0E0E0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Crimson Text', serif;
}

.checkin-group {
    margin-bottom: 25px;
}

.checkin-date-header {
    color: #AA7831;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #4A4A47;
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(74, 74, 71, 0.3);
    border-radius: 12px;
    border: 1px solid #4A4A47;
    transition: all 0.3s ease;
}

.booking-option:hover {
    background: rgba(170, 120, 49, 0.1);
    border-color: #AA7831;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 120, 49, 0.2);
}

.booking-info {
    flex-grow: 1;
}

.booking-duration {
    color: #E0E0E0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.perks-display {
    color: #AA7831;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 2px;
    margin-bottom: 2px;
    line-height: 1.3;
    opacity: 0.9;
    display: block;
}

.booking-dates {
    color: #999;
    font-size: 0.9rem;
}

.booking-price {
    text-align: right;
    margin-right: 20px;
}

.face-value {
    color: #AA7831;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: 2px;
}

.booking-price .rate {
    color: #AA7831;
    font-size: 1.4rem;
    font-weight: 700;
}

.book-btn {
    background: linear-gradient(135deg, #AA7831, #D4A843);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-btn:hover {
    background: linear-gradient(135deg, #D4A843, #AA7831);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(170, 120, 49, 0.4);
}

.consolidated-booking-card {
    background: rgba(38, 38, 38, 0.9);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(170, 120, 49, 0.3);
    transition: all 0.3s ease;
}

.consolidated-booking-card:hover {
    border-color: rgba(170, 120, 49, 0.6);
    background: rgba(38, 38, 38, 0.95);
}

.night-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(170, 120, 49, 0.3);
}

.night-selector-label {
    color: #AA7831;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 5px;
}

.night-selector-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(170, 120, 49, 0.5);
    background: transparent;
    color: #AA7831;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.night-selector-btn:hover {
    border-color: #AA7831;
    background: rgba(170, 120, 49, 0.1);
    transform: scale(1.05);
}

.night-selector-btn.active {
    background: #AA7831;
    color: #0F3128;
    border-color: #AA7831;
    box-shadow: 0 0 12px rgba(170, 120, 49, 0.4);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "info nights book";
    gap: 20px;
    align-items: center;
}

.booking-info {
    grid-area: info;
}

.night-selector {
    grid-area: nights;
    display: flex;
    gap: 8px;
    align-items: center;
}

.book-now-btn {
    grid-area: book;
}

@media (max-width: 768px) {
    .villa-image-gallery {
        height: 200px;
    }

    .villa-tagline {
        font-size: 1.8rem;
    }

    .villa-name-subtitle {
        font-size: 1rem;
    }

    .villa-specifications {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .spec-item {
        font-size: 0.8rem;
    }

    .villa-card-header {
        padding: 20px;
    }

    .villa-details {
        gap: 20px;
    }

    .booking-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .booking-price {
        margin-right: 0;
        align-self: flex-end;
    }

    .booking-content {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "info"
            "nights"
            "book";
        gap: 15px;
        text-align: center;
    }

    .night-selector {
        justify-content: center;
    }

    .night-selector-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .villa-cards-container {
        width: 100%;
        margin: 20px auto 0;
        padding: 0 5px;
    }

    .villa-card {
        margin: 0;
    }

    .villa-image-gallery {
        height: 180px;
    }

    .villa-tagline {
        font-size: 1.5rem;
    }

    .villa-specifications {
        grid-template-columns: 1fr;
    }

    .villa-card-header {
        padding: 15px;
    }

    .guest-selection {
        padding: 16px;
        margin-bottom: 20px;
    }

    .guest-inputs {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
    }

    .date-filter-box {
        padding: 10px 8px;
        min-height: 65px;
    }

    .date-filter-box i {
        font-size: 1.1rem;
    }

    .filter-title {
        font-size: 0.8rem;
    }

    .filter-subtitle {
        font-size: 0.65rem;
    }

    .filter-controls {
        padding: 14px;
    }

    .guest-select {
        font-size: 0.95rem;
        min-height: 42px;
        padding: 10px 12px;
        padding-right: 35px;
    }
}

.load-more-container {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.load-more-btn {
    background: linear-gradient(135deg, #0F3128, #1a4a3b);
    border: 2px solid #AA7831;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(15, 49, 40, 0.3);
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #1a4a3b, #0F3128);
    border-color: #D4AF37;
    box-shadow: 0 6px 20px rgba(15, 49, 40, 0.4);
    transform: translateY(-2px);
}

.load-more-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 10px rgba(15, 49, 40, 0.3);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.load-more-count {
    color: #AA7831;
    font-size: 0.9rem;
    font-weight: 400;
}

.load-more-btn i {
    font-size: 1.2rem;
}

.match-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    color: white;
}

.match-badge.exact {
    background: rgba(34, 197, 94, 0.9);
}

.match-badge.nearby {
    background: rgba(59, 130, 246, 0.9);
}

.match-badge.mixed {
    background: rgba(168, 85, 247, 0.9);
}

.nights-display {
    font-size: 1.4rem;
    color: #0F3128;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.champion-offers {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0;
}

.champion-offer-card {
    background: rgba(74, 74, 71, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #4A4A47;
}

.champion-hero {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.champion-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
}

.champion-offer-card .carousel-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.champion-offer-card .carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.champion-offer-card .carousel-slide {
    min-width: 100%;
    height: 100%;
    opacity: 1 !important;
    position: relative !important;
}

.champion-offer-card .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.champion-hero .carousel-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.champion-hero .carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.champion-hero .carousel-slide {
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
    opacity: 1;
    position: relative;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 1200px;
    padding: 20px;
}

.modal-content {
    max-width: 100%;
    max-height: 85%;
    object-fit: contain;
    flex-shrink: 0;
}

.modal-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.modal .prev, 
.modal .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    z-index: 2;
}

.modal .prev:hover, 
.modal .next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.modal .prev {
    left: 20px;
}

.modal .next {
    right: 20px;
}

.modal .close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 0 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.modal .close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.champion-price-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.champion-price-overlay .price-line {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.champion-price-overlay .currency {
    font-size: 0.9rem;
    color: #4A4A47;
}

.champion-price-overlay .amount {
    font-size: 1.5rem;
    color: #0F3128;
    font-weight: 800;
    line-height: 1;
}

.champion-price-overlay .nights-text {
    font-size: 0.8rem;
    color: #4A4A47;
    font-weight: 500;
    line-height: 1;
}

.nights-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(15, 49, 40, 0.95);
    color: #FFFFFF;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid rgba(170, 120, 49, 0.8);
    z-index: 10;
}

.flexibility-pills-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.flexibility-pills {
    display: flex;
    gap: 8px;
    padding: 0;
}

.flexibility-pill {
    flex: 1;
    text-align: center;
    min-width: 60px;
    padding: 12px 16px;
    border: 2px solid rgba(74, 74, 71, 0.5);
    border-radius: 8px;
    background: rgba(74, 74, 71, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #E0E0E0;
    white-space: nowrap;
}

.flexibility-pill:hover {
    background: rgba(170, 120, 49, 0.1);
    border-color: #0F3128;
    color: #AA7831;
}

.flexibility-pill.selected {
    background: #0F3128;
    color: white;
    border-color: #0F3128;
    font-weight: 600;
}

@media (max-width: 480px) {
    .flexibility-pill {
        min-width: 70px;
        padding: 10px 12px;
        font-size: 13px;
    }
}

.flexibility-pills::-webkit-scrollbar {
    height: 4px;
}

.flexibility-pills::-webkit-scrollbar-track {
    background: rgba(74, 74, 71, 0.3);
    border-radius: 2px;
}

.flexibility-pills::-webkit-scrollbar-thumb {
    background: #0F3128;
    border-radius: 2px;
}

.show-details-container {
    padding: 15px 20px 0 20px;
    text-align: center;
}

.show-details-btn {
    background: rgba(15, 49, 40, 0.8);
    color: white;
    border: 2px solid rgba(170, 120, 49, 0.5);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    min-width: 180px;
}

.show-details-btn:hover {
    background: rgba(170, 120, 49, 0.2);
    border-color: #AA7831;
    color: #AA7831;
}

.show-details-btn i {
    transition: transform 0.3s ease;
}

.show-details-btn.expanded i {
    transform: rotate(180deg);
}

.villa-details-collapsible {
    transition: all 0.3s ease;
    overflow: hidden;
}

.villa-details-collapsible.expanded {
    display: block !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 1000px;
    }
    to {
        opacity: 0;
        max-height: 0;
    }
}

.villa-details-collapsible.show {
    animation: slideDown 0.3s ease-out forwards;
}

.villa-details-collapsible.hide {
    animation: slideUp 0.3s ease-out forwards;
}

.booking-options-container {
    margin: 20px 0;
    padding: 20px;
    background: rgba(38, 38, 38, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(170, 120, 49, 0.3);
}

.booking-options-title {
    color: #AA7831;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Crimson Text', serif;
    text-align: center;
}

.single-booking-option {
    text-align: center;
}

.single-booking-option .date-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.single-booking-option .date-labels {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.booking-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-option-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(74, 74, 71, 0.8);
    border: 2px solid rgba(170, 120, 49, 0.3);
    border-radius: 8px;
    color: #E0E0E0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.booking-option-btn:hover {
    background: rgba(170, 120, 49, 0.1);
    border-color: rgba(170, 120, 49, 0.6);
    transform: translateY(-2px);
}

.booking-option-btn.selected {
    background: rgba(170, 120, 49, 0.2);
    border-color: #AA7831;
    color: #AA7831;
    font-weight: 600;
}

.booking-option-btn .date-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-option-btn .option-details {
    text-align: right;
    line-height: 1.4;
}

.booking-option-btn .option-details small {
    display: block;
    opacity: 0.8;
    font-size: 0.9rem;
    margin-top: 2px;
}

.date-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(74, 74, 71, 0.8);
    border: 2px solid #AA7831;
    color: #E0E0E0;
    transition: all 0.3s ease;
}

.date-circle.selected {
    background: #AA7831;
    border-color: #AA7831;
    color: #FFFFFF;
}

.date-separator {
    color: #AA7831;
    font-weight: 700;
    font-size: 1.2rem;
}

.date-label {
    color: #E0E0E0;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
}

.date-label small {
    color: #AA7831;
    font-weight: 600;
}

/* Date Match Labels */
.date-match-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto 15px;
    text-align: center;
}

.date-match-label.exact-dates {
    background: rgba(170, 120, 49, 0.9);
    color: white;
    border: 1px solid #AA7831;
}

.date-match-label.nearest-dates {
    background: rgba(74, 74, 71, 0.9);
    color: #E0E0E0;
    border: 1px solid rgba(74, 74, 71, 0.6);
}

/* Single booking option - center the label */
.single-booking-option {
    text-align: center;
}

.single-booking-option .date-match-label {
    display: block;
    width: fit-content;
    margin: 0 auto 20px;
}

/* Multiple booking options */
.booking-option-btn {
    position: relative;
    padding: 0;
}

.booking-option-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
}

.booking-option-content .date-match-label {
    margin-bottom: 12px;
}

.booking-option-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.champion-savings-banner {
    background: linear-gradient(135deg, #2E7D32, #43A047);
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.champion-savings-banner i {
    font-size: 1rem;
}

.champion-content {
    padding: 0.5rem;
    color: white;
}

.champion-title {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.champion-checkin {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.champion-perks-section {
    margin-bottom: 1.5rem;
}

.perks-label {
    color: #AA7831;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.perks-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.perk-item i {
    color: #AA7831;
    font-size: 1rem;
}

.timeline-container {
    background: rgba(74, 74, 71, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.timeline-title {
    color: #AA7831;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Crimson Text', serif;
}

.timeline-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.date-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.date-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-circle.selected {
    background: #AA7831;
    color: white;
    box-shadow: 0 0 12px rgba(170, 120, 49, 0.4);
}

.date-circle.available {
    background: rgba(170, 120, 49, 0.2);
    color: #AA7831;
    border: 2px solid #AA7831;
}

.date-circle.extension {
    background: rgba(170, 120, 49, 0.1);
    color: #AA7831;
    border: 2px dashed #AA7831;
}

.date-circle.unavailable {
    background: rgba(102, 102, 102, 0.2);
    color: #666;
    border: 2px solid #666;
    cursor: not-allowed;
}

.date-label {
    font-size: 0.6rem;
    color: #ccc;
    margin-top: 4px;
    text-align: center;
    line-height: 1.1;
}

.timeline-connector {
    width: 20px;
    height: 2px;
    background: #AA7831;
    margin: 0 4px;
    align-self: center;
    margin-top: -15px;
}

.extend-hint {
    text-align: center;
    font-size: 0.8rem;
    color: #AA7831;
    margin-top: 10px;
    font-style: italic;
}

.champion-book-btn {
    width: 100%;
    background: linear-gradient(135deg, #AA7831, #C4903A);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.champion-book-btn:hover {
    background: linear-gradient(135deg, #C4903A, #AA7831);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(170, 120, 49, 0.3);
}

@media (max-width: 400px) {
    .timeline-dates {
        flex-wrap: wrap;
        gap: 6px;
    }

    .date-circle {
        width: 36px;
        height: 36px;
        font-size: 0.7rem;
    }

    .timeline-connector {
        width: 15px;
    }
}

@media (max-width: 768px) {
    .champion-offer-card {
        max-width: 100%;
        margin: 0 10px;
    }

    .champion-hero {
        height: 220px;
    }

    .champion-price-tag {
        font-size: 1.2rem;
        padding: 10px 16px;
    }

    .champion-content {
        padding: 20px;
    }

    .champion-title {
        font-size: 1.5rem;
    }

    .champion-night-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .champion-night-date {
        width: 40px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .single-booking-option .date-range,
    .booking-option-main .date-range {
        display: none;
    }

    .single-booking-option .date-labels {
        justify-content: center;
        text-align: center;
    }

    .booking-option-main {
        justify-content: center;
    }

    .booking-option-main .option-details {
        text-align: center;
    }
    
    /* Adjust date match label for mobile */
    .date-match-label {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
}

.escape-list-header h2 {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #0F3128;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
}

.escape-list-description {
    font-family: 'Nexa', sans-serif;
    font-size: 1.1rem;
    color: #4A4A47;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
}

.escape-list-subheader {
    font-family: 'Nexa', sans-serif;
    font-size: 0.95rem;
    color: #AA7831;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.4;
}

.escape-list-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.escape-list-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.escape-list-form label {
    font-family: 'Nexa', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0F3128;
    margin-bottom: 5px;
}

.escape-list-form input,
.escape-list-form select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Nexa', sans-serif;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.escape-list-form input:focus,
.escape-list-form select:focus {
    border-color: #AA7831;
    box-shadow: 0 0 0 3px rgba(170, 120, 49, 0.1);
}

.escape-list-form .field-help {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 4px;
    font-style: italic;
}

.consent-section {
    margin: 25px 0;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-family: 'Nexa', sans-serif;
    font-size: 0.9rem;
    color: #4A4A47;
    line-height: 1.4;
}

.consent-checkbox input[type="checkbox"] {
    display: none;
}

.consent-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    margin-right: 10px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.consent-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #AA7831;
    border-color: #AA7831;
}

.consent-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.consent-text small {
    color: #6c757d;
    font-size: 0.8rem;
}

.escape-list-submit-btn {
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #AA7831, #c49048);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Nexa', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(170, 120, 49, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.escape-list-submit-btn:hover {
    background: linear-gradient(135deg, #c49048, #AA7831);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(170, 120, 49, 0.4);
}

.escape-list-submit-btn:active {
    transform: translateY(0);
}

.escape-list-submit-btn i {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .escape-list-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .escape-list-form .form-group {
        margin-bottom: 15px;
    }

    .escape-list-header h2 {
        font-size: 1.5rem;
    }

    .escape-list-description {
        font-size: 1rem;
    }

    .consent-checkbox {
        font-size: 0.85rem;
    }
}

.escape-list-message {
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    animation: slideIn 0.3s ease-out;
}

.escape-list-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid #28a745;
    color: #155724;
}

.escape-list-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 2px solid #dc3545;
    color: #721c24;
}

.message-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.message-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.success-icon {
    color: #28a745;
    display: none;
}

.error-icon {
    color: #dc3545;
    display: none;
}

.escape-list-message.success .success-icon {
    display: block;
}

.escape-list-message.error .error-icon {
    display: block;
}

.message-text {
    font-family: 'Nexa', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    white-space: pre-line;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.escape-list-submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.escape-list-submit-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.escape-list-update-btn {
    background: linear-gradient(135deg, #AA7831, #CC9444);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Nexa', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.escape-list-update-btn:hover {
    background: linear-gradient(135deg, #CC9444, #AA7831);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(170, 120, 49, 0.3);
}

.escape-list-update-btn:active {
    transform: translateY(0);
}

.escape-list-form {
    transition: opacity 0.3s ease, height 0.3s ease;
}

.escape-list-form[style*="display: none"] {
    opacity: 0;
    height: 0;
    overflow: hidden;
}
