/* =======================================================
   Registration Page CSS Template
   Author: [JK / AVAS]
   Last Updated: [09/25/25]
======================================================= */

.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.3s ease-in-out;
}

body {
    background-color: #ffffff;
    background-image: radial-gradient(farthest-corner ellipse at 50% 0%, #ffffff 20%, #dee5ea 100%);
    background-attachment: fixed;
    background-size: cover;
    background-position: top center;
}

.container, .feature-bar-container {
    max-width: 100%;
    padding: 0 40px;
}

.get-started-container {
    padding-top: 3rem !important;
    padding-bottom: 1.5rem !important;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    /* Styles for mobile phones in portrait mode */
    .container {
        padding: 0 20px;
    }

    .feature-bar-container {
        padding: 0 60px;
    }
}

a {
    color: #ffffff;
    text-decoration: none;
}

.logo-adj {
    padding-right: 0.5rem !important;
    padding-left: 1.5rem !important;
}

.hero-container {
    padding-top: 10rem !important;
    padding-bottom: 8rem !important;
    position: relative;
    z-index: 1;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    /* Styles for mobile phones in portrait mode */
    .hero-container {
        padding-top: 7rem !important;
        padding-bottom: 6rem !important;
    }
}

.hero-bg {
    position: relative;
    background-image: url('registration-hero-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    z-index: 1;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8); /* Darkness level (0.6 = 60% black) */
    z-index: -1;
}

.feature-bar {
    margin-top: -40px; /* Adjust this value for more/less overlap */
    position: relative;
    z-index: 2;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    border-radius: 20px;
    box-shadow: 2px 2px 40px #c4c4c4;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    /* Styles for mobile phones in portrait mode */
    .feature-bar {
        padding-bottom: 4rem !important;
    }
}

.pro-bar {
    margin: 40px 20px;
    border-radius: 20px;
    box-shadow: 2px 2px 40px #c4c4c4;
    background-color: #607d8b;
    color: #ffffff;
    padding-top: 3rem !important;
    padding-bottom: 1.5rem !important;
}

.vip-bar {
    margin: 80px 20px 20px 20px;
    border-radius: 20px;
    box-shadow: 2px 2px 40px #c4c4c4;
    background-color: #212529;
    color: #ffffff;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.feature-icon {
    color: #212529;
    opacity: 1;
    font-size: 20px;
    width: 12px;
}

.feature-title {
    color: #212529;
    font-weight: 800;
    text-align: left;
    font-size: 15px;
}

.feature-sub-title {
    color: #607d8b;
    text-align: left;
    font-size: 13px;
    margin-bottom: 0;
}

.feature-border {
    border-left: solid #607d8b 2px;
    padding-left: 20px;
}

.copyright-notice {
    font-size: 10px;
}

.btn-slate {
    background-color: #607d8b;
    color: #fff;
    border: none;
}

.btn-slate:hover,
.btn-slate:focus {
    background-color: #546e7a; /* Slightly darker on hover */
    color: #fff;
    text-decoration: none;
}

#map-container {
    position: relative;
    width: 100% !important;
    max-width: 1100px;
    height: auto;
    max-height: 380px;
    margin: auto;
    padding-top: 0;
    line-height: 1;
}

@media screen and (orientation: portrait) and (max-width: 767px) {
    /* Styles for mobile phones in portrait mode */
    #map-container {
        height: 180px !important;
    }
}

#map-container svg {
    display: block;
    margin: 0 auto;
    height: 100%;
    width: 100%;
}

.datamaps-hoverover {
    font-size: 14px;
    background: #ffffff;
    color: #212529;
    padding: 5px;
    border-radius: 5px;
}

#vip-rewards .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.vip-table {
    font-size: 12px;
}

.vip-table>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: none;
}

.faq-container {
    margin-left: 20px;
    margin-right: 20px;
}

.accordion {
    border-radius: 20px;
    overflow: hidden; /* Keeps child edges clipped to radius */
    border: 1px solid #ccc; /* Optional: visible border */
}

.accordion-item {
    border-radius: 0; /* Reset individual drawer rounding */
}

.accordion-item:first-child {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.accordion-item:last-child {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}