/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: #303030;
}

.container {
    max-width: 1144px;
}

.text-primary {
    color: #0082C9 !important;
}

.btn-outline-primary {
    border-color: #0082C9;
    color: #0082C9;
}

.btn-outline-primary:hover {
    background-color: #0082C9;
    color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: #E6F6FF !important;
}

.navbar-nav .nav-link {
    color: #303030;
    font-weight: 500;
    transition: color .2s;
}

.navbar-nav .nav-link:hover {
    color: #0082C9;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.active {
    color: #0082c9 !important;
    font-weight: 600 !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 15px 0;
    }

    .navbar-nav {
        margin-bottom: 0;
    }

    .d-flex.gap-2 {
        flex-wrap: wrap;
    }

    .navbar-collapse .btn {
        width: 30%;
        margin-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .navbar-collapse .btn {
        width: 100%;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-color: #0082C9;
    padding: 64px 0;
}

.hero-content p {
    font-weight: 400;
    font-size: 28px;
    line-height: 1.3;
    color: white;
    margin-bottom: 24px;
}

.hero-content .hero-bold {
    font-weight: 700;
    font-size: 44px;
    line-height: 1.1;
}

.circle {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #BEE8FF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #0082c9;
}

.hero-flex {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.hero-flex p {
    margin: 0;
    line-height: 1.3;
    color: white;
    font-size: 15px;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-img-wrap img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-col-text {
        width: 100% !important;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-col-img {
        width: 100% !important;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 30px;
    }

    .hero-content p {
        font-size: 22px;
    }

    .hero-content .hero-bold {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .hero-content p {
        font-size: 18px;
    }

    .hero-content .hero-bold {
        font-size: 26px;
    }
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background-color: #0082c9;
    padding: 70px 0 50px;
    position: relative;
    margin-bottom: 30px;
}

.page-banner h1 {
    color: #fff;
    font-weight: 700;
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 12px;
}

.breadcrumb-item a {
    color: #BEE8FF;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #BEE8FF;
}

/* ===== PRODUCT CATEGORIES ===== */
.product-category {
    background-color: #E6F6FF;
    padding: 70px 0 30px;
}

.category-text p {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #575757;
    margin-bottom: 30px;
}

.boxes,
.product-card-wrap {
    margin-bottom: 30px;
}

.category-card,
.product-card-inner {
    background-color: white;
    border-radius: 9px;
    border: 0.8px solid #BEE8FF;
    overflow: hidden;
}

.offer-badge {
    background-color: #0082c9;
    border-radius: 0 0 5px 5px;
}

.offer-badge p {
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    padding: 5px;
    color: white;
    margin-bottom: 0;
}

.category-img {
    margin: 15px auto;
    display: block;
    max-width: 60%;
}

.category-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    text-align: center;
    margin-top: 8px;
    color: #575757;
}

@media (max-width: 767px) {
    .product-category .row {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
    }

    .product-category .row::-webkit-scrollbar {
        display: none;
    }

    .product-category .row>.col,
    .product-category .row>.col-6 {
        flex: 0 0 auto !important;
        width: 160px !important;
        scroll-snap-align: start;
    }

    .offer-badge p {
        font-size: 11px;
    }
}

/* ===== ABOUT JMD / SECTIONS ===== */
.about-jmd,
.about-section {
    padding: 70px 0;
}

.jmd-title,
.about-title {
    font-weight: 600;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.1;
    text-align: center;
    margin-bottom: 20px;
    color: #0082C9;
}

.jmd-para,
.about-para {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #303030;
    text-align: justify;
}

.jmd-jumbotron {
    background-color: #0082C9;
    border-radius: 10px;
    padding: clamp(24px, 4vw, 40px);
    margin-top: 50px;
}

@media (max-width: 576px) {
    .about-jmd {
        padding: 40px 0 0;
    }

    .jmd-para,
    .about-para {
        text-align: center;
    }

    .about-section .about-para {
        text-align: left;
    }
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 60px 0 20px;
    position: relative;
}

.why-title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 15px;
    color: #0082C9;
}

.why-title span {
    color: #000;
}

.why-desc {
    color: #5c5c5c;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 15px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.why-item p {
    margin: 0;
    font-size: 15px;
}

.why-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: #eaf4fb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0082C9;
    font-size: 20px;
}

.phone-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.phone-img {
    width: 210px;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.bg-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #e6f6ff;
    border-radius: 50%;
    z-index: 1;
    top: 40px;
}

@media (max-width: 991px) {
    .phone-area {
        margin-top: 40px;
        min-height: 250px;
    }

    .bg-circle {
        width: 260px;
        height: 260px;
    }

    .phone-img {
        width: 170px;
    }
}

@media (max-width: 576px) {
    .bg-circle {
        width: 200px;
        height: 200px;
    }

    .phone-img {
        width: 140px;
    }
}

/* ===== PARTNERS ===== */
.our-partners {
    padding: 48px 0;
    background: #fff;
    overflow: hidden;
}

.partners-marquee-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 40px;
    align-items: center;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.partners-marquee-wrap:hover .partners-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners-name {
    max-width: 200px;
    flex-shrink: 0;
    background: #f8fafc;
    border: 1px solid #e8f0f8;
    border-radius: 12px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .2s, transform .2s;
}

.partners-name:hover {
    box-shadow: 0 6px 20px rgba(0, 130, 201, .12);
    transform: translateY(-2px);
}

.partners-name img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: .8;
    transition: filter .2s, opacity .2s;
}

