/* ===== index.css v2.1 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f0f0f0;
    font-family: 'Prompt', sans-serif;
    color: #222;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 70px 16px 20px;
    background: url('../img/bg.jpg') center top / cover no-repeat fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}



.hero-cta-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    z-index: 2;
}

.btn-apply {
    display: inline-block;
    width: 100%;
    max-width: 250px;
    background: #e51c23;
    color: #fff;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(82, 82, 82, 0.35);
}

.btn-apply:hover {
    background: #c9171d;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.btn-apply:active {
    transform: translateY(0);
}

.link-check-status {
    display: inline-block;
    margin-top: 14px;
    width: 100%;
    max-width: 250px;
    background: #ffffff;
    color: #e51c23;
    font-family: 'Prompt', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(82, 82, 82, 0.35);
}

.link-check-status:hover {
    color: #e51c23;
    background: rgba(255, 255, 255, 1);
}

/* ===== Trust Section ===== */
.trust-section {
    background: #ffffff;
    padding: 1px 20px 10px;
    text-align: left;
}

.trust-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.trust-title span {
    color: #e51c23;
    font-weight: 700;
}

.trust-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.trust-card {
    flex: 1;
    max-width: 110px;
    background: #f3f0f0;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 10px 8px 5px;
    text-align: center;
}

.trust-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.trust-card-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.45;
}

/* ===== Certification Section ===== */
.cert-section {
    background: #fff;
    text-align: center;
    padding: 10px 20px 15px;
}

.cert-title {
    font-size: 1rem;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 12px;
}

.cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.cert-logos .cert-bot {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.cert-logos .cert-dbd {
    height: 25px;
    width: auto;
    object-fit: contain;
}

/* ===== Footer Section ===== */
.footer-section {
    background: #fff;
    text-align: center;
    padding: 1px 20px 36px;
    border-radius: 0 0 16px 16px;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 400;
    color: #e51c23;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.footer-socials a {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.2s;
}

.footer-socials a:hover {
    transform: scale(1.1);
}

.footer-socials a img {
    width: 30px;
    height: 30px;
    display: block;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: auto !important;
    border-radius: 0 !important;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e51c23;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-phone:hover {
    opacity: 0.8;
    color: #e51c23;
}

.footer-phone svg {
    width: 22px;
    height: 22px;
    fill: #e51c23;
}

.footer-phone img {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 6px;
}

/* ===== Responsive ===== */
@media (max-width: 360px) {
    .hero-cta-overlay {
        padding: 0 16px 20px;
    }

    .btn-apply {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .trust-cards {
        gap: 8px;
    }

    .trust-card {
        padding: 14px 8px 12px;
    }

    .trust-card-icon {
        width: 54px;
        height: 54px;
    }
}

/* ===== Animation ===== */
.page-wrapper {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}