/* Premium Color Palette */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --luxury-gold: #d4af37;
    --midnight-blue: #1a202c;
    --royal-purple: #5b21b6;
    --soft-lavender: #e9d5ff;
    --warm-coral: #ff6b6b;
    --ocean-teal: #14b8a6;
    --pearl-white: #fafafa;
    --silver-mist: #e5e7eb;
    --charcoal: #374151;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--pearl-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header Styles */
.luxury-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-top {
    border-bottom: 1px solid var(--silver-mist);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.phone-link, .chat-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.phone-link:hover, .chat-link:hover {
    color: var(--royal-purple);
    background-color: var(--soft-lavender);
    transform: translateY(-2px);
}

/* Offline chat indicator */
.chat-link {
    opacity: 0.7;
    position: relative;
}

.chat-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 8px;
    width: 8px;
    height: 8px;
    background-color: #9ca3af;
    border-radius: 50%;
    border: 2px solid white;
}

/* Pikaday Calendar Custom Styling */
.pika-single {
    font-family: 'Inter', sans-serif !important;
    border: 1px solid var(--silver-mist) !important;
    box-shadow: 0 10px 30px var(--shadow-medium) !important;
}

.pika-title {
    background: transparent !important;
    color: var(--midnight-blue) !important;
}

.pika-label {
    background: transparent !important;
    color: var(--midnight-blue) !important;
}

.pika-select {
    background: white !important;
    color: var(--midnight-blue) !important;
    border: 1px solid var(--silver-mist) !important;
}

.pika-table th {
    color: var(--charcoal) !important;
    font-weight: 600 !important;
}

.pika-button {
    background: transparent !important;
    color: var(--charcoal) !important;
}

.pika-button:hover {
    background: var(--soft-lavender) !important;
    color: var(--royal-purple) !important;
    border-radius: 50% !important;
}

.is-selected .pika-button {
    background: var(--primary-gradient) !important;
    color: white !important;
    box-shadow: none !important;
    border-radius: 50% !important;
}

.is-today .pika-button {
    color: var(--royal-purple) !important;
    font-weight: 700 !important;
}

.pika-week {
    color: var(--charcoal) !important;
}

.pika-next,
.pika-prev {
    color: var(--royal-purple) !important;
}

.pika-next:hover,
.pika-prev:hover {
    background: var(--soft-lavender) !important;
    border-radius: 50% !important;
}

.icon {
    width: 20px;
    height: 20px;
}

.site-logo {
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.luxury-login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--midnight-blue);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 32, 44, 0.2);
}

.luxury-login-btn:hover {
    background: var(--royal-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.3);
}

/* Hero Section */
.hero-luxury {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Ensure hero content doesn't get clipped */
.hero-luxury .hero-content-luxury {
    overflow: visible !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content-luxury {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem 2rem 4rem 2rem;
    animation: fadeInUp 1s ease;
    width: 100%;
    overflow: visible;
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    white-space: nowrap;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    overflow: visible;
}

/* Search Form Styles */
.search-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: -70px auto 0;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.luxury-search-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    padding: 3rem;
    animation: slideInUp 0.8s ease 0.2s both;
}

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

.search-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-header h2 {
    font-size: 2.5rem;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.search-header p {
    color: var(--charcoal);
    opacity: 0.8;
}

.search-main-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.date-group {
    flex: 1.5;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    background: var(--pearl-white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--silver-mist);
    transition: all 0.3s ease;
}

.date-group:hover {
    border-color: var(--royal-purple);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.date-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1rem;
}

.date-separator svg {
    width: 24px;
    height: 24px;
    color: var(--royal-purple);
}

.guests-group {
    flex: 1;
    display: flex;
    gap: 1rem;
}

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

.luxury-form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-icon {
    width: 18px;
    height: 18px;
    color: var(--royal-purple);
}

.luxury-form-group input[type="date"],
.luxury-form-group input[type="text"],
.select-wrapper {
    position: relative;
}

.luxury-form-group input[type="date"],
.luxury-form-group input[type="text"],
.luxury-form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--silver-mist);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    background-color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Make date inputs larger */
.luxury-form-group input[type="text"]#checkin,
.luxury-form-group input[type="text"]#checkout {
    padding: 1.25rem 3rem 1.25rem 1.25rem;
    font-size: 1.1rem;
}

