/* Color Variables - Renklerin kolay değiştirilebilmesi için */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #059669;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Tailwind Color Classes */
.text-primary { color: var(--primary-color); }
.text-primary-dark { color: var(--primary-dark); }
.bg-primary { background-color: var(--primary-color); }
.bg-primary-dark { background-color: var(--primary-dark); }
.bg-accent-color { background-color: var(--primary-color); }
.bg-success { background-color: var(--accent-color); }
.bg-success-dark { background-color: var(--accent-color); }
.hover\:bg-primary-dark:hover { background-color: var(--primary-dark); }
.border-primary { border-color: var(--primary-color); }

/* Refund Status Colors */
.bg-green-100 { background-color: #dcfce7; }
.text-green-800 { color: #166534; }
.bg-red-100 { background-color: #fee2e2; }
.text-red-800 { color: #991b1b; }

/* Slider Styles */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slide {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    position: absolute;
    inset: 0;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-arrow.prev {
    left: 16px;
}

.slider-arrow.next {
    right: 16px;
}

/* Reservation Steps Responsive */
@media (max-width: 768px) {
    .flex.items-center .w-16 {
        width: 12px;
    }
    .reservation-steps .flex.items-center .text-sm {
        font-size: 10px;
    }
    .flex.items-center .w-10 {
        width: 30px;
        height: 30px;
    }
}

/* Slider Dots Container */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

/* Slider Dots */
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
    z-index: 10;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Calendar Styles */
.calendar-container {
    font-size: 14px;
}

.calendar-nav-btn {
    padding: 8px 12px;
    border-radius: 6px;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all 0.2s ease;
    cursor: pointer;
}

.calendar-nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
    border-color: var(--primary-color);
}

.calendar-day-header {
    padding: 8px 4px;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
}

.calendar-day {
    padding: 10px 4px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 500;
    margin: 1px;
}

.calendar-day:hover {
    background-color: var(--primary-light);
    color: var(--background-white);
}

.calendar-day.selected {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.calendar-day.disabled {
    color: var(--text-light);
    cursor: not-allowed;
    background-color: transparent;
}

.calendar-day.disabled:hover {
    background-color: transparent;
    color: var(--text-light);
}

.calendar-day.other-month {
    color: var(--text-light);
}

.calendar-day.in-range {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.calendar-day.range-start,
.calendar-day.range-end {
    background-color: var(--primary-color);
    color: var(--background-white);
}

/* Guest Selection Buttons */
.guest-btn-decrease,
.guest-btn-increase {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.guest-btn-decrease:hover,
.guest-btn-increase:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.guest-btn-decrease:disabled,
.guest-btn-increase:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.guest-btn-decrease:disabled:hover,
.guest-btn-increase:disabled:hover {
    background-color: var(--background-light);
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.guest-count {
    color: var(--text-primary);
}

/* Child Age Select Styles */
.child-age-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-primary);
    background-color: var(--background-white);
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

.child-age-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.child-age-select:hover {
    border-color: var(--primary-light);
}

.child-age-wrapper {
    position: relative;
    transition: all 0.3s ease;
}

.child-age-wrapper label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: var(--text-secondary);
}

@media (max-width: 640px) {
    .child-age-select {
        padding: 6px 28px 6px 8px;
        font-size: 13px;
    }
    
    .child-age-wrapper label {
        font-size: 11px;
    }
}

/* Fade Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease forwards;
}

/* Form Elements */
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    background-color: var(--background-white);
    color: var(--text-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.form-input[readonly] {
    background-color: var(--background-light);
    cursor: pointer;
}

.form-input[readonly]:hover {
    border-color: var(--primary-color);
}

/* Button Animations */
button {
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-white);
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        z-index: 50;
    }
    
    .mobile-menu a {
        display: block;
        padding: 16px 20px;
        color: var(--text-primary);
        text-decoration: none;
        border-bottom: 1px solid var(--border-color);
        transition: background-color 0.2s ease;
    }
    
    .mobile-menu a:hover {
        background-color: var(--background-light);
    }
}

/* Single Calendar Responsive */
@media (max-width: 1024px) {
    .calendar-container {
        margin-bottom: 20px;
    }
}

/* Single Calendar Mobile Optimization */
@media (max-width: 480px) {
    #main-calendar {
        max-width: 100%;
    }
    
    .calendar-container {
        font-size: 12px;
    }
    
    .calendar-nav-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .calendar-day {
        padding: 8px 2px;
        font-size: 12px;
    }
    
    .calendar-day-header {
        padding: 6px 2px;
        font-size: 10px;
    }
    
    .guest-btn-decrease,
    .guest-btn-increase {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Success/Error Messages */
.message {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    font-weight: 500;
}

.message-success {
    background-color: rgba(5, 150, 104, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.message-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Focus States for Accessibility */
button:focus-visible,
.calendar-day:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth Transitions */
* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Room List Styles */
.room-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.room-card.selected {
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.02);
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    background-color: var(--background-light);
    color: var(--text-secondary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.amenity-tag i {
    font-size: 10px;
}

.select-room-btn {
    min-width: 80px;
    font-size: 14px;
}

.select-room-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Filter Styles */
.filter-section {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Price Range Slider */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

input[type="range"]:hover {
    opacity: 1;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Checkbox Styles - Enhanced for primary color */
input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    background-color: var(--background-white);
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

input[type="checkbox"]:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Tailwind override for checkboxes */
.extra-service,
.service-checkbox {
    accent-color: var(--primary-color) !important;
}
.extra-service:checked,
.service-checkbox:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    accent-color: var(--primary-color) !important;
}

/* Radio Button Styles - Enhanced for primary color */
input[type="radio"] {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    background-color: var(--background-white);
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

input[type="radio"]:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E");
    background-size: 8px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Tailwind override for radio buttons */
.price-option-radio {
    accent-color: var(--primary-color) !important;
}
.price-option-radio:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    accent-color: var(--primary-color) !important;
}

/* Extras Panel */
.extras-panel {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #e5e7eb;
}

/* Webkit scrollbar styles */
.extras-panel::-webkit-scrollbar {
    width: 6px;
}

.extras-panel::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 10px;
}

.extras-panel::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.extras-panel label {
    border: 1px solid #e5e7eb;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.extras-panel label:hover {
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Remove any existing hover background effects */
.extras-panel label:hover {
    background-color: transparent !important;
}

/* Add spacing between items */
.extras-panel label:not(:last-child) {
    margin-bottom: 0.75rem;
}

/* Panel styling */
.extras-panel {
    padding: 0.75rem;
    background-color: #fff;
    border-radius: 0.75rem;
}

/* Sticky Sidebar */
.sticky {
    position: sticky;
    top: 100px;
}

/* Desktop - Disable mobile scroll */
@media (min-width: 769px) {
    .mobile-room-scroll {
        max-height: none !important;
        overflow: visible !important;
        padding-right: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Show load more button on desktop */
    #load-more {
        display: inline-flex !important;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .sticky {
        position: sticky;
        top: 80px;
    }
    
    /* Tablet layout adjustments */
    .lg\:w-3\/4 {
        width: 70%;
    }
    
    .lg\:w-1\/4 {
        width: 30%;
    }
}

/* Filter Modal Styles */
#filter-modal {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

#filter-modal .bg-white {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Desktop Filter Button */
#desktop-filter-toggle {
    min-width: 100px;
    transition: all 0.2s ease;
}

#desktop-filter-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Active Filters Container */
#active-filters-container {
    max-height: 80px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    min-width: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#active-filters-container::-webkit-scrollbar {
    display: none;
}

/* Filter Tags */
.filter-tag {
    animation: fadeInScale 0.3s ease-out;
    flex-shrink: 0;
    white-space: nowrap;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.filter-tag button {
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
}

.filter-tag button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* More Filters Button */
.more-filters-btn {
    transition: all 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.more-filters-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Mobile filter adjustments */
@media (max-width: 768px) {
    .lg\:w-3\/4,
    .lg\:w-1\/4 {
        width: 100%;
    }
    
    /* Mobile filter panel toggle */
    #mobile-filter-panel.show {
        display: block !important;
    }
    
    #mobile-filter-toggle {
        transition: all 0.3s ease;
    }
    
    #mobile-filter-toggle:hover {
        background-color: var(--primary-dark);
    }
    
    #filter-chevron {
        transition: transform 0.3s ease;
    }
    
    #filter-chevron.rotate {
        transform: rotate(180deg);
    }
    
    /* Mobile room list scroll */
    .mobile-room-scroll {
        max-height: calc(3 * 280px + 2 * 1.5rem); /* 3 cards height + gaps */
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 4px;
        margin-right: -4px;
        scrollbar-color: var(--primary-color) #e5e7eb;
    }
    
    /* Custom scrollbar for mobile room list */
    .mobile-room-scroll::-webkit-scrollbar {
        width: 4px;
    }
    
    .mobile-room-scroll::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 2px;
    }
    
    .mobile-room-scroll::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }
    
    .mobile-room-scroll::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }
    
    /* Hide load more button on mobile */
    #load-more {
        display: none;
    }
    
    /* Mobile sort select styling */
    #sort-select {
        min-width: 150px;
    }
    
    /* Hide desktop filter button on mobile */
    #desktop-filter-toggle {
        display: none !important;
    }
    
    /* Ensure active filters container is hidden on mobile */
    #active-filters-container {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .room-card .md\\:flex {
        display: block;
    }
    
    .room-card .md\:w-1\/3,
    .room-card .md\:w-2\/3 {
        width: 100%;
    }
    
    .amenity-tag {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .select-room-btn {
        width: 100%;
        margin-top: 1rem;
    }
    
    /* Mobile Filter Toggle */
    .filter-toggle {
        display: block;
        width: 100%;
        background-color: var(--primary-color);
        color: white;
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 600;
    }
    
    .filter-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        z-index: 1000;
        overflow-y: auto;
        padding: 20px;
    }
    
    .filter-sidebar.show {
        display: block;
    }
    
    .filter-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--text-secondary);
        cursor: pointer;
    }
}

