body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
}

.bg-image {
    /* A beautiful Singapore skyline from Unsplash */
    background-image: url("https://images.unsplash.com/photo-1525625293386-3f8f99389edd?q=80&w=2652&auto=format&fit=crop");
    height: 100%; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    color: white;
    text-align: center;
    max-width: 650px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1.5s ease-out;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
    display: inline-block;
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: capitalize;
    background: linear-gradient(to right, #ffffff, #cfcfcf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #d1d1d1;
    line-height: 1.6;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
}

.contact-button:hover {
    background-color: white;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-button i {
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Simple fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .glass-card {
        padding: 2.5rem 1.25rem;
        width: 92%;
    }
    .title {
        font-size: 2.2rem;
    }
    .logo {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    .contact-button {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        display: flex;
        justify-content: center;
        white-space: nowrap;
    }
    .contact-button i {
        margin-right: 8px;
    }
}
