/* ===================================
   RESERVATION PAGE STYLES
   Jassistays - Booking System
   =================================== */

/* Hero Section */
.hero-section {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.capsimtourisme.com/uploads/images/tours/slider/255327_Djemma-El-Fna-Marrakech-excursion.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.9) 0%, rgba(139, 115, 85, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Quick Search Section */
.quick-search-section {
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.search-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.search-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.search-field label i {
    color: #C17956;
    font-size: 0.875rem;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: #C17956;
    box-shadow: 0 0 0 4px rgba(193, 121, 86, 0.1);
}

/* Accommodations Display Section */
.accommodations-display-section {
    padding: 5rem 0;
    background: #f8f6f3;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    align-items: flex-end;
    position: relative;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 calc(25% - 1rem);
    min-width: 180px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group label i {
    color: var(--color-primary);
    font-size: 1rem;
}

.filter-group select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    color: #2c2c2c;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.filter-group select:hover {
    border-color: var(--color-primary);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(193, 121, 86, 0.1);
}

.btn-reset-filters {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: fit-content;
    align-self: flex-end;
}

.btn-reset-filters:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 121, 86, 0.3);
}

.btn-reset-filters i {
    font-size: 0.875rem;
}

/* Reservation Section */
.reservation-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f6f3 0%, #ffffff 100%);
}

.reservation-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

/* Form Container */
.reservation-form-container {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1.05rem;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #C17956 0%, #D4A574 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Selected Accommodation Display */
.selected-accommodation-display {
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    border: 2px solid #C17956;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.selected-accommodation-display img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.selected-accommodation-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.selected-accommodation-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.selected-accommodation-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #C17956;
}

/* Booking Details Summary */
.booking-details-summary {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.detail-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item i {
    font-size: 2rem;
    color: #C17956;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
    border-radius: 12px;
}

.detail-item > div {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c2c2c;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: #C17956;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C17956;
    box-shadow: 0 0 0 4px rgba(193, 121, 86, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Accommodations Selection Grid */
.accommodations-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.accommodation-selection-card {
    position: relative;
    background: white;
    border: 3px solid #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.accommodation-selection-card:hover {
    border-color: #C17956;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.accommodation-selection-card.selected {
    border-color: #C17956;
    box-shadow: 0 10px 30px rgba(193, 121, 86, 0.3);
}

.accommodation-selection-card.selected::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C17956 0%, #D4A574 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(193, 121, 86, 0.4);
}

.accommodation-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.accommodation-selection-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.accommodation-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, #C17956 0%, #D4A574 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.accommodation-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.accommodation-location i {
    color: #C17956;
    font-size: 0.75rem;
}

.accommodation-selection-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.accommodation-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #666;
}

.feature-mini i {
    color: #C17956;
    font-size: 0.75rem;
}

.accommodation-price-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
    margin-top: auto;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount-big {
    font-size: 1.75rem;
    font-weight: 700;
    color: #C17956;
}

.price-period-small {
    font-size: 0.85rem;
    color: #666;
}

.select-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #C17956 0%, #D4A574 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.select-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(193, 121, 86, 0.3);
}

.accommodation-selection-card.selected .select-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    position: relative;
    cursor: pointer;
}

.service-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.service-content {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-content {
    border-color: #C17956;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card input:checked + .service-content {
    border-color: #C17956;
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
}

.service-content i {
    font-size: 2rem;
    color: #C17956;
    margin-bottom: 1rem;
}

.service-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.service-price {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #C17956 0%, #D4A574 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-option:hover .payment-content {
    border-color: #C17956;
}

.payment-option input:checked + .payment-content {
    border-color: #C17956;
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
}

.payment-content i {
    font-size: 1.75rem;
    color: #C17956;
}

.payment-content span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c2c2c;
}