@media (max-width: 640px) {
    .room-card {
        margin-bottom: 1rem;
    }
    
    .room-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .amenity-tag {
        font-size: 10px;
        padding: 2px 5px;
        margin: 1px;
    }
    
    .extras-panel {
        font-size: 13px;
    }
    
    .select-room-btn {
        flex-shrink: 0 !important;
        width: auto !important;
        min-width: 80px !important;
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
    
    /* Sort and view controls mobile */
    .flex.flex-col.sm\:flex-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .flex.items-center.space-x-4 {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    #sort-select {
        min-width: 130px;
        font-size: 12px;
    }
    
    /* Reservation Steps Mobile */
    .flex.items-center .w-16 {
        width: 12px;
    }
    .reservation-steps .flex.items-center .text-sm {
        font-size: 10px;
    }
    .flex.items-center .w-10 {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Loading Animation */
.room-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.room-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Promo Code Styles */
.promo-success {
    color: var(--accent-color);
}

.promo-error {
    color: #dc2626;
}

/* Price Highlight */
.price-highlight {
    background-color: rgba(37, 99, 235, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* ===== BOOKING SUMMARY STYLES ===== */

/* Simple booking summary styles without animations */
.booking-summary-section {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
}

.booking-date-card {
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Custom Checkbox Styles */
.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.extra-service:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 12px;
}

.extra-service:checked + .checkbox-custom {
    background-color: var(--primary-color-light);
}

/* Extras Toggle Animation */
.extras-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

/* Extra Service Item Styles */
.extras-panel label {
    border: 1px solid #e5e7eb;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.extras-panel label:hover {
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Remove any existing hover background effects */
.extras-panel label:hover {
    background-color: transparent !important;
}

/* Add spacing between items */
.extras-panel label:not(:last-child) {
    margin-bottom: 0.75rem;
}

/* Panel styling */
.extras-panel {
    padding: 0.75rem;
    background-color: #fff;
    border-radius: 0.75rem;
}

/* Transition Effects */
.extras-panel {
    transition: all 0.3s ease-in-out;
}

.extras-panel.show {
    opacity: 1;
    transform: translateY(0);
}

.extras-panel.hide {
    opacity: 0;
    transform: translateY(-10px);
}

/* Room Slider Styles */
.room-slider {
    position: relative;
    overflow: hidden;
}

.room-slides {
    position: relative;
}

.room-slides img {
    transition: opacity 0.5s ease;
}

.room-slides img.active {
    opacity: 1;
}

.room-slides img:not(.active) {
    opacity: 0;
}

.slider-nav {
    transition: background-color 0.3s ease;
}

.slider-nav:hover {
    background-color: rgba(0, 0, 0, 0.75) !important;
}

/* Personal Information Page Styles */
.booking-date-card {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--border-color);
}

/* Phone Number with Country Code Styles */
#country-code {
    background-color: var(--background-light);
    border-right: none;
    font-size: 14px;
    padding-left: 8px;
    padding-right: 4px;
}

#country-code:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

#phone.rounded-l-none {
    border-left: 1px solid var(--border-color);
}

#phone.rounded-l-none:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-input.border-red-500 {
    border-color: #ef4444;
    box-shadow: 0 0 0 1px #ef4444;
}

.form-input.border-red-500:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Personal Info Form Responsive */
@media (max-width: 768px) {
    .personal-info-form {
        padding: 16px;
    }
    
    .personal-info-form .grid {
        grid-template-columns: 1fr;
    }
    
    .personal-info-form .md\:col-span-2 {
        grid-column: span 1;
    }
    
    .booking-summary {
        position: relative !important;
        top: auto !important;
    }
    
    .flex.flex-col.sm\:flex-row {
        flex-direction: column;
    }
    
    .flex.flex-col.sm\:flex-row button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .personal-info-form h2 {
        font-size: 1.5rem;
    }
    
    .personal-info-form h3 {
        font-size: 1.125rem;
    }
    
    .form-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .booking-date-card {
        padding: 12px;
    }
}

/* Form Input Focus States */
.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

select.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

textarea.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* Checkbox Styles */
input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Loading State */
.loading-form {
    opacity: 0.6;
    pointer-events: none;
}

/* Success Message Animation */
.message {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Booking Summary Sticky */
.booking-summary-sticky {
    position: sticky;
    top: 6rem;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
}

/* Price Highlight */
.price-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Room Info Icon - Özel styling çakışma olmasın */
.fa-info-circle-room {
    color: #9ca3af !important;
    font-size: 16px;
}

.fa-info-circle-room:hover {
    color: var(--primary-color) !important;
}