:root {
    --theme-color: #D03438;
    --theme-color2: #A91F23;
    --theme-color3: #F9EDEE;

    --title-color: #111827;
    --body-color: #5B6472;

    --smoke-color: #F7F8FA;
    --gray-color: #F2F4F7;

    --white-color: #FFFFFF;
    --black-color: #080B12;
}

/*
|--------------------------------------------------------------------------
| RemitGC Frontend Refinements
|--------------------------------------------------------------------------
*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
}

::selection {
    background: #D03438;
    color: #FFFFFF;
}

.header-logo img,
.mobile-logo img,
.about-logo img {
    max-height: 58px;
    width: auto;
}

.header-top {
    background: #0D1117;
}

.header-top,
.header-top a,
.header-top .header-links li {
    color: rgba(255, 255, 255, 0.82);
}

.header-top a:hover {
    color: #FFFFFF;
}

.main-menu > ul > li > a:hover,
.main-menu > ul > li.active > a {
    color: #D03438;
}

.rgc-account-btn {
    white-space: nowrap;
}

.rgc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rgc-hero-badge i {
    font-size: 0.85em;
}

.rgc-tracking-box {
    background: rgba(255, 255, 255, 0.97);
    padding: 26px;
    border-radius: 12px;
    margin-top: 32px;
    max-width: 690px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.rgc-tracking-box .form-control {
    min-height: 56px;
}

.rgc-tracking-box .th-btn {
    min-height: 56px;
}

.rgc-tracking-label {
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 9px;
}

.rgc-feature-icon {
    font-size: 34px;
    color: var(--theme-color);
    line-height: 1;
}

.rgc-stat-caption {
    opacity: 0.8;
}

.rgc-news-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rgc-news-type-news {
    background: rgba(208, 52, 56, 0.1);
    color: #D03438;
}

.rgc-news-type-blog {
    background: rgba(17, 24, 39, 0.08);
    color: #111827;
}

.rgc-portal-cta {
    background:
        linear-gradient(
            135deg,
            rgba(8, 11, 18, 0.98),
            rgba(35, 17, 18, 0.97)
        );
    border-radius: 18px;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.rgc-portal-cta::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -160px;
    top: -190px;
    background: rgba(208, 52, 56, 0.22);
}

.rgc-portal-cta > * {
    position: relative;
    z-index: 1;
}

.rgc-portal-cta h2,
.rgc-portal-cta p {
    color: #FFFFFF;
}

.rgc-portal-cta p {
    opacity: 0.78;
}

.rgc-footer-contact {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.rgc-footer-contact i {
    color: #D03438;
    margin-top: 5px;
}

.rgc-footer-contact a,
.rgc-footer-contact span {
    color: inherit;
}

.rgc-footer-contact a:hover {
    color: #FFFFFF;
}

.rgc-auth-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rgc-language-select {
    min-width: 120px;
}

.rgc-section-intro {
    max-width: 720px;
}

.rgc-company-strip {
    background: #111827;
}

.rgc-company-strip .marquee-card a {
    color: #FFFFFF;
}

.rgc-no-decoration {
    text-decoration: none !important;
}

.rgc-footer-newsletter .form-control {
    min-height: 54px;
}

.rgc-footer-newsletter .th-btn {
    width: 100%;
}

.rgc-message {
    min-height: 20px;
}

@media (max-width: 991.98px) {
    .rgc-portal-cta {
        padding: 40px 28px;
    }

    .rgc-tracking-box {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .rgc-portal-cta {
        padding: 32px 22px;
    }

    .rgc-tracking-box {
        padding: 18px;
    }

    .hero-title {
        font-size: clamp(40px, 12vw, 64px);
    }
}