.partners-name:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 576px) {
    .partners-name {
        max-width: 150px !important;
        min-width: 80px !important;
    }
}

/* ===== FOOTER ===== */
.footer-jmd {
    background: #002F4A;
}

.gradient-text {
    background: linear-gradient(to right, #0082C9 0%, #cdeeff 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(22px, 3.5vw, 36px);
    margin-bottom: 0;
    font-weight: 700;
}

.footer-desc {
    font-size: 15px;
    color: #cdeeff;
    text-align: justify;
    line-height: 1.7;
    margin-right: 90px;
}

.footer-addr {
    font-size: 14px;
    color: #cdeeff;
    line-height: 1.8;
}

.footer-col-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #cdeeff;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact-info a,
.footer-contact-info p {
    color: #cdeeff;
    font-size: 14px;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
}

.social {
    width: 30px;
    height: 30px;
    border: 1px solid #1fa2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1fa2ff;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.social:hover {
    background: #1fa2ff;
    color: #fff;
}

.reserved {
    color: #90CAEB;
    font-size: 13px;
    padding: 16px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

@media (max-width: 767px) {
    .footer-desc {
        margin-right: 0;
        text-align: left;
    }
}

/* ===== PAGE SPECIFIC: LOGIN / SIGNUP ===== */
.login-wrapper {
    max-width: 900px;
    margin: 120px auto;
}

.left-card {
    background: #177fb6;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-card {
    background: #E6F6FF;
    padding: 100px 70px;
}

.btn-custom {
    background: #177fb6;
    color: #fff;
    border-radius: 25px;
    padding: 10px 40px;
    width: 50%;
}

@media(min-width:768px) {
    .left-card {
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
    }

    .right-card {
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
    }
}

@media(max-width:767px) {
    .login-wrapper {
        margin: 80px 20px;
    }

    .right-card {
        border-radius: 20px;
        padding: 40px 25px;
    }
}

/* ===== PAGE SPECIFIC: LEADS ===== */
.lead-card {
    background: #e8f4fd;
    border-radius: 16px;
    padding: 22px 28px;
    margin-bottom: 20px;
}

.lead-card .product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a78c2;
    margin-bottom: 14px;
}

.lead-card .info-label {
    font-size: 0.88rem;
    color: #444;
    margin-bottom: 5px;
}

.lead-card .info-value {
    font-size: 0.88rem;
    color: #444;
    margin-bottom: 5px;
}

.lead-card .remark {
    font-size: 0.88rem;
    color: #444;
    margin-top: 40px;
}

.btn-status {
    border: none;
    border-radius: 50px;
    padding: 7px 26px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: default;
    color: #fff;
}

.btn-rejected {
    background: #1a78c2;
    margin-top: 30px;
}

.btn-approved {
    background: #16a34a;
}

.btn-pending {
    background: #d97706;
}

.btn-review {
    background: #7c3aed;
}

.btn-get-help {
    background: none;
    border: none;
    color: #1a78c2;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    text-decoration: none;
    margin-top: 60px;
}

.btn-get-help:hover {
    text-decoration: underline;
    color: #1a78c2;
}

.arrow-circle {
    width: 22px;
    height: 22px;
    border: 2px solid #1a78c2;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #1a78c2;
}

/* ===== PAGE SPECIFIC: OTP ===== */
.otp-section {
    min-height: 80vh;
    padding: 20px;
}

.otp-box {
    padding: 35px;
    max-width: 1000px;
    width: 100%;
}

.otp-input {
    background: #e6f6ff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 6px;
    text-align: center;
}

.otp-btn {
    background: #167db3;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
}

/* ===== PAGE SPECIFIC: PRODUCT INNER ===== */
.loan-title {
            font-weight: 590;
            font-size: 40px;
        }

        .loan-bold {
            font-weight: 110;
            font-size: 40px;
        }

        .loan-card {
            background: #E6F6FF;
            border-radius: 12px;
            border: 1px solid #BEE8FF;
            padding: 30px 30px;
            margin-bottom: 40px;
        }

        .img-fluid {
            border-radius: 50%;
        }

        .logo-circle {
            width: 150px;
            height: 150px;
            background: #e5e5e5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: auto;
        }

        .title {
            color: #0082C9;
            font-size: 24px;
            font-weight: 590;
        }

        .salary {
            font-size: 16px;
        }

        .amount {
            color: #0b6ea8;
            font-weight: 590;
            font-size: 24px;
        }

        .apply-btn {
            background: #0082C9;
            color: #fff;
            border: none;
            padding: 12px 35px;
            border-radius: 30px;
            font-weight: 600;
        }

        .apply-btn:hover {
            background: #095f91;
        }

        .apply-content {
            margin-bottom: 70px;
        }

        .more {
            color: #0b79b7;
            text-decoration: none;
            font-weight: 500;
        }

/* ===== PAGE SPECIFIC: ABOUT PAGE (MISSION, TEAM, VALUES) ===== */
.about-section {
    padding: 70px 0;
}

.about-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 130, 201, 0.12);
}

