:root {
            --primary: #073b8f;
            --primary-dark: #062e70;
            --blue: #0d5bc7;
            --light-blue: #eef6ff;
            --text: #5c6878;
            --dark: #10213f;
            --border: #e2e8f0;
            --red: #e31d2b;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "Poppins", sans-serif;
            color: var(--dark);
            background: #fff;
        }

        a {
            text-decoration: none;
        }

        /* =========================
           TOP BAR
        ========================= */

        .topbar {
            background: var(--primary-dark);
            color: #fff;
            font-size: 12px;
            padding: 9px 0;
        }

        .topbar a {
            color: #fff;
        }

        .topbar i {
            margin-right: 5px;
        }

        /* =========================
           HEADER
        ========================= */

        .main-header {
            background: #fff;
            border-bottom: 1px solid #edf1f6;
            box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            padding: 12px 0;
        }

        .brand-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-wrap img {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }

        .brand-name {
            color: var(--primary);
            font-size: 19px;
            line-height: 1.1;
            font-weight: 800;
        }

        .brand-name span {
            color: var(--red);
        }

        .brand-tagline {
            color: #7d8795;
            font-size: 9px;
            letter-spacing: .5px;
            margin-top: 3px;
        }

        .nav-link {
            color: #18263c !important;
            font-size: 13px;
            font-weight: 600;
            margin: 0 7px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary) !important;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--primary);
            color: #fff;
            padding: 10px 17px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
        }

        .contact-btn:hover {
            color: #fff;
            background: var(--primary-dark);
        }

        /* =========================
           PAGE BANNER
        ========================= */

        .page-banner {
            min-height: 310px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;

            background:
                linear-gradient(90deg,
                    rgba(4, 40, 94, .94),
                    rgba(4, 40, 94, .72)),
                url("https://images.unsplash.com/photo-1584982751601-97dcc096659c?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
        }

        .page-banner-content {
            color: #fff;
        }

        .page-eyebrow {
            color: #bcd8ff;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 11px;
            font-weight: 700;
        }

        .page-banner h1 {
            font-size: 45px;
            font-weight: 800;
            margin: 8px 0 12px;
        }

        .page-banner p {
            max-width: 650px;
            color: #dce9fa;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .breadcrumb-custom {
            display: flex;
            gap: 10px;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 12px;
        }

        .breadcrumb-custom a {
            color: #fff;
        }

        .breadcrumb-custom .active {
            color: #bdd1ed;
        }

        /* =========================
           CONTACT SECTION
        ========================= */

        .contact-section {
            padding: 80px 0;
            background: #fff;
        }

        .section-eyebrow {
            color: var(--primary);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .section-title {
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .section-description {
            color: var(--text);
            font-size: 13px;
            line-height: 1.8;
            max-width: 700px;
            margin-bottom: 35px;
        }

        /* =========================
           LEFT CONTACT CARD
        ========================= */

        .contact-info-card {
            height: 100%;
            background:
                linear-gradient(145deg, #073b8f, #062e70);
            border-radius: 8px;
            padding: 35px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .contact-info-card::after {
            content: "";
            position: absolute;
            width: 190px;
            height: 190px;
            border-radius: 50%;
            right: -80px;
            bottom: -90px;
            border: 35px solid rgba(255, 255, 255, .06);
        }

        .contact-info-card h3 {
            font-size: 25px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .contact-info-card .intro {
            color: #d7e6fa;
            font-size: 12px;
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .info-item {
            display: flex;
            gap: 14px;
            margin-bottom: 22px;
            position: relative;
            z-index: 2;
        }

        .info-icon {
            width: 40px;
            min-width: 40px;
            height: 40px;
            border-radius: 5px;
            background: rgba(255, 255, 255, .12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .info-item h5 {
            margin: 0 0 4px;
            font-size: 12px;
            font-weight: 700;
        }

        .info-item p,
        .info-item a {
            color: #d5e3f7;
            font-size: 11px;
            line-height: 1.7;
            margin: 0;
        }

        .info-item a:hover {
            color: #fff;
        }

        .rm-map-btn {
            border: 1px solid rgba(255, 255, 255, .5);
            background: #fff;
            color: var(--primary);
            border-radius: 4px;
            padding: 11px 18px;
            font-size: 11px;
            font-weight: 800;
            cursor: pointer;
            margin: 3px 0 25px 54px;
            position: relative;
            z-index: 3;
        }

        .rm-map-btn:hover {
            background: #eaf3ff;
        }

        /* =========================
           RIGHT FORM
        ========================= */

        .contact-form-card {
            height: 100%;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 35px;
            background: #fff;
            box-shadow: 0 12px 35px rgba(13, 44, 82, .07);
        }

        .contact-form-card h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 7px;
        }

        .form-intro {
            color: var(--text);
            font-size: 12px;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 17px;
        }

        .form-group label {
            display: block;
            font-size: 11px;
            color: #344258;
            font-weight: 600;
            margin-bottom: 7px;
        }

        .form-control-custom {
            width: 100%;
            border: 1px solid var(--border);
            border-radius: 4px;
            min-height: 45px;
            padding: 10px 13px;
            outline: none;
            font-family: inherit;
            font-size: 12px;
            color: var(--dark);
            transition: .2s;
        }

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

        .form-control-custom:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(7, 59, 143, .08);
        }

        .rm-submit-btn {
            width: 100%;
            border: 0;
            background: var(--primary);
            color: #fff;
            border-radius: 4px;
            padding: 13px 20px;
            font-size: 12px;
            font-weight: 800;
            cursor: pointer;
            transition: .25s;
        }

        .rm-submit-btn:hover {
            background: var(--primary-dark);
        }

        /* =========================
           QUICK CONTACT
        ========================= */

        .quick-contact {
            padding: 0 0 80px;
        }

        .quick-card {
            height: 100%;
            border: 1px solid var(--border);
            border-radius: 7px;
            padding: 22px;
            display: flex;
            align-items: center;
            gap: 15px;
            background: #fff;
            transition: .25s;
        }

        .quick-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(13, 44, 82, .08);
        }

        .quick-icon {
            width: 45px;
            height: 45px;
            min-width: 45px;
            border-radius: 5px;
            background: var(--light-blue);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
        }

        .quick-card h5 {
            font-size: 12px;
            font-weight: 800;
            margin: 0 0 4px;
        }

        .quick-card p,
        .quick-card a {
            color: var(--text);
            font-size: 11px;
            margin: 0;
            line-height: 1.6;
        }

        .quick-card a:hover {
            color: var(--primary);
        }

        /* =========================
           FOOTER
        ========================= */

        .footer {
            background: #061b43;
            color: #fff;
            padding: 55px 0 0;
        }

        .footer-logo {
            width: 125px;
            height: auto;
            object-fit: contain;
            margin-bottom: 14px;
        }

        .footer p,
        .footer li,
        .footer a {
            color: #b9c8df;
            font-size: 12px;
            line-height: 1.8;
        }

        .footer h4 {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 17px;
        }

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

        .footer li {
            margin-bottom: 6px;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .12);
            margin-top: 35px;
            padding: 17px 0;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 11px;
        }

        /* =========================
           WHATSAPP
        ========================= */

        .whatsapp {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px;
            z-index: 999;
            box-shadow: 0 7px 20px rgba(0, 0, 0, .2);
            transition: .25s;
        }

        .whatsapp:hover {
            color: #fff;
            transform: translateY(-3px);
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 991px) {

            .contact-info-card {
                margin-bottom: 25px;
            }

            .nav-link {
                margin: 3px 0;
            }

            .contact-btn {
                margin-top: 10px;
                display: inline-flex;
            }
        }

        @media (max-width: 767px) {

            .topbar {
                display: none;
            }

            .page-banner {
                min-height: 255px;
            }

            .page-banner h1 {
                font-size: 33px;
            }

            .page-banner p {
                font-size: 12px;
            }

            .contact-section {
                padding: 55px 0;
            }

            .section-title {
                font-size: 28px;
            }

            .contact-info-card,
            .contact-form-card {
                padding: 25px 20px;
            }

            .rm-map-btn {
                margin-left: 0;
            }

            .quick-contact {
                padding-bottom: 55px;
            }
        }
