@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

/* Main UI Page Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
    min-width: 100vw;
    font-family: 'Roboto';
    overflow: auto;
}

/* Prevent scrollbars on mobile devices */
@media (max-width: 767px) {
    html, body {
        overflow: hidden;
    }
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0099D8;
    z-index: -1;
}

.homepage-card {
    background: rgba(255,255,255,0.97);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.18);
    padding: 3rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
    max-width: 600px;
    width: 95vw;
    margin: 0 auto;
    min-height: 350px;
    max-height: 90vh;
    justify-content: flex-start;
    overflow-y: auto;
}

.homepage-card::-webkit-scrollbar {
    width: 6px;
    background: #fff;
}

.homepage-card::-webkit-scrollbar-thumb {
    background: #b3e5fc;
    border-radius: 6px;
}

.homepage-logo {
    width: 140px;
    max-width: 140px;
    min-width: 70px;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

.homepage-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #0099D8;
    text-align: center;
    width: 100%;
    font-family: inherit;
}

.homepage-desc {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: #293F63;
    margin-bottom: 2.2rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.homepage-step-title {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.3rem;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    text-align: center;
}

.homepage-step-img {
    max-width: 90%;
    height: auto;
    max-height: 32vh;
    border-radius: 0.7rem;
    margin: 1rem auto 1rem auto;
    display: block;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}

.homepage-step-text {
    font-size: clamp(0.92rem, 1.7vw, 1.05rem);
    color: #000000;
    text-align: left;
    word-break: break-word;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.homepage-btn-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    margin-bottom: 2.2rem;
    align-items: center;
}

.homepage-btn {
    width: 100%;
    padding: 1.1rem;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    border-radius: 1rem;
    font-weight: 600;
    background: #0099D8;
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.homepage-btn:hover, .homepage-btn:focus {
    background: #005b8c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(44,62,80,0.12);
}
/* Service Desk Call Button */
/* Service Desk Call Button */
.service-desk-btn {
    display: inline-block;
    background: #0099D8;
    color: #fff !important;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 153, 216, 0.3);
    margin-top: 0.5rem;
    cursor: pointer;
    font-family: inherit;
    border: 2px solid #0099D8;
    outline: none;
}

.service-desk-btn:hover {
    background: #fff;
    color: #0099D8 !important;
    border-color: #0099D8;
    box-shadow: 0 4px 12px rgba(0, 133, 202, 0.4);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.service-desk-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 133, 202, 0.3);
}

.service-desk-btn .phone-icon {
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease;
}

.service-desk-btn:hover .phone-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(169deg) brightness(96%) contrast(101%);
}

/* Footer */
.homepage-footer {
    margin-top: 2.5rem;
    font-size: 1rem;
    color: #293F63;
    text-align: center;
    width: 100%;
    font-family: inherit;
}

.homepage-footer p {
    margin: 0;
    padding: 0.5rem 1rem;
}

.homepage-footer a {
    color: #0099D8;
    text-decoration: underline;
    font-weight: 500;
    font-family: inherit;
}

.homepage-powered {
    margin-top: 1.5rem;
    color: #293F63;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
}

.homepage-btn-group .homepage-btn.choice-chip {
    padding: 1.2rem 2rem;
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    border-radius: 2rem;
    font-weight: 600;
    background: #0099D8;
    color: #fff;
    border: 2px solid #0099D8;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    outline: none;
    box-shadow: 0 2px 8px rgba(44,62,80,0.04);
    margin-bottom: 0;
    user-select: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    min-width: 120px;
    max-width: 280px;
}

.homepage-btn-group .homepage-btn.choice-chip:hover,
.homepage-btn-group .homepage-btn.choice-chip:focus {
    background: #fff;
    color: #0099D8;
    border-color: #0099D8;
    box-shadow: 0 4px 16px rgba(44,62,80,0.12);
}

@media (max-width: 700px) {
    .homepage-card {
        max-width: 98vw;
        padding: 2rem 0.5rem 1.5rem 0.5rem;
        min-width: 0;
    }
    .homepage-title {
        font-size: 2rem;
    }
    .homepage-logo {
        width: 100px;
    }
    .homepage-btn-group .homepage-btn.choice-chip {
        width: 100%;
        min-width: 0;
        font-size: 1rem;
    }
}

/* Extra-small screens (phones < 480px wide) */
@media (max-width: 480px) {
    .homepage-card {
        max-width: 100vw;
        padding: 1.2rem 0.3rem 1rem 0.3rem;
        min-width: 0;
    }
    .homepage-title {
        font-size: 1.4rem;
    }
    .homepage-logo {
        width: 80px;
        margin-bottom: 1rem;
    }
    .homepage-btn-group .homepage-btn.choice-chip {
        width: 100%;
        min-width: 0;
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
}