* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #0a0f24;
    color: white;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo img {
    width: 45px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #2e82ff;
}

.btn-login-nav {
    background: #0057ff;
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 87, 255, 0.3);
}

.btn-login-nav:hover {
    background: #003fcc;
    box-shadow: 0px 6px 15px rgba(0, 87, 255, 0.5);
}

.hero-section {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at top, #02215c, #000b33);
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
}

.hero-subtitle {
    margin: 15px 0 25px;
    color: #ccc;
}

.btn-primary {
    background: #0057ff;
    padding: 12px 28px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #003fcc;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 28px;
    font-weight: 700;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.facilities-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.facilities-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s ease;
    display: block;
}

.facilities-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: 0.3s ease;
    border-radius: 15px;
}

.facilities-card:hover::after {
    background: rgba(0,0,0,0.35);
}

.facility-label {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.facilities-card:hover .facility-label {
    opacity: 1;
    transform: translateY(0);
}
    .facilities-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s ease;
}


.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.price-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.08);
}

.price {
    font-size: 20px;
    margin: 10px 0 20px;
}

/* BENEFITS */
.benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}

.benefits li {
    margin: 8px 0;
    color: #ddd;
    font-size: 15px;
}

.footer {
    text-align: center;
    padding: 25px;
    color: #aaa;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .facilities-grid,
    .price-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }
}