/* Make dropdowns smaller */
.guests-group .luxury-form-group select {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

/* Larger date picker calendar */
.luxury-form-group input[type="date"]::-webkit-calendar-picker-indicator {
    width: 30px;
    height: 30px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.luxury-form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Style the date picker popup to be larger */
.luxury-form-group input[type="date"]::-webkit-datetime-edit {
    font-size: 1.1rem;
    padding: 0.25rem;
}

.luxury-form-group input[type="date"] {
    font-size: 1.1rem;
    min-height: 50px;
}

/* Custom date input styling for better control */
.luxury-form-group input[type="date"]:focus {
    transform: scale(1.05);
}

/* For browsers that support it, make the calendar 50% larger */
input[type="date"]::-webkit-calendar-picker-indicator {
    transform: scale(1.5);
    margin-right: 0.5rem;
}

/* Pikaday Calendar Styling - Make it 50% larger */
.pika-single {
    transform: scale(1.5);
    transform-origin: top left;
    margin-top: 10px;
    font-family: 'Inter', sans-serif !important;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
}

.pika-single.is-bound {
    position: absolute;
    z-index: 9999;
}

/* Style the calendar header */
.pika-title {
    background: var(--royal-purple);
    color: white;
    padding: 15px;
}

.pika-label {
    color: white;
    font-weight: 600;
}

.pika-prev,
.pika-next {
    color: white;
    opacity: 0.8;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

/* Style the days */
.pika-table th {
    color: var(--royal-purple);
    font-weight: 600;
    font-size: 0.9rem;
}

.pika-button {
    background: white;
    color: var(--charcoal);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pika-button:hover {
    background: var(--soft-lavender) !important;
    color: var(--royal-purple) !important;
    transform: scale(1.1);
}

.is-selected .pika-button {
    background: var(--royal-purple) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.3);
}

.is-today .pika-button {
    color: var(--royal-purple);
    font-weight: 700;
    background: var(--pearl-white);
}

.is-disabled .pika-button {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Input styling for Pikaday - Calendar icon */
.luxury-form-group input[type="text"]#checkin,
.luxury-form-group input[type="text"]#checkout {
    cursor: pointer;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235b21b6' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") no-repeat right 15px center;
}

.luxury-form-group input[type="date"]:focus,
.luxury-form-group input[type="text"]:focus,
.luxury-form-group select:focus {
    outline: none;
    border-color: var(--royal-purple);
    box-shadow: 0 0 0 3px rgba(91, 33, 182, 0.1);
}

.input-helper {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.6;
    margin-top: 0.25rem;
}

/* Children Ages Section */
.children-ages-section {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.child-age-selector {
    background: var(--soft-lavender);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.child-age-selector h4 {
    color: var(--royal-purple);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Search Footer */
.search-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--silver-mist);
}

.special-requests {
    display: flex;
    gap: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: var(--royal-purple);
}

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

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--silver-mist);
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--royal-purple);
    border-color: var(--royal-purple);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}

.luxury-search-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.luxury-search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Hotels Section */
.hotels-showcase {
    padding: 6rem 2rem;
    background: white;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--charcoal);
    opacity: 0.8;
}

/* View All Hotels Link in Section Header */
.section-action {
    margin-top: 2rem;
}

.view-all-hotels-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--royal-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.view-all-hotels-link:hover {
    color: var(--midnight-blue);
    gap: 0.75rem;
}

.view-all-hotels-link .link-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.view-all-hotels-link:hover .link-icon {
    transform: translateX(5px);
}

.view-all-hotels-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-purple);
    transition: width 0.3s ease;
}

.view-all-hotels-link:hover::after {
    width: 100%;
}

/* Hotel Categories */
.hotel-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid var(--silver-mist);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: var(--royal-purple);
    color: var(--royal-purple);
}

.category-btn.active {
    background: var(--royal-purple);
    color: white;
    border-color: var(--royal-purple);
}

/* Hotel Grid */
.luxury-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.luxury-hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease both;
}

.luxury-hotel-card:nth-child(1) { animation-delay: 0.1s; }
.luxury-hotel-card:nth-child(2) { animation-delay: 0.2s; }
.luxury-hotel-card:nth-child(3) { animation-delay: 0.3s; }
.luxury-hotel-card:nth-child(4) { animation-delay: 0.4s; }
.luxury-hotel-card:nth-child(5) { animation-delay: 0.5s; }
.luxury-hotel-card:nth-child(6) { animation-delay: 0.6s; }
.luxury-hotel-card:nth-child(7) { animation-delay: 0.7s; }
.luxury-hotel-card:nth-child(8) { animation-delay: 0.8s; }
.luxury-hotel-card:nth-child(9) { animation-delay: 0.9s; }
.luxury-hotel-card:nth-child(10) { animation-delay: 1s; }

.luxury-hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

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

.hotel-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hotel-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hotel-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hotel-category-tag {
    background: rgba(255, 255, 255, 0.9);
    color: var(--royal-purple);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
    position: relative;
}

.hotel-details {
    padding: 1.75rem;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.hotel-name {
    font-size: 1.5rem;
    color: var(--midnight-blue);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stars {
    color: var(--luxury-gold);
    font-size: 1.1rem;
}

.rating-text {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.location-icon {
    width: 16px;
    height: 16px;
    color: var(--royal-purple);
    flex-shrink: 0;
}

.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--silver-mist);
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.from {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--midnight-blue);
}

.per-night {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.view-details {
    color: var(--royal-purple);
    font-weight: 600;
    transition: all 0.3s ease;
}

.luxury-hotel-card:hover .view-details {
    transform: translateX(5px);
}

/* View All Section */
.view-all-section {
    text-align: center;
    margin-top: 4rem;
}

.luxury-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--midnight-blue);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(26, 32, 44, 0.2);
    text-decoration: none;
}

.luxury-view-all-btn:hover {
    background: var(--royal-purple);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(91, 33, 182, 0.3);
}

/* Footer Styles */
.luxury-footer {
    background: var(--midnight-blue);
    color: white;
    position: relative;
    margin-top: 6rem;
}

.footer-wave {
    position: absolute;
    top: -59px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    color: var(--midnight-blue);
}

.footer-content {
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-phone:hover {
    color: var(--soft-lavender);
}

.availability {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--soft-lavender);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-badges {
    display: flex;
    gap: 2rem;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hidden Class */
.hidden {
    display: none !important;
}

/* Accessibility Utilities */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
    visibility: hidden !important;
}

.sr-only:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0.5rem 1rem !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    background: var(--midnight-blue) !important;
    color: white !important;
    border: 2px solid var(--luxury-gold) !important;
    border-radius: 4px !important;
    z-index: 10000 !important;
}

/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--midnight-blue);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--luxury-gold);
    outline-offset: 2px;
}

/* Enhanced Focus Management */
*:focus {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 2px;
}

/* Focus styles for interactive elements */
.luxury-login-btn:focus,
.phone-link:focus,
.chat-link:focus,
.luxury-search-btn:focus,
.category-btn:focus,
.luxury-view-all-btn:focus {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.2);
}

/* Focus styles for form elements */
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 2px;
    border-color: var(--royal-purple);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* High contrast focus for links */
a:focus {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 2px;
    background: rgba(212, 175, 55, 0.1);
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* Hotel card focus improvements */
.luxury-hotel-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 0 0 3px var(--luxury-gold);
}

.hotel-link:focus {
    outline: none; /* Remove default outline since card provides focus indication */
}

/* Tab navigation improvements */
.category-btn[aria-selected="true"] {
    background: var(--royal-purple);
    color: white;
    border: 2px solid var(--luxury-gold);
}

.category-btn:focus[aria-selected="true"] {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 4px;
}

/* Checkbox focus improvements */
.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
    outline: 3px solid var(--luxury-gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px white, 0 0 0 5px var(--luxury-gold);
}

/* Directory navigation focus */
.directory-links a:focus {
    background: var(--royal-purple);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.2);
}

/* Fieldset and legend styling */
fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

legend {
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

/* Error and status message styling */
[aria-live] {
    font-weight: 500;
}

[aria-invalid="true"] {
    border-color: #dc2626 !important;
    background-color: #fef2f2 !important;
}

[aria-invalid="true"]:focus {
    outline-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1) !important;
}

/* Improved button states */
button:disabled,
button[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Loading state accessibility */
[aria-busy="true"] {
    position: relative;
}

[aria-busy="true"]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced mobile accessibility */
@media (max-width: 768px) {
    /* Larger touch targets on mobile */
    .luxury-login-btn,
    .phone-link,
    .chat-link,
    .category-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better focus visibility on mobile */
    *:focus {
        outline-width: 4px;
        outline-offset: 3px;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .skip-link {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .luxury-hotel-card {
        border: 2px solid var(--midnight-blue);
    }
    
    .category-btn {
        border: 2px solid var(--midnight-blue);
    }
    
    .directory-links a {
        border: 1px solid var(--charcoal);
    }
}

/* Dark mode accessibility */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #ffffff;
        --bg-primary: #1a1a1a;
        --focus-color: #ffd700;
    }
    
    .sr-only:focus {
        background: var(--bg-primary) !important;
        color: var(--text-primary) !important;
        border-color: var(--focus-color) !important;
    }
    
    .skip-link {
        background: var(--bg-primary);
        color: var(--text-primary);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-main-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .date-group {
        padding: 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        white-space: normal;
        padding: 0 1rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .luxury-search-form {
        padding: 2rem;
    }
    
    .search-header h2 {
        font-size: 1.8rem;
    }
    
    .date-group {
        flex-direction: column;
    }
    
    .date-separator {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .guests-group {
        flex-direction: column;
    }
    
    .luxury-hotels-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .special-requests {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .search-footer {
        flex-direction: column;
        gap: 2rem;
    }
    
    .luxury-search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hotel-directory .directory-links {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .hotel-directory .directory-links a {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Hotel Directory Styles */
.hotel-directory {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    margin-top: 4rem;
}

.directory-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hotel-directory .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hotel-directory .section-title {
    font-size: 2.5rem;
    color: var(--midnight-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hotel-directory .section-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

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

.directory-links a {
    display: block;
    padding: 1.25rem 1.5rem;
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    color: var(--midnight-blue);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.directory-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(103, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.directory-links a:hover::before {
    left: 100%;
}

.directory-links a:hover {
    background: var(--pearl-white);
    border-color: var(--royal-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 33, 182, 0.15);
    color: var(--royal-purple);
}

.directory-links a:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .directory-links {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .directory-links a {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hotel-directory .section-title {
        font-size: 2rem;
    }
    
    .hotel-directory .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Navigation Menu Styles */
.main-navigation {
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

/* Navigation Responsive */
@media (max-width: 640px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
}