/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Playfair Display', Georgia, serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #fefefe;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(129, 212, 217, 0.2);
    box-shadow: 0 2px 20px rgba(13, 183, 187, 0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-logo span {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0DB7BB, #4ECDC4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #718096;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #0DB7BB;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: linear-gradient(90deg, #0DB7BB, #4ECDC4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #0DB7BB;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0DB7BB 0%, #4ECDC4 25%, #81D4D9 50%, #B6E5E7 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="rgba(255,255,255,0.08)"><circle cx="40" cy="40" r="2"/><circle cx="20" cy="20" r="1"/><circle cx="60" cy="60" r="1.5"/></g></svg>') repeat;
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-title .highlight {
    color: #FFE5B4;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 229, 180, 0.3);
}

.hero-spanish-notice {
    background: linear-gradient(135deg, #FFE5B4, #FFD700);
    color: #8B4513;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #FFD700;
    margin: 0 auto 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    text-align: center;
    max-width: fit-content;
    animation: subtle-pulse 2s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    opacity: 0.97;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0DB7BB, #4ECDC4, #81D4D9);
    color: white;
    box-shadow: 0 8px 30px rgba(13, 183, 187, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13, 183, 187, 0.4);
    background: linear-gradient(135deg, #0CA5A9, #47C4C7, #7DD1D6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: linear-gradient(135deg, #81D4D9, #B6E5E7);
    color: #2d3748;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #7DD1D6, #B3E3E5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(129, 212, 217, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFE5B4;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(255, 229, 180, 0.4);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Booking Section */
.booking-section {
    padding: 6rem 0;
    background: linear-gradient(145deg, #fefefe 0%, #f7fdfd 50%, #f0fcfc 100%);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="rgba(13,183,187,0.03)"><path d="M50 50m-2 0a2,2 0 1,1 4,0a2,2 0 1,1 -4,0"/><path d="M25 25m-1 0a1,1 0 1,1 2,0a1,1 0 1,1 -2,0"/><path d="M75 75m-1.5 0a1.5,1.5 0 1,1 3,0a1.5,1.5 0 1,1 -3,0"/></g></svg>') repeat;
    opacity: 0.6;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0DB7BB, #4ECDC4);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.15rem;
    color: #718096;
    font-style: italic;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(13, 183, 187, 0.08), 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(129, 212, 217, 0.2);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0DB7BB, #4ECDC4, #81D4D9);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(129, 212, 217, 0.3);
    border-radius: 15px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0DB7BB;
    box-shadow: 0 0 0 4px rgba(13, 183, 187, 0.1), 0 5px 15px rgba(13, 183, 187, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.weekend-only {
    font-size: 0.8rem;
    color: #0DB7BB;
    font-weight: 500;
    background: rgba(13, 183, 187, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}

.pickup-location-group {
    position: relative;
}

.pickup-time-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(129, 212, 217, 0.1);
    border: 1px solid rgba(129, 212, 217, 0.3);
    border-radius: 12px;
    min-height: 60px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.pickup-time-text {
    margin: 0;
    color: #0DB7BB;
    font-weight: 500;
    font-size: 0.95rem;
}

.pickup-locations-list {
    display: grid;
    gap: 0.75rem;
}

.pickup-location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: default;
}

.pickup-location-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9rem;
}

.pickup-location-time {
    background: linear-gradient(135deg, #0DB7BB, #4ECDC4);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pickup-location-address {
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

#pickup-location:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.date-helper {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #718096;
    font-style: italic;
    line-height: 1.4;
}

/* Enhanced date input styling */
input[type="date"] {
    position: relative;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    border-radius: 4px;
    margin-right: 2px;
    opacity: 0.8;
    filter: invert(0.2) sepia(1) saturate(5) hue-rotate(175deg);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    background: rgba(13, 183, 187, 0.1);
}

/* Temporary message styling */
.temp-message {
    animation: slideInUp 0.3s ease-out;
}

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

/* Notification Section */
.notification-section {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(182, 229, 231, 0.1), rgba(129, 212, 217, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(129, 212, 217, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
}

.notification-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #0DB7BB, #4ECDC4);
    border-radius: 0 20px 20px 0;
}

.notification-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    margin-left: 1rem;
}

.notification-options {
    display: grid;
    gap: 1rem;
}

.notification-option {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(129, 212, 217, 0.3);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.notification-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 183, 187, 0.05), transparent);
    transition: left 0.6s ease;
}

.notification-option:hover::before {
    left: 100%;
}

.notification-option:hover {
    border-color: #0DB7BB;
    box-shadow: 0 8px 30px rgba(13, 183, 187, 0.15);
    transform: translateY(-2px);
}

.notification-option.premium {
    border-color: #FFE5B4;
    background: linear-gradient(135deg, rgba(255, 229, 180, 0.15), rgba(255, 229, 180, 0.08));
}

.notification-option.premium:hover {
    border-color: #FFD700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.notification-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #0DB7BB;
}

.option-content {
    flex: 1;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.option-title {
    font-weight: 600;
    color: #2d3748;
}

.option-price {
    font-weight: 700;
    color: #0DB7BB;
    background: rgba(129, 212, 217, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    border: 1px solid rgba(13, 183, 187, 0.3);
}

.premium .option-price {
    color: #B8860B;
    background: rgba(255, 229, 180, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
}

.option-description {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Check-in Box */
.checkin-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(13, 183, 187, 0.08), 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(129, 212, 217, 0.2);
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.checkin-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ECDC4, #0DB7BB, #81D4D9);
}

.checkin-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.checkin-box p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.checkin-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkin-input-group input {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.checkin-input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Facilities Section */
.facilities-section {
    padding: 6rem 0;
    background: white;
}

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

.facility-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0DB7BB, #4ECDC4, #81D4D9);
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(13, 183, 187, 0.15);
    border-color: #0DB7BB;
}

.facility-header {
    margin-bottom: 1rem;
}

.facility-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.facility-location {
    font-size: 0.9rem;
    color: #6b7280;
}

.facility-status {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #374151;
}

.feature-icon {
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item span {
    color: #6b7280;
}

.spanish-support {
    background: linear-gradient(135deg, #FFE5B4, #FFD700);
    color: #8B4513;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #FFD700;
    margin-bottom: 2rem !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

/* Donation Section */
.donation-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    border-top: 1px solid rgba(129, 212, 217, 0.2);
}

.donation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.donation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.donation-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.donation-content > p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.donation-benefits {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(129, 212, 217, 0.2);
}

.benefit-icon {
    font-size: 1.8rem;
    margin-top: 0.25rem;
}

.benefit-item strong {
    display: block;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.donation-cta {
    text-align: center;
}

.donation-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .donation-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0DB7BB, #4ECDC4, #81D4D9);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo span {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #4ECDC4, #81D4D9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: #9ca3af;
    margin-top: 0.5rem;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}


/* Facility Details Button */
.facility-details-btn {
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, #0DB7BB, #4ECDC4);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    margin-top: 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(13, 183, 187, 0.3);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.facility-details-btn:hover,
.facility-details-btn:focus,
.facility-details-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 183, 187, 0.4);
    background: linear-gradient(135deg, #4ECDC4, #81D4D9);
    outline: none;
}

/* Touch devices */
.facility-details-btn:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #0DB7BB;
    border-radius: 50%;
    color: #0DB7BB;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 183, 187, 0.2);
    z-index: 10;
}

.modal-close:hover {
    background: #0DB7BB;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 183, 187, 0.4);
}

/* Facility Details Modal Styles */
.facility-modal-content {
    max-width: 900px;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(129, 212, 217, 0.03));
}

.facility-details-content {
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.facility-alert h2 {
    text-align: center;
    color: #ff4757;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.facility-header-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border: 1px solid rgba(129, 212, 217, 0.3);
    box-shadow: 0 4px 15px rgba(13, 183, 187, 0.1);
}

.facility-header-info h3 {
    color: #0DB7BB;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.travel-days {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.thank-you {
    color: #4ECDC4;
    font-weight: 500;
    font-style: italic;
}

.meeting-locations {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(129, 212, 217, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(13, 183, 187, 0.1);
}

.meeting-locations h4 {
    color: #0DB7BB;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.location-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(129, 212, 217, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(13, 183, 187, 0.1);
}

.location-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.location-icon {
    font-size: 1.5rem;
    margin-right: 0.8rem;
}

.location-header strong {
    color: #0DB7BB;
    font-size: 1.1rem;
}

.address {
    color: #4ECDC4;
    font-weight: 600;
    font-size: 1rem;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(255, 107, 53, 0.05));
    border: 2px solid rgba(255, 71, 87, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.warning-box p {
    color: #ff4757;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.important-notes {
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(129, 212, 217, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(13, 183, 187, 0.1);
}

.final-boarding, .return-info, .parking-info {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(129, 212, 217, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(13, 183, 187, 0.1);
}

.final-boarding h4, .return-info h4, .parking-info h4 {
    color: #ff4757;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reservation-note {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(129, 212, 217, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(13, 183, 187, 0.1);
}

.parking-highlight {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #4ECDC4;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(13, 183, 187, 0.1);
}

.parking-highlight p {
    color: #0DB7BB;
    font-weight: 700;
    font-size: 1.1rem;
}

.reservation-completion {
    background: linear-gradient(135deg, rgba(13, 183, 187, 0.1), rgba(129, 212, 217, 0.05));
    border: 1px solid rgba(129, 212, 217, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.reservation-completion h4 {
    color: #0DB7BB;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reservation-list {
    list-style: none;
    padding-left: 0;
}

.reservation-list li {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(129, 212, 217, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.contact-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(129, 212, 217, 0.3);
}

.contact-footer p {
    color: #4ECDC4;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.special-note {
    color: #ff4757;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    text-align: center;
}

.sunday-only-status,
.sunday-only {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.sunday-only-notice {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    text-align: center;
}

.sunday-only-notice h4 {
    color: #ff4757;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* Admin Interface Styles */
.admin-login-button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
    margin-left: 1rem;
}

.admin-login-button:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Admin Modal Styles */
.admin-modal {
    z-index: 10001;
}

.admin-modal-content {
    background: white;
    border-radius: 15px;
    padding: 0;
    width: 90%;
    max-width: 500px;
    margin: 5% auto;
}

.admin-dashboard-content {
    max-width: 95%;
    width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
}

.admin-login-form {
    padding: 2rem;
    text-align: center;
}

.admin-login-form h2 {
    color: #0DB7BB;
    margin-bottom: 0.5rem;
}

.admin-login-form p {
    color: #666;
    margin-bottom: 1.5rem;
}

.admin-login-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 1rem;
}

.admin-login-form input:focus {
    outline: none;
    border-color: #0DB7BB;
}

.admin-login-form button {
    width: 100%;
    background: linear-gradient(135deg, #0DB7BB, #4ECDC4);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-login-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 183, 187, 0.3);
}

/* Admin Dashboard Styles */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #0DB7BB, #4ECDC4);
    color: white;
    border-radius: 15px 15px 0 0;
}

.admin-title h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.admin-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

.print-btn, .refresh-btn, .logout-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.print-btn:hover, .refresh-btn:hover, .logout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.admin-content {
    padding: 1.5rem 2rem;
}

.bookings-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0DB7BB;
    border-color: #0DB7BB;
    color: white;
}

.bookings-date-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.filter-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.date-filter-btn {
    background: white;
    border: 2px solid #dee2e6;
    color: #495057;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.date-filter-btn.active,
.date-filter-btn:hover {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.bookings-container {
    max-height: 60vh;
    overflow-y: auto;
}

.booking-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.booking-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

.booking-info h4 {
    margin: 0 0 0.25rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.booking-info p {
    margin: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.booking-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-confirmed {
    background: #d1edff;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-icon {
    font-size: 1rem;
}

.detail-text {
    font-size: 0.9rem;
    color: #495057;
}

.booking-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.confirm-booking-btn, .reject-booking-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.confirm-booking-btn {
    background: #28a745;
    color: white;
}

.confirm-booking-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.reject-booking-btn {
    background: #dc3545;
    color: white;
}

.reject-booking-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.confirm-booking-btn:disabled,
.reject-booking-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Booking Action Modal */
.booking-action-content {
    max-width: 500px;
    margin: 10% auto;
    padding: 2rem;
}

.booking-action-form h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-action-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    min-height: 80px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    resize: vertical;
    font-family: inherit;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.confirm-btn, .cancel-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.confirm-btn {
    background: #28a745;
    color: white;
}

.confirm-btn:hover {
    background: #218838;
}

.cancel-btn {
    background: #6c757d;
    color: white;
}

.cancel-btn:hover {
    background: #545b62;
}

.loading-spinner {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
}

.no-bookings {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-bookings h3 {
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-dashboard-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
    }

    /* Make admin header much more compact on mobile */
    .admin-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.75rem 0.5rem;
    }

    /* Increase admin title size and reduce spacing */
    .admin-title h2 {
        font-size: 1.3rem;
        margin: 0 0 0.15rem 0;
    }

    /* Make stats much smaller and compact */
    .admin-stats {
        justify-content: center;
        gap: 0.3rem;
        font-size: 0.7rem;
        flex-wrap: wrap;
    }

    .stat-item {
        padding: 0.2rem 0.5rem;
        border-radius: 10px;
        font-size: 0.7rem;
    }

    /* Make action buttons much smaller */
    .admin-actions {
        justify-content: center;
        gap: 0.3rem;
        flex-wrap: wrap;
    }

    .print-btn, .refresh-btn, .logout-btn {
        padding: 0.3rem 0.6rem;
        border-radius: 12px;
        font-size: 0.75rem;
    }

    /* Reduce admin content padding - use more screen width */
    .admin-content {
        padding: 0.5rem 0.25rem;
    }

    /* Make filter buttons display in rows of 3-4 */
    .bookings-filters {
        gap: 0.25rem;
        margin-bottom: 0.5rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .filter-btn {
        padding: 0.4rem 0.3rem;
        border-radius: 10px;
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Make date filter section display in 2 rows */
    .bookings-date-filters {
        gap: 0.25rem;
        padding: 0.4rem 0.25rem;
        margin-bottom: 0.5rem;
        display: grid;
        grid-template-columns: auto 1fr 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .filter-label {
        font-size: 0.7rem;
        margin-bottom: 0;
        margin-right: 0.3rem;
        grid-column: 1;
        grid-row: 1;
        align-self: center;
    }

    .date-filter-btn:nth-of-type(1) { /* All Time */
        grid-column: 2;
        grid-row: 1;
    }

    .date-filter-btn:nth-of-type(2) { /* Today */
        grid-column: 3;
        grid-row: 1;
    }

    .date-filter-btn:nth-of-type(3) { /* Last 7 Days */
        grid-column: 4;
        grid-row: 1;
    }

    .date-filter-btn:nth-of-type(4) { /* Last 14 Days */
        grid-column: 2;
        grid-row: 2;
    }

    .date-filter-btn:nth-of-type(5) { /* Last 21 Days */
        grid-column: 3;
        grid-row: 2;
    }

    .date-filter-btn:nth-of-type(6) { /* Last 30 Days */
        grid-column: 4;
        grid-row: 2;
    }

    .date-filter-btn {
        padding: 0.35rem 0.4rem;
        border-radius: 10px;
        font-size: 0.65rem;
    }

    /* Increase bookings container height to show more bookings */
    .bookings-container {
        max-height: 75vh;
    }

    /* Make booking items more compact */
    .booking-item {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .booking-header {
        flex-direction: column;
        gap: 0.3rem;
    }

    .booking-info h4 {
        font-size: 0.95rem;
    }

    .booking-info p {
        font-size: 0.8rem;
    }

    .booking-status {
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
    }

    .booking-details {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        margin: 0.5rem 0;
    }

    .detail-item {
        gap: 0.3rem;
    }

    .detail-icon {
        font-size: 0.85rem;
    }

    .detail-text {
        font-size: 0.8rem;
    }

    .booking-actions {
        flex-direction: row;
        gap: 0.3rem;
        margin-top: 0.5rem;
    }

    .confirm-booking-btn, .reject-booking-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
        flex: 1;
    }

    .action-buttons {
        flex-direction: column;
    }

    .admin-modal-content {
        margin: 2% auto;
        width: 95%;
    }
}

.modal-content h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
}

/* Dashboard */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.stat-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
}

.recent-bookings h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

#bookings-list {
    display: grid;
    gap: 1rem;
}

.booking-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.booking-item h5 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.booking-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0.25rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .about-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .booking-form,
    .checkin-box {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .facility-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
        max-height: 90vh;
    }
    
    .facility-modal-content {
        margin: 2% auto;
        padding: 1rem;
        width: 98%;
        max-height: 95vh;
    }
    
    .facility-details-content {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .facility-alert h2 {
        font-size: 1.3rem;
    }
    
    .facility-header-info h3 {
        font-size: 1.1rem;
    }
    
    .location-header strong {
        font-size: 1rem;
    }
    
    .location-icon {
        font-size: 1.3rem;
    }
    
    .facility-details-btn {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
        margin-top: 0.8rem;
    }
    
    .modal-close {
        width: 50px;
        height: 50px;
        right: 0.5rem;
        top: 0.5rem;
        font-size: 2rem;
    }
    
    .admin-btn {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Animations and Interactions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Smooth scrolling with offset for fixed navbar */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed navbar */
}

/* Specific offset for check-in section on mobile */
#check-in-section {
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 120px; /* More space on mobile */
    }

    #check-in-section {
        scroll-margin-top: 120px;
    }
}

/* SMS Consent Styling */
.consent-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 2px;
    transform: scale(1.2);
    cursor: pointer;
}

.consent-text {
    color: #4a5568;
    flex: 1;
}

.consent-text a {
    color: #2c5aa0;
    text-decoration: underline;
}

/* Selection colors */
::selection {
    background: rgba(59, 130, 246, 0.2);
    color: #1f2937;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}