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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-brand h2 {
    color: #2c5aa0;
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .nav-brand h2 {
        font-size: 1.1rem;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .nav-brand h2 {
        font-size: 0.95rem;
        max-width: 160px;
    }
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-link {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-link:hover {
    color: #2c5aa0;
    background: #f0f4ff;
}

.lang-link.active {
    color: #2c5aa0;
    background: #e3f2fd;
}

.lang-separator {
    color: #ccc;
    font-weight: 300;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        justify-content: center;
        padding: 0.5rem 0;
    }
}

/* Hero Section */
.hero {
    margin-top: 70px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.85) 0%, rgba(44, 90, 160, 0.6) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subhead {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.hero-image {
    display: none;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.cta-button.primary:hover {
    background: #1e3f73;
    border-color: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.cta-button.secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.about-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.feature-icon .icon-text {
    font-size: 1.8rem;
    filter: none;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}

.apartment-gallery {
    margin-top: 4rem;
}

.apartment-gallery h3 {
    font-size: 2rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.apartment-gallery > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.extra-rooms-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .extra-rooms-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.extra-room-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.extra-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.extra-room-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .extra-room-card img {
        height: 240px;
    }
}

.extra-room-card h4 {
    font-size: 1.4rem;
    color: #2c5aa0;
    padding: 1.25rem 1.5rem 0.5rem;
    margin: 0;
}

.extra-room-card p {
    color: #666;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Carousel Styling */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 90, 160, 0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.carousel-slide:hover .feature-overlay,
.carousel-slide.show-overlay .feature-overlay {
    opacity: 1;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.overlay-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #2c5aa0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #2c5aa0;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #2c5aa0;
    transform: scale(1.2);
}

/* Carousel Caption */
.carousel-caption {
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0 0 12px 12px;
    font-size: 1.1rem;
    color: #2c5aa0;
    font-weight: 600;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -12px;
}

@media (max-width: 768px) {
    .carousel-caption {
        font-size: 1rem;
        padding: 1rem;
        min-height: 3rem;
    }
}

/* Mobile carousel controls */
@media (max-width: 768px) {
    .carousel-wrapper {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .feature-overlay {
        padding: 1.5rem;
    }
    
    .overlay-content h4 {
        font-size: 1.3rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    /* Show overlay on tap for mobile */
    .carousel-slide.mobile-active .feature-overlay {
        opacity: 1;
    }
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.location-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #555;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 1.2rem;
}

.location-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.location-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Pricing Section */
/* Calendar Section */
.calendar-section {
    padding: 5rem 0;
    background: white;
}

.calendar-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.calendar-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.calendar-wrapper {
    max-width: 1100px;
    margin: 0 auto 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FullCalendar Customization */
.fc {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.fc-toolbar-title {
    font-size: 1.75rem !important;
    color: #2c5aa0 !important;
    font-weight: 600 !important;
}

.fc-button {
    background: #2c5aa0 !important;
    border-color: #2c5aa0 !important;
    text-transform: capitalize !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease !important;
}

.fc-button:hover {
    background: #1e3f73 !important;
    border-color: #1e3f73 !important;
}

.fc-button:disabled {
    opacity: 0.5 !important;
}

.fc-daygrid-day {
    cursor: pointer;
    transition: background 0.2s ease;
}

.fc-daygrid-day:hover {
    background: #f0f4ff;
}

.fc-day-today {
    background: #e3f2fd !important;
}

.fc-event {
    border: none !important;
    padding: 2px 4px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.fc-event:hover {
    filter: brightness(0.9) !important;
}

.fc-event-title {
    font-weight: 500 !important;
}

/* Event colors */
.fc-event.booked {
    background: #e57373 !important;
    color: white !important;
}

.fc-event.pending {
    background: #ffb74d !important;
    color: white !important;
}

.fc-event.available {
    background: #81c784 !important;
    color: white !important;
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
}

.legend-color.available {
    background: #81c784;
}

.legend-color.booked {
    background: #e57373;
}

.legend-color.pending {
    background: #ffb74d;
}

/* Calendar CTA */
.calendar-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f0f4ff;
    border-radius: 12px;
}

.calendar-cta p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-content h3 {
    color: #2c5aa0;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.modal-date-info {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.booking-form .form-group {
    margin-bottom: 1.25rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.booking-form button {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-section {
        padding: 3rem 0;
    }
    
    .calendar-section h2 {
        font-size: 2rem;
    }
    
    .calendar-wrapper {
        padding: 1rem;
    }
    
    .fc-toolbar {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .fc-toolbar-title {
        font-size: 1.25rem !important;
    }
    
    .calendar-legend {
        gap: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}

.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-info {
    margin: 0 auto;
}

.pricing-info h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Pricing Table Styles */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    font-size: 1rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
}

.pricing-table th {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    text-align: left;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
}

.pricing-table td {
    padding: 1.25rem 1.5rem;
    color: #555;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.pricing-table tbody tr {
    transition: background 0.3s ease;
}

.pricing-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.pricing-table tbody tr:hover {
    background: #e3f2fd;
}

.pricing-table tbody tr:last-child {
    background: #f0f4ff;
    font-weight: 600;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
    color: #2c5aa0;
    font-size: 1.05rem;
}

.pricing-table td strong {
    color: #2c5aa0;
    font-weight: 700;
}

/* Responsive pricing table */
@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.875rem;
    }
}

@media (max-width: 600px) {
    /* Stack pricing table as cards on mobile */
    .pricing-table,
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table th,
    .pricing-table td {
        display: block;
        width: 100%;
    }
    
    .pricing-table thead {
        display: none; /* Hide headers on mobile */
    }
    
    .pricing-table tbody tr {
        margin-bottom: 1.5rem;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .pricing-table tbody tr:last-child {
        background: #f0f4ff;
        border: 2px solid #2c5aa0;
    }
    
    .pricing-table td {
        padding: 0.5rem 0;
        border: none;
        text-align: left;
        position: relative;
        padding-left: 45%;
        white-space: normal;
    }
    
    .pricing-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 40%;
        padding-right: 10px;
        font-weight: 600;
        color: #2c5aa0;
        text-align: left;
    }
    
    /* Handle colspan rows (deposit) */
    .pricing-table td[colspan] {
        padding-left: 0;
        text-align: center;
        font-weight: 600;
    }
    
    .pricing-table td[colspan]::before {
        display: none;
    }
}

.included-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.included-features h4 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.included-list {
    list-style: none;
    text-align: left;
}

.included-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2c5aa0;
    border-radius: 6px;
    margin-right: 1rem;
    font-size: 1rem;
    filter: grayscale(100%) brightness(0) invert(1);
    flex-shrink: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Amenities Section */
.amenities-section {
    padding: 5rem 0;
    background: white;
}

.amenities-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.amenity-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.amenity-card.large {
    grid-column: span 1;
}

.amenity-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.amenity-info {
    padding: 1.5rem;
    background: white;
}

.amenity-info h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.amenity-info p {
    color: #666;
    line-height: 1.6;
}

/* Pool Carousel Styling */
.pool-carousel-card {
    position: relative;
}

.pool-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.pool-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.pool-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.pool-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pool-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #2c5aa0;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.pool-carousel-card:hover .pool-carousel-btn {
    opacity: 1;
}

.pool-carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.pool-carousel-btn.prev {
    left: 10px;
}

.pool-carousel-btn.next {
    right: 10px;
}

.pool-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
}

.pool-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #2c5aa0;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pool-dot.active,
.pool-dot:hover {
    background: #2c5aa0;
    transform: scale(1.2);
}

/* Scenery Section */
.scenery-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.scenery-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.scenery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.scenery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.scenery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.scenery-card.featured {
    grid-column: span 2;
}

.scenery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.scenery-card:hover img {
    opacity: 0.9;
}

.scenery-card.featured img {
    height: 400px;
}

.scenery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 90, 160, 0.95), rgba(44, 90, 160, 0.7));
    color: white;
    padding: 1.5rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.scenery-card:hover .scenery-caption {
    background: linear-gradient(to top, rgba(44, 90, 160, 1), rgba(44, 90, 160, 0.85));
    padding: 2rem 1.5rem;
}

.scenery-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.scenery-caption h3::after {
    content: " →";
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scenery-card:hover .scenery-caption h3::after {
    opacity: 1;
}

.scenery-caption p {
    font-size: 1rem;
    color: rgba(255,255,255,0.95);
    margin: 0;
}

.scenery-cta {
    text-align: center;
    margin-top: 3rem;
}

.scenery-cta p {
    font-size: 1.3rem;
    color: #2c5aa0;
    font-weight: 600;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: white;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

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

.diff-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
}

.diff-card h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.diff-card p {
    color: #666;
    line-height: 1.5;
}

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

.real-service h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.real-service p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Seasonal Section (Summer/Winter) */
.seasonal-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.seasonal-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.seasonal-carousels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .seasonal-carousels {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.seasonal-carousel-wrapper h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1.5rem;
}

.seasonal-carousel-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.seasonal-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.summer-slide,
.winter-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.summer-slide img,
.winter-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seasonal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.seasonal-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.summer-dot,
.winter-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #2c5aa0;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.summer-dot.active,
.summer-dot:hover,
.winter-dot.active,
.winter-dot:hover {
    background: #2c5aa0;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .seasonal-carousel-container {
        height: 280px;
    }
    
    .seasonal-caption {
        font-size: 1rem;
        padding: 1rem;
    }
}

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

.contact-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-form-container > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-box {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-success,
.form-error {
    display: none;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

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

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5aa0;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2c5aa0;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-info p,
.footer-contact p {
    color: #ccc;
    line-height: 1.6;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
    font-weight: 500;
}

.footer-cta:hover {
    background: #1e3f73;
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #444, transparent);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1rem;
}

.footer-copyright p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-creator {
    text-align: right;
}

.creator-label {
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 0.25rem 0;
    font-weight: 500;
}

.creator-name {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.creator-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.creator-link {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.creator-link:hover {
    color: #5a8fd0;
    text-decoration: underline;
}

.separator {
    color: #444;
    font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-creator {
        text-align: center;
    }
    
    .creator-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .creator-links {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .separator {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subhead {
        font-size: 1.15rem;
    }
    
    .hero-container {
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .amenity-card.large,
    .pool-carousel-card {
        grid-column: span 1;
    }
    
    .pool-carousel-wrapper {
        height: 250px;
    }
    
    .scenery-grid {
        grid-template-columns: 1fr;
    }
    
    .scenery-card.featured {
        grid-column: span 1;
    }
    
    .scenery-card img,
    .scenery-card.featured img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subhead {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 0 !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states and animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cta-button.primary {
        background: #000;
        border-color: #000;
    }
    
    .cta-button.secondary {
        color: #000;
        border-color: #000;
    }
}