* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Facilities Section */
.facilities {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2a7e33;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.facility-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.facility-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Book Now Section */
.book-now-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(45deg, #2c5aa0, #4a90e2);
}

.book-now-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
}

.book-now-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.6);
}

/* Location Section */
/* Location Section */
        .location {
            padding: 5rem 0;
            background: white;
        }

        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .location-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .location-card:hover {
            transform: translateY(-5px);
        }

        .map-container {
            height: 300px;
            width: 100%;
            position: relative;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Book Now Button Overlay on Map */
        .book-now-overlay {
            position: absolute;
            bottom: 15px;
            right: 15px;
            z-index: 10;
        }

        .book-now-btn {
            background: linear-gradient(135deg, #4a90e2 0%, #2c5aa0 100%);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .book-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
            background: linear-gradient(135deg, #5ba0f2 0%, #3d6bb0 100%);
        }

        .book-now-btn:active {
            transform: translateY(0);
        }

        .book-now-btn i {
            font-size: 0.9rem;
        }

        .location-info {
            padding: 2rem;
            text-align: center;
        }

        .location-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c5aa0;
        }

        .location-info p {
            color: #666;
            line-height: 1.8;
        }

        /* Alternative: Button below location info */
        .location-actions {
            padding: 0 2rem 2rem 2rem;
            text-align: center;
        }

        .book-now-btn-alt {
            background: linear-gradient(135deg, #2a7e33 0%, #2c5aa0 100%);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 1rem;
        }

        .book-now-btn-alt:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
            background: linear-gradient(135deg, #5ba0f2 0%, #3d6bb0 100%);
        }

        .book-now-btn-alt:active {
            transform: translateY(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .location-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .location-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

            .book-now-overlay {
                bottom: 10px;
                right: 10px;
            }

            .book-now-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .book-now-btn-alt {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .book-now-btn {
                padding: 8px 15px;
                font-size: 0.8rem;
            }

            .book-now-btn-alt {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }