@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&display=swap');

:root {
    --color-primary: #ff5722;
    --color-secondary: #ff9800;
    --color-accent: #e53935;
    --color-text: #333;
    --color-light: #f9f9f9;
    --color-bg: #FFF2EF;
    --bg: #ffffff;
    --left-card-bg: #fff;
    --left-sep: #f4e9e8;
    --dot-un: #ffdcd6;
    /* pale pink dot */
    --dot-active: #ff6b4e;
    /* orange filled dot */
    --item-hover: #fff0ee;
    --item-active-bg: #fff0ef;
    /* slightly peach */
    --chev: #ffb8b0;
    --right-bg: #f8e9e7;
    /* pale peach panel */
    --text: #222;
    --muted: #6b6b6b;
    --shadow: 0 12px 28px rgba(29, 22, 20, 0.06);
    --radius: 16px;
    --radius-big: 22px;
}

body {
    font-family: 'Archivo', sans-serif;
    color: var(--color-text);
}

.header {
    display: flex;
    justify-content: space-between;
}

.navbar-toggler:hover {
    background: transparent;
}

.header-container {
    padding: 0 2rem;
}

/* === SECTION TITLES === */
.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* === HEADER NAVIGATION === */
.nav-link {
    color: var(--color-text);
    font-weight: 500;
    transition: 0.2s;
}

    .nav-link:hover {
        color: var(--color-primary);
    }

/* === SHARED BACKGROUND === */
.bg-section {
    /* used in: news, partner, download app, footer */
    background-color: var(--color-bg);
}

/* === SERVICES SECTION === */
.services .service-item {
    padding: 3rem 0;
}

    .services .service-item:nth-child(odd) {
        background-color: var(--color-bg);
    }

    .services .service-item:nth-child(even) {
        background-color: white;
    }

    .services .service-item .row {
        flex-direction: row;
    }

@media (min-width: 992px) {
    .services .service-item:nth-child(even) .row {
        flex-direction: row-reverse;
    }
}

/* === NEWS SECTION === */
.news-item {
    background-color: transparent;
}

    .news-item:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

    .news-item img {
        border-radius: 6px;
    }

    .news-item h5 {
        font-size: 1rem;
    }

    .news-item .badge {
        font-size: 0.75rem;
    }

/* === TESTIMONIALS === */
.nav-tabs .nav-link {
    border: none;
    color: #000;
    border-radius: 0;
}

    .nav-tabs .nav-link:hover {
        background: transparent;
    }

    .nav-tabs .nav-link.active {
        color: var(--color-primary);
        font-weight: bold;
        border-bottom: 2px solid var(--color-primary);
    }

.testimonial-border {
    border: 1px solid var(--color-primary);
}

.input-group {
    border: 1px solid var(--color-primary);
    border-radius: 5px;
}

.form-control {
    background: transparent;
    border: none;
}

    .form-control::placeholder {
        color: #C7C3C3;
        opacity: 1;
    }

.input-group-text {
    background: transparent;
    border: none;
}

.bg-dark p {
    font-size: 0.938rem;
}

/* styles.css */
#subHeader {
    position: relative;
    transition: all 0.3s ease;
    z-index: 1020;
}

    #subHeader.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    #subHeader nav .nav-link.fw-bold {
        color: var(--color-primary) !important;
        position: relative;
    }

        #subHeader nav .nav-link.fw-bold::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--color-primary);
        }

.menuLabel {
    font-weight: 600;
    font-size: 1.2rem;
}

.no-border-select {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.btn-outline-primary-custom {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    background-color: white;
    color: var(--color-primary);
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    z-index: 1;
    transition: color 0.3s ease;
}

    .btn-outline-primary-custom::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--color-primary);
        transition: left 0.3s ease;
        z-index: -1;
    }

    .btn-outline-primary-custom:hover::before {
        left: 0;
    }

    .btn-outline-primary-custom:hover {
        color: white;
    }


.headerText {
    font-size: 1.95rem;
    font-weight: 800;
}

.serviceText {
    font-size: 1.56rem;
    font-weight: 700;
    color: var(--color-primary);
}


.wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

/* LEFT: card with list */
.left-card {
    width: 460px;
    background: var(--left-card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
    z-index: 2;
    transform: translateX(30px);
}

.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-item {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
    padding: 0 22px;
    cursor: pointer;
    background: transparent;
    transition: background .18s ease, color .15s;
    border-bottom: 1px solid var(--left-sep);
}

    .faq-item:hover {
        background: var(--item-hover);
    }

/* left dot */
.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex: 0 0 18px;
    background: var(--dot-un);
    box-shadow: none;
    transition: transform .12s, background .12s;
}

