/* style.css: extracted styles from index.html */
:root {
    --bs-primary: #373643;
    --bs-secondary: #18cb96;
    --bs-light: #f5f5f5;
    --fw-regular: 400;
    --fw-semibold: 600;
    --fw-bold: 700;
}

body {
    background-color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
}

.navbar-custom {
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(55, 54, 67, 0.10);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-brand {
    color: var(--bs-primary) !important;
    font-weight: var(--fw-bold);
    font-size: 1.3rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.navbar-brand .dot {
    width: 12px;
    height: 12px;
    background: var(--bs-secondary);
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
}

.navbar-nav .nav-link {
    color: var(--bs-primary) !important;
    font-weight: var(--fw-semibold);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-left: 1.2rem;
    margin-right: 1.2rem;
    transition: color 0.2s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--bs-secondary) !important;
    text-decoration: none;
}

.navbar-btn:hover {
    background: #13b782;
    color: var(--bs-light);
}

.navbar-toggler {
    border-color: var(--bs-secondary);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(24,203,150,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.hero-section {
    min-height: 80vh;
}

@media screen and (max-width: 967px) {
    .hero-section {
        background-color: var(--bs-light);
    }
}

@media screen and (min-width: 968px) {
    .hero-section {
        min-height: 70vh;
        background: url('./assets/bg_landingpage.jpg') center center/cover no-repeat;
        min-height: 70vh;
        position: relative;
    }
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bs-light) 100%);
}

.hero-section .container,
.hero-section .overlay {
    position: relative;
    z-index: 3;
}

.hero-section .container,
.hero-section .overlay {
    position: relative;
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: var(--bs-primary);
    line-height: 1.1;
}

.hero-section p {
    color: var(--bs-primary);
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    font-weight: var(--fw-regular);
}

.hero-section .btn {
    background: var(--bs-secondary);
    color: var(--bs-primary);
    font-weight: var(--fw-bold);
    border-radius: 2rem;
    padding: 0.7rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(24, 203, 150, 0.12);
    transition: background 0.2s, color 0.2s;
}

.hero-section .btn:hover {
    background: #13b782;
    color: var(--bs-light);
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.0);
    z-index: 1;
}

.global-payment-section {
    background: var(--bs-light);
    padding: 5rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.global-payment-section h2 {
    color: var(--bs-primary);
    font-weight: var(--fw-bold);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.global-payment-section p {
    color: var(--bs-primary);
    opacity: 0.85;
    font-size: 1.25rem;
    max-width: 500px;
}

.why-choose-section {
    background: var(--bs-light);
    padding: 4.5rem 0 4rem 0;
}

.why-choose-section h2 {
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 2.4rem;
}

.why-choose-section h5 {
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.why-choose-section p {
    color: var(--bs-primary);
    opacity: 0.85;
    font-size: 1.05rem;
    margin-top: 1rem;
}

.who-we-serve-section {
    background: var(--bs-light);
    padding: 4.5rem 0 4rem 0;
}

.who-we-serve-section h2 {
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 2.4rem;
}

.who-we-serve-section .card-custom {
    background: #24403a;
    border-radius: 8px;
    padding: 2.2rem 1.5rem;
    height: 100%;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
}

.who-we-serve-section h5 {
    color: var(--bs-secondary);
    font-weight: 700;
}

.who-we-serve-section p {
    color: var(--bs-light);
    opacity: 0.9;
}

.who-we-serve-section .read-more {
    color: var(--bs-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
}

.who-we-serve-section .read-more span {
    font-size: 1.3rem;
    vertical-align: middle;
}

.section-transition {
    line-height: 0;
    position: relative;
    margin-bottom: -1px;
    z-index: 2;
}

.section-transition svg {
    display: block;
    width: 100%;
    height: 90px;
}

.cross-border-section {
    background: var(--bs-light);
    padding: 5rem 0 4rem 0;
    position: relative;
}

.cross-border-section .row {
    align-items: center;
}

.cross-border-title {
    font-size: 2.7rem;
    font-weight: var(--fw-bold);
    color: var(--bs-primary);
    line-height: 1.1;
    margin-bottom: 2.2rem;
    position: relative;
}

.dots-bg {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dots-bg .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bs-secondary);
    opacity: 0.18;
}

.dots-bg .dot:nth-child(2) {
    opacity: 0.35;
}

.dots-bg .dot:nth-child(3) {
    opacity: 0.7;
}

.feature-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .feature-blocks {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .feature-block {
        flex: 1 1 260px;
        min-width: 260px;
        max-width: 100%;
    }
}

.feature-block {
    background: var(--bs-light);
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(55, 54, 67, 0.07);
    padding: 2.2rem 2rem 2rem 2rem;
    margin-bottom: 0.5rem;
    min-width: 260px;
}

.feature-block h5 {
    color: var(--bs-primary);
    font-size: 1.2rem;
    font-weight: var(--fw-bold);
    margin-bottom: 0.7rem;
}

.feature-block p {
    color: var(--bs-primary);
    opacity: 0.85;
    font-size: 1.05rem;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .cross-border-section .row {
        flex-wrap: nowrap;
    }

    .feature-blocks {
        flex-direction: row;
        gap: 2rem;
    }

    .feature-block {
        flex: 1 1 0;
        margin-bottom: 0;
    }
}

.footer {
    background: #fff;
    padding: 2.5rem 0 1.5rem 0;
    color: var(--bs-primary);
    font-size: 1rem;
}

.footer .footer-logo {
    justify-self: center;
    max-width: 120px;
    margin-bottom: 1.2rem;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
}

.footer .footer-links a {
    margin: 0.15rem 0;
}

.footer-content-flex {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
}

@media (min-width: 992px) {
    .footer-content-flex {
        flex-direction: row;
        text-align: left;
        gap: 0;
    }

    .footer-left {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-right {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }
}

.footer .footer-links a {
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: var(--fw-semibold);
    transition: color 0.2s;
}

.footer .footer-links a:hover {
    color: var(--bs-secondary);
}

.footer .copyright {
    font-size: 0.95rem;
    color: var(--bs-primary);
}

.contact-section {
    padding: 4rem 0 3rem 0;
    background: var(--bs-light);
}

.contact-form {
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(55, 54, 67, 0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 520px;
    margin: 0 auto;
}

.contact-form label {
    font-weight: var(--fw-semibold);
    color: var(--bs-primary);
}

.contact-form .form-control {
    border-radius: 0.7rem;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--bs-secondary);
    box-shadow: 0 0 0 0.1rem rgba(24, 203, 150, 0.15);
}

.contact-form button[type="submit"] {
    background: var(--bs-secondary);
    color: var(--bs-primary);
    font-weight: var(--fw-bold);
    border-radius: 2rem;
    padding: 0.7rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(24, 203, 150, 0.12);
    transition: background 0.2s, color 0.2s;
    border: none;
}

.contact-form button[type="submit"]:hover {
    background: #13b782;
    color: var(--bs-light);
}