@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #e9621c;
    --secondary-color: #0066b2;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

body {
    background-color: var(--bg-light);
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

ul {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.card {
    background: #ffffff;
    border: none;
}

.btn:active:hover,
.btn:active:focus,
.swal2-cancel:focus {
    animation: button-pop 0s ease-out;
    transform: scale(.96, .96);
}

.update-profile-label {
    padding: 0.1rem 0.5rem 0.3rem;
    background: var(--secondary-color);
    border-radius: 100%;
    cursor: pointer;
}

.btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #d45618;
    border-color: #d45618;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 98, 28, 0.25);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-secondary {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: white !important;
}

.btn-secondary:hover {
    background: #005696;
    border-color: #005696;
    color: white !important;
    transform: translateY(-1px);
}

.btn-tertiary:hover {
    border: 1px solid #042948;
    background: transparent;
    color: #042948;
    padding: 0.6rem;
}

.btn-primary svg,
.update-profile-label svg,
.btn-tertiary svg,
.btn-tertiary svg path {
    fill: white;
    stroke: white;
}

.btn-tertiary:hover svg path,
.btn-tertiary:hover svg {
    stroke: #042948;
    fill: white;
}

.btn-primary:hover svg {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.btn-secondary,
.swal2-cancel,
.btn-secondary:hover,
.swal2-cancel:hover,
.btn-secondary:active,
.swal2-cancel:active {
    background: transparent !important;
    border-color: transparent !important;
    color: #333333 !important;
}


@keyframes button-pop {
    0% {
        transform: scale(.96, .96);
    }

    40% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.form-group {
    margin: 0 0 0.2rem 0;
}

.links {
    color: var(--primary-color);
}

label {
    font-size: 1rem;
    font-weight: 400;
    color: #8d8d8d;
}

.modal {
    --bs-modal-width: 960px;
    margin: 0 auto;
}

.modal-header,
.modal-body {
    padding: 0.4rem 1.1rem;
    border-bottom: 0;
}

.form-control {
    font-size: 0.9rem;
    padding: 10px 14px;
    background: white;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    transition: all 0.2s;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(233, 98, 28, 0.1);
    border-color: var(--primary-color);
    outline: none;
}

.form-control::placeholder {
    color: #cbd5e1;
}

.form-label {
    margin-bottom: 0.2rem;
}

.form-check-input:focus,
button:focus {
    box-shadow: none !important;
}

input[type="checkbox"] {
    accent-color: var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.h-full {
    height: 100vh;
}

.form {
    min-width: 450px;
}

.form p,
p {
    font-size: 0.9rem;
}

.text-danger {
    font-size: 0.8rem;
}

@media screen and (max-width: 560px) {
    .form {
        min-width: 100%;
    }
}


.loading-box {
    z-index: 5;
    position: absolute;
    background-color: rgba(255, 255, 255);
    color: white;
    /* White text */
    padding: 16px 28px;
    /* Some padding */
    border-radius: 0 0 0 8px;
    /* Rounded bottom-left corner */
    font-size: 14px;
    /* Small and cute font size */
    z-index: 9999999;
    /* Make sure it's above other content */
    border-radius: 12px;
    /* Centering */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-overlay {
    display: block;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.5);
}

.nav-pills {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
}

.nav-pills .nav-link {
    color: #333333;
}

.nav-pills .nav-link.active {
    background: #e1e1e1;
    border-color: #e1e1e1;
    color: #333333;
}

.dashed-border {
    border: 1px dashed #e1e1e1;
    border-radius: 10px;
}

.active {
    border-color: var(--primary-color);
}

.badge {
    background-color: #eeffee;
    color: #28bf3a;
    font-weight: 500;
}

.bg-signin p {
    font-weight: 300;
    font-size: 0.8rem;
}

.card-01 {
    border: 2px solid #F3F3F3;
    border-radius: 10px;
}

.payment-type {
    font-weight: 400;
    font-size: 0.8rem;
    color: #585676;
    background: #efeff2;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.provider-label {
    color: #000000;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.footer-links a {
    color: #636363;
}

.border-left {
    border-left: 1px solid #eaeaea;
}

.info-payment {
    color: #8E8E8E;
    font-size: 0.9rem;
    font-weight: 400;
}

.personal-details-table tr td {
    color: #042948;
    font-weight: 600;
}

.profile-sign span {
    color: #6b6b6b;
}


.form-text {
    font-size: 0.7rem;
    color: #7a7a7a;
}

.bg-total-payment {
    background: #8eb8ff;
}

.bg-cancel-payment {
    background: #a4a2fd;
}

.bg-success-payment {
    background: #8eff9d;
}

.bg-invalid-payment {
    background: #ff8ea3;
}

.dropdown-menu li {
    display: flex !important;
    margin: 0;
}

input[type="radio"]:checked+.provider-label.dashed-border {
    border: 1px solid #3AE3F9 !important;
}

.provider-label.dashed-border:hover {
    border: 1px solid #3AE3F9;
}

.btn-google {
    background: #fff;
    border: 1px solid #616161;
    color: #616161;
}

.btn-google svg path {
    color: #616161;
}

.btn-google:hover {
    background: #616161;
    color: #fff;
    border: 1px solid #616161;
}

.btn-google:hover svg path {
    color: #fff;
    fill: #fff;
}

.btn-facebook {
    background: #fff;
    border: 1px solid rgb(34, 34, 250);
    color: rgb(34, 34, 250);
}

.btn-facebook svg path {
    fill: rgb(34, 34, 250);
}

.btn-facebook:hover {
    background: rgb(34, 34, 250);
    color: #fff;
    border: 1px solid rgb(34, 34, 250);
}

.btn-facebook:hover svg path {

    fill: #fff;
}

/* Hide cursor of input type number */
.no-spinners {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
 }

  .no-spinners::-webkit-outer-spin-button,
  .no-spinners::-webkit-inner-spin-button {
     -webkit-appearance: none !important;
     margin: 0 !important;
  }

/* Premium Utilities */
.transition-hover {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.bg-why-us {
    background-color: #fafafa;
}

.shadow-premium {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }

@media (max-width: 768px) {
    .display-5 { font-size: 2.2rem; }
    .hero-banner { text-align: center; }
    .hero-banner .d-flex { justify-content: center; }
}