/* Terms & Conditions */
.terms-conditions {
    background: #f8f6f3;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

.checkbox-label:last-child {
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.checkbox-label a {
    color: #C17956;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #8B7355;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
}

.btn-prev,
.btn-next,
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background: transparent;
    color: #C17956;
    border: 2px solid #C17956;
}

.btn-prev:hover {
    background: #C17956;
    color: white;
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #C17956 0%, #D4A574 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(193, 121, 86, 0.3);
    margin-left: auto;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 121, 86, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-submit:hover {
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* Progress Bar */
.form-progress {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.progress-bar {
    height: 6px;
    background: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C17956 0%, #D4A574 100%);
    transition: width 0.5s ease;
}

.progress-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #e5e5e5;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #C17956 0%, #D4A574 100%);
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: #666;
}

/* Booking Summary Sidebar */
.booking-summary {
    position: sticky;
    top: 100px;
}

.booking-summary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.summary-accommodation {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.placeholder-content {
    text-align: center;
    padding: 2rem 1rem;
    color: #999;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.accommodation-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accommodation-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.accommodation-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
}

.accommodation-info p {
    font-size: 0.9rem;
    color: #666;
}

.summary-details {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.summary-label i {
    color: #C17956;
    font-size: 0.875rem;
}

.summary-value {
    font-weight: 600;
    color: #2c2c2c;
}

.summary-services {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.summary-services h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.service-item span:last-child {
    font-weight: 600;
    color: #C17956;
}

.summary-pricing {
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.price-row.subtotal {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    font-weight: 600;
}

.price-row.total {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #C17956;
    font-size: 1.25rem;
    font-weight: 700;
    color: #C17956;
}

.summary-help {
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.summary-help i {
    font-size: 2rem;
    color: #C17956;
    margin-bottom: 0.5rem;
}

.summary-help p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.summary-help a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #C17956 0%, #D4A574 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.summary-help a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 121, 86, 0.3);
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem 1rem;
}

.trust-item i {
    font-size: 3rem;
    color: #C17956;
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.95rem;
    color: #666;
}

/* ===================================
   LITEPICKER CUSTOM STYLES
   =================================== */

.litepicker {
    font-family: 'Poppins', sans-serif;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
}

.litepicker .container__months {
    border-radius: 16px;
}

.litepicker .container__main {
    border-radius: 16px;
}

.litepicker .month-item-header {
    font-family: 'Playfair Display', serif;
    color: #C17956;
    font-weight: 600;
}

.litepicker .day-item {
    border-radius: 8px;
    transition: all 0.2s ease;
}

.litepicker .day-item:hover {
    background-color: rgba(193, 121, 86, 0.1);
    color: #C17956;
}

.litepicker .day-item.is-today {
    color: #C17956;
    font-weight: 600;
}

.litepicker .day-item.is-in-range {
    background-color: rgba(193, 121, 86, 0.15);
    color: #2c2c2c;
}

.litepicker .day-item.is-start-date,
.litepicker .day-item.is-end-date {
    background-color: #C17956;
    color: white;
    font-weight: 600;
}

.litepicker .day-item.is-locked {
    text-decoration: line-through;
    color: #e74c3c;
    cursor: not-allowed;
}

.litepicker .button-apply {
    background-color: #C17956;
    color: white;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.litepicker .button-apply:hover {
    background-color: #a66547;
    transform: translateY(-2px);
}

.litepicker .button-cancel {
    border-radius: 8px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.litepicker .button-cancel:hover {
    background-color: #f5f5f5;
}

/* Make date inputs look like buttons */
#searchCheckIn,
#searchCheckOut {
    cursor: pointer;
    background-color: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

#searchCheckIn:hover,
#searchCheckOut:hover {
    border-color: #C17956;
    background-color: white;
}

#searchCheckIn:focus,
#searchCheckOut:focus {
    border-color: #C17956;
    background-color: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(193, 121, 86, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reservation-layout {
        grid-template-columns: 1fr;
    }
    
    .booking-summary {
        position: static;
    }
    
    .accommodations-selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 3rem 1rem 0;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .quick-search-section {
        margin-top: -60px;
        padding: 0 1rem;
    }
    
    .search-card {
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .search-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    /* Filter Bar Mobile */
    .filter-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .filter-group {
        min-width: auto;
    }
    
    .filter-group label {
        font-size: 0.75rem;
        gap: 0.35rem;
    }
    
    .filter-group label i {
        font-size: 0.875rem;
    }
    
    .filter-group select {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
        border-radius: 10px;
        padding-right: 2.25rem;
    }

    .btn-reset-filters {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1rem;
        font-size: 0.875rem;
    }
    
    .search-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .search-field:nth-child(1),
    .search-field:nth-child(2) {
        grid-column: 1 / -1;
    }

    .search-field label {
        font-size: 0.85rem;
        margin-bottom: 0.375rem;
    }

    .search-field label i {
        font-size: 0.8rem;
    }

    .search-field input,
    .search-field select {
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .reservation-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .selected-accommodation-display {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-details-summary {
        padding: 1.5rem;
    }
    
    .detail-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .accommodations-selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .accommodation-selection-card {
        border-width: 2px;
        border-radius: 12px;
    }

    .accommodation-img {
        height: 120px;
    }

    .accommodation-selection-content {
        padding: 0.875rem;
    }

    .accommodation-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .accommodation-location {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .accommodation-location i {
        font-size: 0.7rem;
    }

    .accommodation-selection-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.65rem;
        line-height: 1.3;
    }

    .accommodation-features-mini {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .feature-mini {
        font-size: 0.7rem;
        gap: 0.25rem;
    }

    .feature-mini i {
        font-size: 0.65rem;
    }

    .accommodation-price-tag {
        padding-top: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .price-display {
        width: 100%;
    }

    .price-amount-big {
        font-size: 1.1rem;
    }

    .price-period-small {
        font-size: 0.75rem;
    }

    .select-btn {
        width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        justify-content: center;
    }

    .accommodation-selection-card.selected::before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1rem 0.5rem;
    }
    
    .trust-item i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .trust-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .trust-item p {
        font-size: 0.8rem;
    }
    
    .hero-section {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reservation-section {
        padding: 3rem 0;
    }
    
    .filter-bar {
        padding: 0.75rem;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }
    
    .filter-group {
        gap: 0.35rem;
    }
    
    .filter-group label {
        font-size: 0.7rem;
    }
    
    .filter-group label span {
        display: none; /* Hide label text, show only icons */
    }
    
    .filter-group select {
        padding: 0.5rem 0.65rem;
        font-size: 0.85rem;
        padding-right: 2rem;
    }
    
    .btn-reset-filters {
        grid-column: 1 / -1;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .btn-reset-filters span {
        display: none; /* Show only icon on very small screens */
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .btn-next,
    .btn-submit {
        margin-left: 0;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
}