/* text */
.q {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* chevron */
.chev {
    margin-left: auto;
    transform: translateX(4px);
    color: var(--chev);
    font-size: 20px;
    opacity: 0.9;
}

/* active */
.faq-item.active {
    background: var(--item-active-bg);
    font-weight: 700;
}

    .faq-item.active .q {
        color: #231f20;
        font-weight: 700;
    }

ul.list-unstyled {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

    ul.list-unstyled li {
        display: flex;
        align-items: center;
        gap: 10px;
    }

.faq-item.active .dot {
    background: var(--dot-active);
    transform: scale(1.06);
    box-shadow: 0 0 0 8px rgba(255, 107, 78, 0.06);
}

/* RIGHT: large panel */
.right-panel {
    flex: 1 1 0;
    background: var(--right-bg);
    border-radius: var(--radius-big);
    padding: 34px 48px;
    min-height: 400px;
    box-shadow: 0 6px 18px rgba(29, 22, 20, 0.04);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 1;
    margin-left: -20px;
}

.right-inner {
    max-width: 560px;
    margin-left: 30px;
}

    .right-inner h3 {
        margin: 0 0 14px 0;
        font-size: 18px;
        font-weight: 700;
        color: #262626;
    }

    .right-inner ul {
        margin: 0;
        padding-left: 18px;
        line-height: 1.7;
        color: #2b2b2b;
    }



        /* make list use hyphen style visually like image */
        .right-inner ul li {
            list-style: none;
            position: relative;
            padding-left: 14px;
            margin-bottom: 8px;
        }

            .right-inner ul li:before {
                content: "-";
                position: absolute;
                left: 0;
                top: 0;
                color: #1f1f1f;
                font-weight: 700;
            }

/* small responsive */
@media (max-width:980px) {
    .wrap {
        flex-direction: column;
        gap: 20px;
        padding: 24px
    }

    .left-card {
        width: 100%
    }

    .right-panel {
        padding: 20px
    }
}


@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;700&display=swap');

.contact-section {
    font-family: 'Archivo', sans-serif;
    padding: 40px 0;
    background: #fff;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

.contact-left {
    flex: 1;
    border-right: 1px solid #ccc;
    padding-right: 30px;
}

    .contact-left h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contact-left ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .contact-left li {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.5;
    }

.navbar .nav-link.active {
    color: var(--color-primary);
    /* xanh Bootstrap */
    font-weight: bold;
    border-bottom: 1px solid var(--color-primary);
}

.contact-left i {
    color: #000;
    margin-right: 10px;
}

.contact-right {
    flex: 2;
}

    .contact-right h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
    }

.form-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .form-group label {
        min-width: 120px;
        font-weight: 500;
        white-space: nowrap;
    }

    .form-group select,
    .form-group input,
    .form-group textarea {
        flex: 1;
        padding: 8px;
        border: 1px solid #bbb;
        border-radius: 4px;
        font-size: 14px;
    }

    .form-group textarea {
        resize: vertical;
    }

footer {
    font-size: 1.25rem;
}

label {
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

    label span {
        color: red;
    }

input,
select,
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    resize: vertical;
}

button {
    display: inline-block;
    padding: 8px 30px;
    border: 1px solid red;
    background: transparent;
    color: red;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
}

    button:hover {
        background: red;
        color: #fff;
    }

.contact-map {
    margin-top: 30px;
}

/* === CUSTOM BUTTON === */
.btn-outline-primary-custom {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

    .btn-outline-primary-custom:hover {
        background: var(--color-primary);
        color: #fff;
    }

/* === NAV LINK ACTIVE + HOVER === */
#subHeader nav a {
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

    #subHeader nav a:hover {
        color: var(--color-primary);
        transform: translateY(-2px);
    }

    #subHeader nav a.fw-bold {
        color: var(--color-primary) !important;
        font-weight: 700 !important;
    }

/* === STICKY SUB HEADER === */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    animation: fadeDown 0.3s ease;
}

@keyframes fadeDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* === FEATURE ICON === */
.feature-box .icon {
    height: 48px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.feature-box:hover .icon {
    transform: scale(1.1);
}
