@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}
/* ==================================================
   LANDING PAGE STYLES
   ================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 400px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: #f3f4f6;
}

.mobile-menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.mobile-menu-close:hover {
    background: #f3f4f6;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1e40af;
}

.book-now-btn {
    background: #68cfff;
    color: rgb(255, 255, 255);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.book-now-btn:hover {
    background: #60ecff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
}

.book-now-btn.logout-only {
    background: #1e40af;
}

.book-now-btn.logout-only:hover {
    background: #1e3a8a;
}

/* Login Button Styles */
.login-btn {
    background: white;
    color: #1e40af;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    font-size: 1rem;
}

.login-btn:hover {
    background: #f8fafc;
    border-color: #d1d5db;
}

/* Login Dropdown Styles */
.login-dropdown-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    min-width: 320px;
    z-index: 1001;
}

.login-dropdown.show {
    display: block;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1.5rem;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input-group {
    display: flex;
    flex-direction: column;
}

.form-input-group input {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-input-group input:focus {
    outline: none;
    border-color: #68cfff;
    box-shadow: 0 0 0 3px rgba(104, 207, 255, 0.1);
}

.login-links {
    display: flex;
    justify-content: flex-end;
    margin-top: -0.5rem;
}

.forgot-password {
    font-size: 0.875rem;
    color: #1e40af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #68cfff;
}

.login-submit-btn {
    background: #1e40af;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
    /* Mobile touch fixes */
    -webkit-tap-highlight-color: rgba(30, 64, 175, 0.3);
    touch-action: manipulation;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    min-height: 44px; /* Minimum touch target size for mobile */
    display: block;
    position: relative;
    z-index: 1;
}

.login-submit-btn:hover {
    background: #1e3a8a;
}

.login-submit-btn:active {
    background: #1e3a8a;
    transform: scale(0.98);
}

/* Ensure button is clickable on mobile */
@media (max-width: 768px) {
    .login-submit-btn {
        min-height: 48px;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(155, 203, 211, 0.39), rgba(135, 151, 202, 0.329)), 
                url('../images/ResortFront.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    background: rgba(36, 131, 197, 0.9);
    padding: 3rem;
    border-radius: 20px;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.chat-icon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1e40af;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.chat-icon:hover {
    transform: scale(1.1);
}


/* Special Occasions Section */
.special-occasions {
    padding: 5rem 0;
    background: #f0f9ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 2rem;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.occasion-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.occasion-card:hover {
    transform: translateY(-10px);
}

.occasion-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.occasion-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.occasion-image i {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.birthday-bg {
    background-image: url('../images/ResortArch.JPG');
}

.christening-bg {
    background-image: url('../images/RooftopEvent.jpg');
}

.wedding-bg {
    background-image: url('../images/RooftopEvent1.jpg');
}

.occasion-content {
    padding: 2rem;
}

.occasion-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}

.occasion-description {
    color: #6b7280;
    line-height: 1.6;
}

.more-events {
    text-align: center;
    color: #1e40af;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Rates Section */
.rates {
    padding: 6rem 0;
    background: white;
}

.rates-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rates-text h2 {
    font-size: 4rem;
    font-weight: 1000;
    line-height: 1.2;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.rates-description {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.check-rates-btn {
    background: #1e40af;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.check-rates-btn:hover {
    background: #1d4ed8;
}

.rates-image {
    display: flex;
    justify-content: center;
}

.rates-image-placeholder {
    width: 400px;
    height: 400px;
    border-radius: 20%;
    background: url('../images/flamingo.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ec4899;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #A7DAFF;
    position: relative;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    width: calc(500px * 8 + 2rem * 7); /* 8 cards with gaps */
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 4 - 2rem * 4)); /* Move by 4 cards */
    }
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    height: 500px;
    width: 500px;
    cursor: pointer;
}

.testimonial-card:nth-child(even) {
    transform: rotate(1deg);
}

.testimonial-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.testimonial-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Final CTA Section */
.final-cta {
    height: 60vh;
    background: linear-gradient(rgba(182, 182, 182, 0.2), rgba(182, 182, 182, 0.2)), 
                url('../images/Pool.JPG');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-text {
    padding: 3rem;
    border-radius: 20px;
    text-shadow: #585858 2px 2px 3px;
    color: white;
}

.cta-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-btn {
    background: #1e40af;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #1d4ed8;
}

/* Footer */
.footer {
    background: #00203A;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.location-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.location-icon {
    margin-right: 0.5rem;
    color: #a3bcff;
}

.footer-location {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    max-width: 480px;
}

.map-container {
    width: min(400px, 100%);
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Desktop: Hide mobile login elements - desktop uses dropdown */
.mobile-login-panel {
    display: none;
}

/* Desktop: Hide mobile login button and content */
@media (min-width: 1025px) {
    .mobile-nav-login-item {
        display: none !important;
    }
    
    .mobile-login-content {
        display: none !important;
    }
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 999;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        padding: 20px;
    }
    
    .main-nav.mobile-nav-open {
        right: 0;
    }
    
    .mobile-menu-close {
        display: flex;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        margin-top: 40px;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a,
    .nav-links button {
        display: block;
        width: 100%;
        padding: 15px 0;
        text-align: left;
    }
    
    .nav-links .book-now-btn,
    .nav-links .login-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    /* Hide desktop dropdown on mobile - it should not appear */
    .login-dropdown {
        display: none !important; /* Completely hidden on mobile */
    }
    
    /* Hide the entire desktop login container on mobile - only show sky-blue mobile button */
    .login-dropdown-container {
        display: none !important; /* Completely hide desktop login button on mobile */
    }
    
    /* Show mobile nav login button - visible in MENU MODE */
    .mobile-nav-login-item {
        display: block !important; /* Ensure it's visible on mobile */
        width: 100%;
        border-top: 2px solid #e5e7eb;
        margin-top: 10px;
        padding-top: 10px;
        list-style: none;
    }
    
    .mobile-nav-login-btn {
        display: flex !important; /* Use flexbox for perfect centering */
        align-items: center; /* Vertical centering */
        justify-content: center; /* Horizontal centering */
        width: 100%;
        min-height: 48px; /* Minimum touch target size */
        padding: 15px 20px;
        background: #68cfff; /* Sky-blue color */
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        font-size: 1rem;
        transition: background 0.3s ease;
        -webkit-tap-highlight-color: rgba(104, 207, 255, 0.3);
        touch-action: manipulation;
        text-align: center; /* Fallback for text centering */
        line-height: 1.5; /* Ensure proper line height for vertical centering */
    }
    
    .mobile-nav-login-btn:hover,
    .mobile-nav-login-btn:active {
        background: #4db8e8; /* Slightly darker sky-blue on hover */
    }
    
    /* MENU MODE (default): Show nav links and login button, hide login form */
    .main-nav .nav-links {
        display: block !important;
    }
    
    .main-nav .mobile-nav-login-item {
        display: block !important; /* Login button visible in MENU MODE */
    }
    
    .main-nav .mobile-login-content {
        display: none !important;
    }
    
    /* LOGIN MODE: Hide nav links and login button, show login form */
    .main-nav.show-login .nav-links {
        display: none !important;
    }
    
    .main-nav.show-login .mobile-nav-login-item {
        display: none !important; /* Hide login button in LOGIN MODE */
    }
    
    .main-nav.show-login .mobile-login-content {
        display: block !important;
    }
    
    /* Mobile Login Content (replaces nav links) */
    .mobile-login-content {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
        overflow-y: auto;
        margin-top: 40px; /* Space for close button */
        max-height: calc(100vh - 100px); /* Allow scrolling if content is tall */
    }
    
    /* Center and style login form content */
    .main-nav.show-login .mobile-login-content .mobile-login-title {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .main-nav.show-login .mobile-login-content .mobile-login-form,
    .main-nav.show-login .mobile-login-content .forgot-password-form,
    .main-nav.show-login .mobile-login-content .otp-verification-form,
    .main-nav.show-login .mobile-login-content .reset-password-form,
    .main-nav.show-login .mobile-login-content .success-form {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    /* Error message styling for mobile login */
    .main-nav.show-login .mobile-login-content .login-error {
        background: #fee2e2;
        color: #dc2626;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin-bottom: 1rem;
        font-size: 0.875rem;
        text-align: center;
    }
    
    .mobile-login-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e40af;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .mobile-login-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-login-form .form-input-group {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-login-form .form-input-group {
        margin-bottom: 1rem;
    }
    
    .mobile-login-form .form-input-group input {
        padding: 0.875rem 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
        transition: border-color 0.3s ease;
    }
    
    .mobile-login-form .form-input-group input:focus {
        outline: none;
        border-color: #68cfff;
        box-shadow: 0 0 0 3px rgba(104, 207, 255, 0.1);
    }
    
    .mobile-login-form .login-links {
        display: flex;
        justify-content: flex-end;
        margin-top: -0.5rem;
    }
    
    .mobile-login-form .forgot-password {
        font-size: 0.875rem;
        color: #1e40af;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .mobile-login-form .forgot-password:hover {
        color: #68cfff;
    }
    
    .mobile-login-submit {
        width: 100%;
        background: #1e40af;
        color: white;
        padding: 0.875rem 1.5rem;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
        margin-top: 0.5rem;
        -webkit-tap-highlight-color: rgba(30, 64, 175, 0.3);
        touch-action: manipulation;
        pointer-events: auto;
        min-height: 48px; /* Ensure sufficient touch target size */
    }
    
    .mobile-login-submit:hover,
    .mobile-login-submit:active {
        background: #1e3a8a;
    }
    
    /* Mobile form description and other elements */
    .mobile-login-panel .form-description {
        font-size: 0.875rem;
        color: #6b7280;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .mobile-login-panel .otp-timer-text {
        font-size: 0.875rem;
        color: #6b7280;
        margin-bottom: 1rem;
    }
    
    .mobile-login-panel .success-check {
        font-size: 3rem;
        color: #10b981;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .mobile-login-panel .success-text {
        font-size: 1.125rem;
        font-weight: 600;
        color: #1e40af;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .rates-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        padding: 2rem;
    }

    .rates {
        padding: 4rem 0;
    }

    .rates-text {
        text-align: center;
    }

    .rates-text h2 {
        font-size: 2.4rem;
    }

    .rates-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .check-rates-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .rates-image {
        order: -1;
    }

    .rates-image-placeholder {
        width: min(300px, 90vw);
        height: min(300px, 90vw);
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .cta-text {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .occasions-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-location {
        align-items: center;
        max-width: 100%;
    }

    .map-container {
        width: 100%;
    }
}

/* ==================================================
   FACILITIES PAGE STYLES
   ================================================== */

/* Facilities Hero Section */
.facilities-hero {
    height: 80vh;
    background: linear-gradient(rgba(155, 203, 211, 0.459), rgba(135, 151, 202, 0.459)), 
                url('../images/poolarea.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.facilities-hero .facilities-hero-content {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.facilities-hero-text {
    padding: 3rem;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.facilities-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.facilities-hero-description {
    font-size: 1.5rem;
    line-height: 1.6;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

/* Rates Info Section */
.rates-info {
    padding: 5rem 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-column {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #68cfff;
    padding-bottom: 0.5rem;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.rate-item:last-child {
    border-bottom: none;
}

.rate-time {
    font-weight: 500;
    color: #374151;
}

.rate-price {
    font-weight: 600;
    color: #1e40af;
    font-size: 1.1rem;
}

.capacity-info p {
    margin-bottom: 0.5rem;
    color: #6b7280;
    font-weight: 500;
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #6b7280;
}

.amenities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Facilities Preview Section */
.facilities-preview {
    padding: 5rem 0;
    background: #E6F5FF;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.048);
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.amenity-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(24, 53, 116, 0.8));
    color: white;
    padding: 20px 15px 15px;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 34, 44, 0.9);
    backdrop-filter: blur(10px);
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-label {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-btn:hover {
    color: #68cfff;
}


/* Perfect Events Section */
.perfect-events {
    padding: 5rem 0;
    background: #A7DAFF;
}

.events-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Events description styling */
.events-description {
    text-align: center;
    margin-top: 3rem;
}

.events-description p {
    font-size: 1.2rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.events-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Event Gallery Grid Styles */
.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
}

.event-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.event-gallery-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Navigation Active State */
.nav-links a.active {
    color: #1e40af;
    font-weight: 600;
}

/* Responsive Design for Facilities Page */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .facilities-hero-title {
        font-size: 2.5rem;
    }
    
    .facilities-hero-description {
        font-size: 1.2rem;
    }
    
    .facilities-hero-text {
        padding: 2rem;
        max-width: 90%;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .events-gallery {
        margin-top: 1rem;
    }
    
    .event-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 1rem;
    }
    
    .event-gallery-image {
        height: 150px;
    }
    
    .events-description p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ==================================================
   PROMO PAGE STYLES
   ================================================== */

/* Promo Hero Section */
.promo-hero {
    height: 60vh;
    background: linear-gradient(rgba(155, 203, 211, 0.39), rgba(135, 151, 202, 0.329)), 
                url('../images/ResortFront.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.promo-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.promo-hero-text {
    background: rgba(36, 131, 197, 0.9);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.promo-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.promo-hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Featured Promo Section */
.featured-promo {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.promo-notice {
    text-align: center;
    margin-bottom: 3rem;
}

.promo-notice p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.facebook-link {
    color: #1877f2;
    text-decoration: none;
    font-weight: 600;
}

.facebook-link:hover {
    text-decoration: underline;
}

.promo-signup {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.promo-signup h3 {
    font-size: 1.3rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.signup-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.facebook-btn {
    background: #1877f2;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.facebook-btn:hover {
    background: #166fe5;
}

.email-signup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.email-signup span {
    color: #6b7280;
    font-size: 0.9rem;
}

.email-form {
    display: flex;
    gap: 0.5rem;
}

.email-input {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    width: 250px;
}

.email-input:focus {
    outline: none;
    border-color: #1e40af;
}

.notify-btn {
    background: #68cfff;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notify-btn:hover {
    background: #60ecff;
}

/* Recent Announcements Section */
.recent-announcements {
    padding: 5rem 2rem;
    background: #A7DAFF;
}

.announcements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.announcement-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    min-height: 160px;
}

.announcement-card:hover {
    transform: translateY(-5px);
}

.announcement-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    margin: 1rem;
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-content {
    padding: 1.25rem 1.75rem 1.25rem 0.75rem;
    flex: 1;
}

.announcement-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.announcement-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.announcement-date {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
}

.facebook-follow-notice {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.facebook-follow-notice p {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 500;
}

.facebook-follow-notice a {
    color: #1877f2;
    text-decoration: none;
    font-weight: 600;
}

.facebook-follow-notice a:hover {
    text-decoration: underline;
}

/* Flash Deals Section */
.flash-deals {
    padding: 5rem 0;
    background: white;
}

.deals-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.deals-carousel {
    overflow: hidden;
    position: relative;
    margin-bottom: 3rem;
}

.deals-track {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    animation: scrollDeals 30s linear infinite;
    width: calc(400px * 6 + 2rem * 5); /* 6 cards with gaps */
}

.deals-track:hover {
    animation-play-state: paused;
}

@keyframes scrollDeals {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 3 - 2rem * 3)); /* Move by 3 cards */
    }
}

.deal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    height: 500px;
    width: 500px;
    cursor: pointer;
}

.deal-card:nth-child(even) {
    transform: rotate(1deg);
}

.deal-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.deal-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 64, 175, 0.9));
    color: white;
    padding: 2rem;
    text-align: center;
}

.deal-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.deal-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.deals-notice {
    text-align: center;
    padding: 2rem;
    background: #f0f9ff;
    border-radius: 15px;
    border: 2px dashed #68cfff;
}

.deals-notice p {
    font-size: 1.1rem;
    color: #1e40af;
    font-weight: 500;
}

/* Responsive Design for Promo Page */
@media (max-width: 768px) {
    .promo-hero-title {
        font-size: 2rem;
    }
    
    .promo-hero-text {
        padding: 2rem;
    }
    
    .announcements-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 0 0.5rem;
    }
    
    .featured-promo {
        padding: 3rem 1rem;
    }
    
    .recent-announcements {
        padding: 4rem 1rem;
    }
    
    .announcement-card {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    
    .announcement-image {
        width: 120px;
        height: 120px;
        margin: 1.25rem auto 0.75rem auto;
    }
    
    .announcement-content {
        padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    }
    
    .signup-options {
        gap: 1.5rem;
    }
    
    .email-form {
        flex-direction: column;
        width: 100%;
    }
    
    .email-input {
        width: 100%;
    }
    
    .deal-card {
        height: 400px;
        width: 300px;
    }
    
    @keyframes scrollDeals {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 3 - 2rem * 3));
        }
    }
}

/* ==================================================
   CONTACT PAGE STYLES
   ================================================== */

/* Contact Hero Section */
.contact-hero {
    padding: 8rem 2rem 4rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-hero-subtitle p {
    margin: 0.5rem 0;
}

/* Contact Content Section */
.contact-content {
    padding: 2rem 1rem;
    background: white;
}

.contact-content .container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 2rem;
}

/* Contact Info Styles */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e0f2fe;
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
    color: #1e40af;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.contact-link {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contact-text {
    color: #374151;
    font-weight: 500;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff7ed;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.contact-note p {
    color: #92400e;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Chat Section Styles */
.chat-placeholder {
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-placeholder-content {
    max-width: 300px;
}

.chat-placeholder-icon {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.chat-placeholder-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.chat-placeholder-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.chat-alternatives {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-alt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.facebook-btn {
    background: #1877f2;
    color: white;
}

.facebook-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.email-btn {
    background: #10b981;
    color: white;
}

.email-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero {
        padding: 6rem 1rem 3rem 1rem;
    }
    
    .contact-content {
        padding: 3rem 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 640px;
        width: 100%;
    }
    
    .chat-placeholder {
        padding: 2rem 1rem;
        min-height: 300px;
    }
    
    .chat-alternatives {
        flex-direction: column;
    }
}

/* ==================================================
   RESERVATION PAGE STYLES
   ================================================== */

/* Reservation Hero Section */
.reservation-hero {
    padding: 8rem 2rem 3rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.reservation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
}

/* Main Booking Section */
.booking-section {
    padding: 4rem 2rem;
    background: white;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    width: 20px;
    height: 20px;
    color: #1e40af;
}

/* Calendar Styles */
.availability-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #374151;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-indicator.available {
    background: #10b981;
}

.calendar-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-month {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin: 0;
}

.calendar-nav {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
    color: #6b7280;
}

.calendar-nav:hover {
    background: #e5e7eb;
    color: #1e40af;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.weekday {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day.other-month {
    color: #d1d5db;
    cursor: not-allowed;
}

.calendar-day.current-month {
    color: #374151;
    background: white;
    border: 1px solid #e5e7eb;
}

.calendar-day.current-month:hover {
    background: #e0f2fe;
    border-color: #1e40af;
    color: #1e40af;
}

.calendar-day.available {
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
}

.calendar-day.available:hover {
    background: #d1fae5;
}

.calendar-day.selected {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
}

/* Schedule Selection Styles */
.schedule-selection {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.schedule-prompt {
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.schedule-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.schedule-button {
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.schedule-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.schedule-button.selected {
    background: #1e40af;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

/* Booking Form Styles */
.booking-form {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.time-format {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="datetime-local"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Total Display */
.total-display {
    background: #e0f2fe;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.total-display label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
}

.total-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-top: 0.5rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
}

.checkbox-item input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.addon-options .checkbox-item {
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.addon-text {
    line-height: 1.4;
}

/* Selected Timeslot Display */
.selected-timeslot-display {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border: 2px solid #1e40af;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.selected-timeslot-display:hover {
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
    transform: translateY(-1px);
}

#selectedTimeslotText {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* Addon Quantity Selector */
.addon-quantity-selector {
    margin-left: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: #f0f9ff;
    border-radius: 6px;
    border-left: 2px solid #68cfff;
    max-width: 280px;
}

.addon-quantity-selector label {
    display: block;
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.addon-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.addon-select:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.1);
}

.agreement {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.submit-btn {
    width: 100%;
    background: #1e40af;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1d4ed8;
}

/* Resort Rates Section */
.resort-rates {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.rates-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.rates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.rate-item:last-child {
    border-bottom: none;
}

.rate-item.sub-rate {
    padding-left: 1rem;
    font-size: 0.95rem;
}

.rate-type {
    font-weight: 500;
    color: #374151;
}

.rate-price {
    font-weight: 700;
    color: #1e40af;
    font-size: 1.1rem;
}

.capacity-info {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.capacity-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.capacity-icon i {
    width: 16px;
    height: 16px;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}

.info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.4;
}

.info-section li::before {
    content: "•";
    color: #1e40af;
    position: absolute;
    left: 0;
}

/* Resort Policies Section */
.resort-policies {
    padding: 4rem 2rem;
    background: white;
}

.policies-card {
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.policies-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 500px;
}

.policies-menu {
    background: #f3f4f6;
    border-right: 1px solid #e5e7eb;
}

.policy-menu-item {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
}

.policy-menu-item:hover {
    background: #e5e7eb;
    border-left-color: #68cfff;
}

.policy-menu-item.active {
    background: white;
    border-left-color: #1e40af;
    color: #1e40af;
    font-weight: 600;
}

.policies-content {
    background: white;
    padding: 2rem 3rem;
    position: relative;
}

.policy-content-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.policy-content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #68cfff;
}

.policy-content-section ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.policy-content-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
    line-height: 1.6;
}

.policy-content-section li::before {
    content: "•";
    color: #1e40af;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Map Location Section */
.map-location {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.map-container-large {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.location-details {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.location-info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.location-info-item p {
    color: #374151;
    margin: 0;
    line-height: 1.4;
}

.location-info-item a {
    color: #1e40af;
    text-decoration: none;
}

.location-info-item a:hover {
    text-decoration: underline;
}


/* Responsive Design for Reservation Page */
@media (max-width: 1024px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Calendar responsive adjustments */
    .calendar-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .calendar-grid {
        width: 100%;
        overflow-x: auto;
    }
    
    .calendar-days {
        min-width: 100%;
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 0.5rem;
    }
    
    .calendar-day {
        aspect-ratio: 1;
        min-width: 0;
        width: 100%;
    }
    
    /* Form responsive adjustments */
    .form-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .booking-form {
        width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .reservation-hero {
        padding: 6rem 1rem 2rem 1rem;
    }
    
    .reservation-title {
        font-size: 2rem;
    }
    
    .booking-section {
        padding: 3rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .capacity-info {
        grid-template-columns: 1fr;
    }
    
    .policies-layout {
        grid-template-columns: 1fr;
    }
    
    /* Calendar mobile optimizations */
    .calendar-header {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .calendar-month {
        font-size: 1.1rem;
    }
    
    .calendar-day {
        font-size: 0.85rem;
        padding: 0.5rem 0.25rem;
    }
    
    /* Chatbot button mobile positioning - prevent cutoff */
    #local-chatbot,
    #simple-chatbot,
    #chat-toggle-btn,
    .chat-toggle {
        bottom: 80px !important; /* Raise above mobile browser UI */
        right: 16px !important; /* Inset from edge */
    }
    
    /* Ensure chatbot container doesn't overflow */
    .chat-container {
        right: 16px !important;
        max-width: calc(100vw - 32px);
        width: 90vw !important;
    }
    
    .policies-menu {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        display: flex;
        overflow-x: auto;
    }
    
    .policy-menu-item {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 1rem 1.5rem;
    }
    
    .policy-menu-item.active {
        border-left: none;
        border-bottom-color: #1e40af;
    }
    
    .policy-menu-item:hover {
        border-left: none;
        border-bottom-color: #68cfff;
    }
    
    .policies-content {
        padding: 1.5rem;
    }
    
    .policy-content-section h3 {
        font-size: 1.25rem;
    }
    
    .schedule-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .rates-card {
        padding: 1.5rem;
    }
}

/* Reservation confirmation modal */
.reservation-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1050;
}

.reservation-modal-overlay[hidden] {
    display: none;
}

.reservation-modal {
    background: #f1f5ff;
    border-radius: 28px;
    max-width: 640px;
    width: 100%;
    padding: 48px 56px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(59, 130, 246, 0.18);
}

.reservation-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(148, 163, 184, 0.25);
    color: #0f172a;
    cursor: pointer;
    transition: background 0.2s ease;
}

.reservation-modal__close::before {
    content: '�';
    display: block;
    font-size: 22px;
    line-height: 36px;
    font-weight: 600;
}

.reservation-modal__close:hover {
    background: rgba(148, 163, 184, 0.45);
}

.reservation-modal__icon {
    margin: 0 auto 24px;
    width: 74px;
    height: 74px;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-modal__icon svg {
    width: 36px;
    height: 36px;
    stroke: #2563eb;
    stroke-width: 1.8;
}

.reservation-modal__title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.reservation-modal__subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #1e293b;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.reservation-modal__body {
    color: #1e293b;
    font-size: 15px;
    line-height: 1.65;
}

.reservation-modal__body p {
    margin-bottom: 18px;
}

.reservation-modal__booking-id {
    font-weight: 700;
    color: #1d4ed8;
}

.reservation-modal__highlight {
    font-weight: 600;
    color: #0f172a;
}

.reservation-modal__support a {
    color: #1d4ed8;
    font-weight: 600;
}

.reservation-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.reservation-modal__primary,
.reservation-modal__secondary {
    min-width: 200px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    border: none;
}

.reservation-modal__primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.reservation-modal__primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.32);
}

.reservation-modal__secondary {
    background: #e2e8f0;
    color: #0f172a;
}

.reservation-modal__secondary:hover {
    background: #cbd5f5;
}

@media (max-width: 640px) {
    .reservation-modal {
        padding: 40px 24px 32px;
        border-radius: 20px;
    }

    .reservation-modal__actions {
        flex-direction: column;
    }

    .reservation-modal__primary,
    .reservation-modal__secondary {
        width: 100%;
    }
}

/* ==================================================
   FORGOT PASSWORD IN LOGIN DROPDOWN
   ================================================== */

.form-description {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.otp-timer-text {
    font-size: 12px;
    color: #92400e;
    background: #fef3c7;
    padding: 10px 12px;
    margin: 12px 0;
    border-left: 3px solid #f59e0b;
}

.otp-timer-text strong {
    color: #92400e;
    font-weight: 600;
}

#otpEmailDisplay {
    font-weight: 600;
    color: #1e40af;
}

.back-to-login,
.resend-otp {
    color: #1e40af;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.back-to-login:hover,
.resend-otp:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.success-form {
    text-align: center;
    padding: 20px 0;
}

.success-check {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    font-weight: bold;
}

.success-text {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.success-form .form-description {
    margin-bottom: 20px;
}