.about-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.about-title {
    font-weight: 700;
    font-size: clamp(24px, 4vw, 36px);
    color: #0082C9;
    margin-bottom: 16px;
}

.about-para {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-bottom: 14px;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.about-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E6F6FF;
    border: 1px solid #BEE8FF;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 13.5px;
    color: #0082C9;
    font-weight: 500;
}

.about-chip i {
    font-size: 15px;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    background-color: #0082C9;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.mission-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -80px;
    left: -60px;
}

.mission-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #BEE8FF;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mission-title {
    font-weight: 700;
    font-size: clamp(26px, 4vw, 38px);
    color: #fff;
    margin-bottom: 20px;
}

.mission-desc {
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 780px;
    margin: 0 auto 50px;
}

/* Stats */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 10px;
}

.stat-item {
    flex: 1 1 160px;
    padding: 20px 16px;
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: #BEE8FF;
    font-weight: 500;
}

@media (max-width: 576px) {
    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 70px 0;
    background-color: #fff;
}

.section-title {
    font-weight: 700;
    font-size: clamp(24px, 4vw, 36px);
    color: #303030;
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: #777;
    font-size: 15px;
    margin-bottom: 48px;
}

.team-card {
    background: #fff;
    border: 1px solid #E6F6FF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 130, 201, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    text-align: center;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(0, 130, 201, 0.16);
}

.team-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #E6F6FF;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.team-body {
    padding: 18px 16px 20px;
}

.team-name {
    font-size: 16px;
    font-weight: 700;
    color: #303030;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: #0082C9;
    font-weight: 500;
    margin-bottom: 14px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-social-link {
    width: 30px;
    height: 30px;
    border: 1px solid #BEE8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0082C9;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.team-social-link:hover {
    background: #0082C9;
    color: #fff;
    border-color: #0082C9;
}

/* ===== VALUES SECTION ===== */
.values-section {
    background: #E6F6FF;
    padding: 70px 0;
}

.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 24px;
    border: 1px solid #BEE8FF;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 130, 201, 0.12);
}

.value-icon {
    width: 52px;
    height: 52px;
    background: #E6F6FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0082C9;
    font-size: 24px;
    margin-bottom: 16px;
}

.value-title {
    font-size: 16px;
    font-weight: 700;
    color: #303030;
    margin-bottom: 8px;
}

.value-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===== SIGNIN PAGE ===== */
.login-wrapper {
    max-width: 900px;
    margin: 120px auto;
}

/* Left Section */
.left-card {
    background: #177fb6;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Section */
.right-card {
    background: #E6F6FF;
    padding: 100px 70px;
}

/* Rounded Corners */
@media(min-width:768px) {
    .left-card {
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
    }

    .right-card {
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
    }
}

/* Button */
.btn-custom {
    background: #177fb6;
    color: #fff;
    border-radius: 25px;
    padding: 10px 40px;
    width: 50%;
}

.btn-custom:hover {
    background: #126a97;
    color: #fff;
}

/* Heading Color */
.text-primary {
    color: #0082C9 !important;
}

/* Mobile View */
@media(max-width:767px) {

    .login-wrapper {
        margin: 80px 20px;
    }

    .right-card {
        border-radius: 20px;
        padding: 40px 25px;
    }

}


/* ===== OTP PAGES ===== */
.otp-section {
    min-height: 80vh;
    padding: 20px;
}

.otp-box {
    padding: 35px;
    max-width: 1000px;
    width: 100%;
}

.otp-title {
    color: #177bb5;
    font-weight: 600;
    margin-bottom: 10px;
}

.otp-sub {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.otp-input {
    background: #e6f6ff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 6px;
    text-align: center;
}

.otp-btn {
    background: #167db3;
    color: #fff;
    padding: 14px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 18px;
}

.otp-btn:hover {
    background: #167db3;
    color: #fff;
}

.otp-help {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.resend-btn {
    background: #cfe4f3;
    color: #6c8ea5;
    padding: 14px;
    border-radius: 8px;
    margin-top: 10px;
}

.edit-number {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

@media(max-width:576px) {
    .otp-box {
        padding: 25px 18px;
    }

    .otp-input {
        font-size: 20px;
        padding: 16px;
    }
}

.form-box {
    max-width: 1000px;
    width: 100%;
    padding: 40px;
    margin-top: 40px;
    background: #fff;
    border-radius: 14px;
}

.title-top {
    color: #0082C9;
    font-weight: 700;
    font-size: clamp(20px, 3vw, 26px);
}

.title-top span {
    display: block;
    font-size: clamp(18px, 3vw, 22px);
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.custom-input {
    background: #e6f6ff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
}

.custom-input:focus {
    box-shadow: none;
    border: 1px solid #0082C9;
    background: #e6f6ff;
}

.send-btn {
    background: #0082C9;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
}

.send-btn:hover {
    background: #0069a6;
    color: white;
}

@media (max-width: 991px) {
    .form-box {
        padding: 22px 0;
        margin-top: 20px;
    }
}

@media (min-width: 992px) {
    .form-box {
        padding: 50px;
    }
}

/* ===== POLICY & LEGAL PAGES ===== */
.policy-section,
.terms-section,
.privacy-section,
.policy-section-wrapper {
    /* padding: 20px 0; */
    background-color: #fff;
    margin-bottom: 32px;
}

.toc-card {
    background: #E6F6FF;
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 20px;
}

.toc-title {
    font-weight: 700;
    font-size: 15px;
    color: #0082C9;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 4px;
}

.toc-list a {
    color: #444;
    text-decoration: none;
    font-size: 13.5px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    padding: 5px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.toc-list a:hover {
    background: #0082C9;
    color: #fff;
}

.toc-list a .num {
    font-weight: 700;
    color: #0082C9;
    font-size: 12px;
    min-width: 18px;
    transition: color 0.2s;
}

.toc-list a:hover .num {
    color: #BEE8FF;
}

@media (max-width: 991px) {
    .toc-card {
        position: static;
        margin-bottom: 28px;
    }
}

.policy-card,
.terms-card {
    background: #fff;
    border: 1px solid #BEE8FF;
    border-radius: 12px;
    padding: 40px 44px;
    box-shadow: 0 2px 20px rgba(0, 130, 201, 0.07);
}

@media (max-width: 767px) {

    .policy-card,
    .terms-card {
        padding: 24px 18px;
    }
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E6F6FF;
    color: #0082C9;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.intro-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #E6F6FF;
}

.policy-section-block,
.terms-section-block,
.policy-section-wrapper {
    margin-bottom: 34px;
}

.policy-section-title,
.terms-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.section-title {
    font-weight: 700;
    font-size: clamp(24px, 4vw, 36px);
    color: #303030;
    text-align: center;
    margin-bottom: 8px;
}

.section-number {
    border: 1px solid #444;
    color: #444;
    font-weight: 700;
    font-size: 14px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-section-title h2,
.terms-section-title h2,
.section-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: #444;
    margin: 0;
}

.policy-list,
.terms-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.policy-list li,
.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}

.policy-list li::before,
.terms-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #444;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 9px;
}

.policy-notice,
.terms-notice {
    background: #E6F6FF;
    border-left: 4px solid #0082C9;
    border-radius: 0 8px 8px 0;
    padding: 13px 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #0082C9;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
}

.terms-warning {
    background: #FFF8E6;
    border-left: 4px solid #E5A200;
    border-radius: 0 8px 8px 0;
    padding: 13px 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #7a5500;
    font-weight: 500;
    margin-top: 14px;
}

.not-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.not-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #BEE8FF;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13.5px;
    color: #444;
    font-weight: 500;
}

.contact-box {
    background: #0082C9;
    border-radius: 12px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-box .c-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-box .c-info p {
    margin: 0;
    color: #BEE8FF;
    font-size: 13px;
}

.contact-box .c-info a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.section-divider {
    border: none;
    border-top: 1px solid #E6F6FF;
    margin: 32px 0;
}

.contact-section {
    padding: 60px 0 70px;
}

/* Info */
.info-title {
    font-size: 21px;
    font-weight: 700;
    color: #0082C9;
    margin-bottom: 4px;
}

.info-sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 28px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: #E6F6FF;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0082C9;
    font-size: 17px;
}

.info-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}

.info-value {
    font-size: 14.5px;
    color: #303030;
    line-height: 1.6;
    margin: 0;
}

.info-value a {
    color: #0082C9;
    text-decoration: none;
}

.info-value a:hover {
    text-decoration: underline;
}

.divider {
    border-color: #E6F6FF;
    margin: 24px 0;
}

.follow-label {
    font-size: 12px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.social-row {
    display: flex;
    gap: 8px;
}

.s-link {
    width: 34px;
    height: 34px;
    border: 1px solid #BEE8FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0082C9;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.s-link:hover {
    background: #0082C9;
    color: #fff;
    border-color: #0082C9;
}

/* Map */
.map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E6F6FF;
    margin-top: 28px;
}

.map-wrap iframe {
    width: 100%;
    height: 240px;
    border: none;
    display: block;
}

/* Form */
.form-card {
    background: #F8FDFF;
    border: 1px solid #BEE8FF;
    border-radius: 12px;
    padding: 34px 30px;
}

@media (max-width: 576px) {
    .form-card {
        padding: 22px 16px;
    }
}

.form-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #303030;
    margin-bottom: 4px;
}

.form-card-sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 22px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

.form-control,
.form-select {
    border: 1px solid #D5EDFA;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 13px;
    background: #fff;
    color: #303030;
    transition: border-color .2s, box-shadow .2s;
}

.form-control:focus,
.form-select:focus {
    border-color: #0082C9;
    box-shadow: 0 0 0 3px rgba(0, 130, 201, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    background: #0082C9;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 24px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background .2s;
}

.btn-send:hover {
    background: #006aa3;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 10px;
}

.sub-text{
    color: #BEE8FF;
    font-size: 15px;
    margin: 0;
}