/* ==========================================================================
   REMITnGO Theme — Design Tokens + Components + Layouts
   All values extracted from Elementor JSON widget settings.
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    /* Colors */
    --color-primary: #0072BC;
    --color-accent: #E6A713;
    --color-jonquil: #FFCB05;
    --color-sapphire: #0054A6;
    --color-cyan: #00B7C5;
    --color-keppel: #00A57C;
    --color-magenta: #E91E76;
    --color-mauveine: #8B3FA0;
    --color-text: #222222;
    --color-text-grey: #222222;
    --color-secondary: #54595F;
    --color-white: #FFFFFF;
    --color-light-blue: #DAF0FF;
    --color-muted-blue: #92CAEC;
    --color-border-blue: #5DAEE4;

    /* Typography */
    --font-heading: 'Libre Franklin', sans-serif;
    --font-subheading: 'Lato', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-legal: 'Roboto', sans-serif;

    /* Layout */
    --max-width: 1200px;
    --header-height: 70px;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-family: var(--font-subheading);
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-family: var(--font-subheading);
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

/* ---------- Utility ---------- */
.boxed-content {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   HEADER
   Extracted from elementor_header.json
   Desktop: blue bg, boxed 1200px, row, logo left + nav + button right
   Mobile: blue bg, full width, logo + hamburger
   ========================================================================== */

.site-header {
    background-color: var(--color-primary);
    position: relative;
    z-index: 100;
}

/* --- Desktop Header --- */
.header-desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    min-height: var(--header-height);
}

.header-logo {
    flex: 0 0 auto;
    width: 240px;
}

.header-logo img {
    width: 240px;
    height: auto;
}

.header-right {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 32px;
}

/* Send Money button — Elementor: bg #E6A713, border-radius 20px, padding 12px 20px */
.header-cta {
    flex: 0 0 auto;
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 20px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.header-cta:hover {
    opacity: 0.85;
    color: var(--color-white);
}

/* Nav menu — Elementor: Lato 700, capitalize, white, hover gold, gap 32px */
.header-nav {
    flex: 0 1 auto;
}

.header-nav .header-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.header-nav .header-menu-item > a {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 15px;
    text-transform: capitalize;
    color: var(--color-white);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    white-space: nowrap;
}

.header-nav .header-menu-item > a:hover,
.header-nav .header-menu-item.current-menu-item > a,
.header-nav .header-menu-item.current-menu-ancestor > a {
    color: var(--color-accent);
}

.dropdown-arrow {
    width: 10px;
    height: 6px;
    transition: transform 0.2s ease;
}

/* Dropdown — Elementor: bg sapphire, border-radius 20px, padding 20px, width 232px, gap 20px from menu */
.header-menu-item {
    position: relative;
}

.header-submenu {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background-color: var(--color-sapphire);
    border-radius: 20px;
    padding: 20px;
    list-style: none;
    min-width: 232px;
    z-index: 200;
}

.header-menu-item:hover > .header-submenu {
    display: block;
}

.header-menu-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.header-submenu .header-menu-item > a {
    font-family: var(--font-subheading);
    font-weight: 700;
    color: var(--color-white);
    padding: 8px 0;
    display: block;
    white-space: nowrap;
}

.header-submenu .header-menu-item > a:hover {
    color: var(--color-accent);
}

/* --- Mobile Header --- */
.header-mobile {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.header-mobile-logo {
    flex: 0 0 auto;
}

.header-mobile-logo img {
    width: 200px;
    height: auto;
}

/* Hamburger */
.header-hamburger {
    flex: 0 0 auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.header-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    z-index: 99;
    padding: 80px 20px 40px;
    overflow-y: auto;
}

.mobile-nav-overlay.is-open {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-overlay .mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.mobile-nav-overlay .mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav-overlay .mobile-menu li a {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
    display: block;
    padding: 16px 0;
    text-transform: capitalize;
}

.mobile-nav-overlay .mobile-menu li a:hover {
    color: var(--color-accent);
}

.mobile-nav-overlay .mobile-submenu {
    list-style: none;
    padding: 0 0 8px 0;
}

.mobile-nav-overlay .mobile-submenu li {
    border-bottom: none;
}

.mobile-nav-overlay .mobile-submenu li a {
    font-size: 16px;
    padding: 10px 0;
    color: var(--color-light-blue);
}

.mobile-nav-cta {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 20px;
    margin-top: 24px;
}

/* --- Responsive header --- */
@media (max-width: 1024px) {
    .header-desktop {
        display: none;
    }
    .header-mobile {
        display: flex;
    }
}

@media (min-width: 1025px) {
    .header-mobile {
        display: none;
    }
    .mobile-nav-overlay {
        display: none !important;
    }
}

/* ==========================================================================
   FOOTER
   Extracted from elementor_footer.json
   Gold strip → Blue section (logo + columns + social + regulatory)
   ========================================================================== */

/* --- Gold strip (thin) --- */
.golden-strip-thin {
    background-color: var(--color-accent);
    height: 24px;
}

@media (max-width: 767px) {
    .golden-strip-thin {
        height: 12px;
    }
}

/* --- Footer main --- */
.site-footer {
    background-color: var(--color-primary);
    padding: 40px 0 120px 0;
}

@media (max-width: 1024px) {
    .site-footer {
        padding: 40px 20px 120px 20px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 40px 20px 80px 20px;
    }
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Top row: logo + columns, border-bottom */
.footer-top {
    display: flex;
    flex-direction: row;
    padding: 20px 0 60px 0;
    border-bottom: 1px solid var(--color-border-blue);
    border-radius: 0 0 2px 0;
    gap: 40px;
}

@media (max-width: 767px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
}

/* Footer logo column */
.footer-brand {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (max-width: 767px) {
    .footer-brand {
        align-items: center;
        order: 2;
    }
}

.footer-logo {
    width: 280px;
    padding-bottom: 12px;
}

.footer-logo img {
    width: 280px;
    height: auto;
}

.footer-app-links {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.footer-app-links a {
    display: block;
    width: 160px;
    height: 60px;
}

.footer-app-links a img {
    width: 160px;
    height: 60px;
    object-fit: contain;
    object-position: center left;
}

@media (max-width: 767px) {
    .footer-app-links a img {
        object-position: center center;
    }
}

/* Footer link columns */
.footer-columns {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

@media (max-width: 767px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

@media (max-width: 767px) {
    .footer-col {
        align-items: center;
        gap: 16px;
    }
}

/* Elementor: Libre Franklin 14px 700, #FFCB05, margin-bottom 12px */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-jonquil);
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .footer-col-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
}

/* Elementor: Inter 12px 400, #DAF0FF */
.footer-col a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-light-blue);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-white);
}

@media (max-width: 767px) {
    .footer-col a {
        font-size: 14px;
    }
}

/* Elementor: Inter 12px 700, #FFFFFF */
.footer-col .footer-contact-bold {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
}

@media (max-width: 767px) {
    .footer-col .footer-contact-bold {
        font-size: 14px;
    }
}

/* Footer bottom: social + copyright + regulatory */
.footer-bottom {
    padding-top: 40px;
}

@media (max-width: 767px) {
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Social icons — Elementor: white, 32px, grow on hover */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-social a {
    color: var(--color-white);
    font-size: 32px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    transform: scale(1.1);
}

/* Elementor: Roboto 12px 400, #92CAEC, center */
.footer-copyright {
    font-family: var(--font-legal);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-muted-blue);
    text-align: center;
    margin-bottom: 24px;
}

.footer-copyright a {
    color: var(--color-muted-blue);
    text-decoration: underline;
}

.footer-copyright a:hover {
    color: var(--color-white);
}

/* Elementor: Roboto 12px 400, #92CAEC, justify */
.footer-regulatory {
    font-family: var(--font-legal);
    font-size: 12px;
    font-weight: 400;
    color: var(--color-muted-blue);
    text-align: justify;
    line-height: 1.6;
}

.footer-regulatory a {
    color: var(--color-muted-blue);
}

@media (max-width: 767px) {
    .footer-copyright,
    .footer-regulatory {
        text-align: center;
    }
}


/* ==========================================================================
   SHARED TEXT UTILITIES
   ========================================================================== */

.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.text-keppel { color: var(--color-keppel); }
.text-white { color: var(--color-white); }

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
}

/* ==========================================================================
   GOLDEN STRIPS (shared partials)
   ========================================================================== */

/* Thin gold strip — spacer between hero and content */
.golden-strip-thin {
    background-color: var(--color-accent);
    height: 24px;
    position: relative;
    z-index: 6;
}

@media (max-width: 767px) {
    .golden-strip-thin {
        height: 12px;
    }
}

/* ==========================================================================
   COUNTRY HERO
   Extracted from elementor_send_money_france.json "Desktop-Hero" / "Mobile-Hero"
   Gradient bg: #0072BC 70% → #0054A6 100%, boxed 1260px
   ========================================================================== */

.country-hero {
    background: linear-gradient(180deg, #0072BC 70%, #0054A6 100%);
    align-items: stretch;
    padding: 0 20px;
}

.country-hero--desktop {
    display: flex;
    min-height: 72vh;
}

/* Elementor: min-height 80vh at tablet/mobile (92vh was desktop-only) */
.country-hero--mobile {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80vh;
    padding: 40px 20px 80px 20px;
}

.country-hero-inner {
    max-width: 1260px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0;
}

.country-hero-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

/* Elementor: Libre Franklin 700 52px #FFFFFF */
.country-hero-text h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

/* Elementor: Inter 400 18px #FFFFFF */
.country-hero-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Elementor: Lato 700, border-radius 25px, padding 16px 20px */
.country-hero-cta {
    display: inline-block;
    background-color: var(--color-accent);
    color: #FFFFFF;
    font-family: var(--font-subheading);
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 25px;
    transition: opacity 0.3s ease;
}

/* Elementor: hover bg #FFCB05 (jonquil) */
.country-hero-cta:hover {
    background-color: var(--color-jonquil);
    color: #FFFFFF;
}

/* Calculator column — 50%, centered, padding 24px 0 */
.country-hero-calculator {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    flex-shrink: 0;
}

/* Coloured dots row */
.hero-dots {
    display: flex;
    gap: 4px;
    margin: 12px 0;
}

.hero-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.hero-dot--jonquil { background-color: var(--color-jonquil); }
.hero-dot--accent { background-color: var(--color-accent); }
.hero-dot--cyan { background-color: var(--color-cyan); }
.hero-dot--keppel { background-color: var(--color-keppel); }
.hero-dot--magenta { background-color: var(--color-magenta); }
.hero-dot--mauveine { background-color: var(--color-mauveine); }

/* --- Responsive Hero --- */
@media (max-width: 1024px) {
    .country-hero--desktop {
        display: none;
    }
    .country-hero--mobile {
        display: flex;
        padding: 40px 12px 40px 12px;
    }
    .country-hero--mobile .country-hero-inner {
        flex-direction: column;
    }
    .country-hero--mobile .country-hero-text {
        width: 100%;
        padding: 0 20px;
    }
    .country-hero--mobile .country-hero-text h1 {
        font-size: 40px;
    }
    .country-hero--mobile .country-hero-desc {
        text-align: center;
    }
    .country-hero--mobile .country-hero-cta {
        text-align: center;
    }
    .country-hero--mobile .hero-dots {
        justify-content: center;
    }
    .country-hero--mobile .country-hero-calculator {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .country-hero--mobile {
        padding: 40px 20px 80px 20px;
    }
    .country-hero--mobile .country-hero-text {
        padding: 0;
    }
    .country-hero--mobile .country-hero-text h1 {
        font-size: 32px;
        text-align: center;
    }
    .country-hero--mobile .country-hero-desc {
        font-size: 16px;
        text-align: center;
    }
    .country-hero--mobile .country-hero-cta {
        display: block;
        text-align: center;
    }
}

/* ==========================================================================
   HOW IT WORKS (Why-Choose)
   bg #FFFFFF, column, align center, padding 120px 0 40px 0, boxed 1140px, z-index 5
   ========================================================================== */

.how-it-works {
    background-color: #FFFFFF;
    padding: 120px 0 40px 0;
    position: relative;
    z-index: 5;
}

.how-it-works-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Elementor: Libre Franklin 700 44px #000000, center, margin-bottom 40px (mobile: 0) */
.how-it-works .section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 44px;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

/* Elementor: row, space-evenly, flex-start, gap 0 20px, padding 0 0 40px 0 */
.how-it-works-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 0 20px;
    padding: 0 0 40px 0;
    width: 100%;
}

/* Elementor: column, center, width 33% */
.how-it-works-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33%;
}

/* Elementor: 240px custom width */
.how-it-works-step img {
    width: 240px;
    height: auto;
    margin-bottom: 12px;
}

/* Elementor: Libre Franklin 700 28px #222222, center */
.how-it-works-step h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 8px;
}

/* Elementor: Inter 400 16px #222222, 80% width, center, lh 1.4em */
.how-it-works-step p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text);
    text-align: center;
    width: 80%;
    line-height: 1.4em;
}

/* Dots row below steps — Elementor: row, center, gap 4px, padding 40px 0 60px 0 */
.how-it-works-dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 40px 0 60px 0;
    width: 100%;
}

@media (max-width: 767px) {
    .how-it-works {
        padding: 120px 20px 40px 20px;
    }
    .how-it-works .section-title {
        font-size: 36px;
        margin-bottom: 0;
    }
    .how-it-works-grid {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    .how-it-works-step {
        width: 100%;
        padding-bottom: 60px;
    }
    .how-it-works-step:last-child {
        padding-bottom: 0;
    }
    .how-it-works-step p {
        text-align: center;
    }
    .how-it-works-dots {
        padding: 60px 0;
    }
}

/* ==========================================================================
   HIGHLIGHT CARD (Download CTA)
   Extracted from "Highlight" section
   bg #FFFFFF (WHITE!), row, align center, boxed 1000px
   padding: 100px 20px 140px 20px (tablet: 80px, mobile: 100px 20px 60px 20px)
   ========================================================================== */

.highlight-card {
    background-color: #FFFFFF;
    padding: 100px 20px 140px 20px;
}

.highlight-card-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

/* Left column — text + links */
.highlight-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* Elementor: Libre Franklin 700 44px #222222, left */
.highlight-card-text h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--color-text);
    text-align: left;
}

/* Elementor: 320px, brightness(0) for black logo */
.highlight-logo {
    width: 320px;
    filter: brightness(0);
}

/* Elementor: Inter 400 16px #000000, 60% width, left */
.highlight-card-text p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text);
    text-align: left;
    width: 60%;
    line-height: 1.4em;
}

/* Elementor: row, images 180px × 60px, contain, object-position center left */
.highlight-app-links {
    display: flex;
    flex-direction: row;
}

.highlight-app-links a {
    display: block;
}

.highlight-app-links a img {
    width: 180px;
    height: 60px;
    object-fit: contain;
    object-position: center left;
}

/* Right column — phone mockup, 600px */
.highlight-card-phone {
    flex: 0 0 auto;
}

.highlight-card-phone img {
    width: 600px;
    height: auto;
}

@media (max-width: 1024px) {
    .highlight-card {
        padding: 80px 20px 80px 20px;
    }
    .highlight-card-text p {
        width: 100%;
    }
    .highlight-logo {
        width: 280px;
    }
}

@media (max-width: 767px) {
    .highlight-card {
        padding: 100px 20px 60px 20px;
    }
    .highlight-card-inner {
        flex-direction: column;
        gap: 10px;
    }
    .highlight-card-text {
        align-items: center;
        order: 2;
        padding: 0 0 40px 0;
        margin: 20px 0 0 0;
    }
    .highlight-card-text h2 {
        font-size: 36px;
        text-align: center;
    }
    .highlight-logo {
        width: 240px;
    }
    .highlight-card-text p {
        text-align: center;
        width: 100%;
    }
    .highlight-app-links {
        justify-content: center;
    }
    .highlight-card-phone {
        order: 1;
        align-self: center;
    }
    .highlight-card-phone img {
        width: 320px;
    }
}

/* ==========================================================================
   TESTIMONIALS
   Extracted from "Testimonials" section
   bg #FFFFFF, column, padding 40px 0 80px 0, boxed 1000px
   Cards: border 2px solid, radius 20px, padding 20px
   ========================================================================== */

.testimonials {
    background-color: #FFFFFF;
    padding: 40px 0 80px 0;
}

.testimonials-inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* Elementor: Libre Franklin 700 40px #222222, left (mobile: center) */
.testimonials .section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    color: var(--color-text);
    text-align: left;
    margin-bottom: 24px;
}

.testimonial-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

/* Elementor: border 2px solid #00A57C (keppel), radius 20px, padding 20px, justify space-between, gap 12px 0 */
.testimonial-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px 0;
    padding: 20px;
    border: 2px solid var(--color-keppel);
    border-radius: 20px;
}

/* Elementor: Inter 500 16px #222222, left, lh 1.4em */
.testimonial-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-text);
    text-align: left;
    line-height: 1.4em;
    flex: 1;
}

/* Author row — space-between, center */
.testimonial-author {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Elementor: Lato 700 italic 20px #222222, left, lh 0.6em */
.testimonial-name {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
    color: var(--color-text);
    text-align: left;
    line-height: 0.6em;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .testimonials {
        padding: 80px 20px 80px 20px;
    }
    .testimonials .section-title {
        font-size: 36px;
        text-align: center;
    }
    .testimonial-track {
        flex-direction: column;
        gap: 20px;
    }
    .testimonial-text {
        text-align: center;
    }
    .testimonial-author {
        justify-content: center;
        gap: 12px;
    }
    .testimonial-name {
        text-align: center;
    }
}

/* ==========================================================================
   PAYOUT LOCATIONS
   bg #FFFFFF, column, align center
   padding 120px 20px 100px 20px (tablet: 80px, mobile: 40px 20px 100px 20px)
   ========================================================================== */

.payout-locations {
    background-color: #FFFFFF;
    padding: 120px 20px 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Elementor: Lato 500 36px italic #0072BC, center, hidden-mobile */
.payout-title-italic {
    font-family: var(--font-subheading);
    font-weight: 500;
    font-size: 36px;
    font-style: italic;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 4px;
}

/* Elementor: Libre Franklin 700 44px #000000, center, margin-bottom 20px */
.payout-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 44px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

/* Bank logos container — row, padding 0 0 40px 0, images 80px height contain */
.payout-bank-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 0 0 40px 0;
    width: 100%;
}

.payout-bank {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Elementor: 80px height, object-fit contain */
.payout-bank img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Elementor: 600px max-width, center */
.payout-desc {
    max-width: 600px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .payout-locations {
        padding: 80px 20px 80px 20px;
    }
    .payout-subtitle {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .payout-locations {
        padding: 40px 20px 100px 20px;
    }
    .payout-title-italic {
        display: none;
    }
    .payout-subtitle {
        font-size: 28px;
        text-align: center;
    }
}

/* ==========================================================================
   FAMILY SECTION
   bg #FFFFFF, row, boxed 760px
   padding 0 20px 100px 20px (mobile: 0 20px 40px 20px)
   ========================================================================== */

.family-section {
    background-color: #FFFFFF;
    padding: 0 20px 100px 20px;
}

.family-section-inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 0;
}

.family-card {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Elementor: Lato 700 28px #000000, center */
.family-card h4 {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 28px;
    color: #000000;
    text-align: center;
    margin-bottom: 12px;
}

/* BRAC Bank logo: 240px */
.family-card .family-logo-bank {
    width: 240px;
    height: auto;
}

/* BRAC logo: 180px */
.family-card .family-logo-brac {
    width: 180px;
    height: auto;
}

@media (max-width: 767px) {
    .family-section {
        padding: 0 20px 40px 20px;
    }
    .family-section-inner {
        justify-content: space-between;
        gap: 12px;
    }
    .family-card {
        width: 50%;
    }
    .family-card h4 {
        font-size: 20px;
    }
    .family-card .family-logo-brac {
        width: 120px;
    }
}

/* ==========================================================================
   GOLDEN STRIP FLAGS (thick, with flag carousel)
   Extracted from "GoldenStrip-Thick" section
   bg #E6A713, row, center, padding 28px 20px
   Flag images: 180px (mobile: 80px) — full round flag images
   ========================================================================== */

.golden-strip-flags {
    background-color: var(--color-accent);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 28px 20px;
}

.golden-strip-flags a {
    display: block;
    flex-shrink: 0;
}

/* Elementor: 180px width images */
.golden-strip-flags a img {
    width: 180px;
    height: auto;
}

@media (max-width: 1024px) {
    .golden-strip-flags {
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .golden-strip-flags {
        gap: 8px;
        flex-wrap: wrap;
    }
    .golden-strip-flags a img {
        width: 80px;
    }
}

/* ==========================================================================
   CROSS-BORDER SECTION
   Extracted from "Cross-Border" section
   bg gradient #0072BC → #0054A6, column, boxed 1000px
   padding 140px 20px 100px 20px (tablet: 120px, mobile: 120px 20px 60px 20px)
   ========================================================================== */

.cross-border {
    background: linear-gradient(180deg, #0072BC 0%, #0054A6 100%);
    padding: 140px 20px 100px 20px;
}

.cross-border-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Title — Elementor: Libre Franklin 700 44px #FFFFFF, center */
.cross-border-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 40px 0;
    text-align: center;
}

.cross-border-header h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.2;
}

/* Subtitle — Elementor: Lato 700 italic 44px #E6A713, center */
.cross-border-subtitle {
    font-family: var(--font-subheading);
    font-size: 44px;
    font-weight: 700;
    font-style: italic;
    color: var(--color-accent);
    text-align: center;
}

/* Payout Mode Cards — colored boxes with icon + heading
   Elementor: row, each card has distinct bg color, padding 20px, min-height 180px, border-radius 16px */
.payout-modes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.payout-mode-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    min-height: 180px;
    border-radius: 16px;
}

.payout-mode-card--cash    { background-color: var(--color-keppel); }
.payout-mode-card--bank    { background-color: var(--color-cyan); }
.payout-mode-card--instant { background-color: var(--color-mauveine); }
.payout-mode-card--wallet  { background-color: var(--color-magenta); }

.payout-mode-card i {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

/* Elementor: Libre Franklin 700 #FFFFFF */
.payout-mode-card span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #FFFFFF;
    font-size: 18px;
}

/* Monuments image — hidden on tablet+mobile */
.cross-border-image {
    margin: 20px auto 0;
}

.cross-border-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .cross-border {
        padding: 120px 20px 100px 20px;
    }
    .cross-border-image {
        display: none;
    }
    .payout-mode-card {
        padding: 12px;
    }
}

@media (max-width: 767px) {
    .cross-border {
        padding: 120px 20px 60px 20px;
    }
    .cross-border-header {
        padding: 0;
    }
    .cross-border-header h2 {
        font-size: 36px;
    }
    .cross-border-subtitle {
        font-size: 36px;
    }
    .payout-modes {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .payout-mode-card {
        flex: 0 0 46%;
        padding: 12px;
    }
    .payout-mode-card span {
        font-size: 28px;
    }
}

/* ==========================================================================
   SAFE FEATURES
   Follows Cross-Border section
   bg #0072BC, column
   padding 0 0 80px 0 (tablet: 0 20px 60px 20px, mobile: 40px 12px 60px 12px)
   3-column grid: dot icons + headings + text
   ========================================================================== */

.safe-features {
    background-color: var(--color-primary);
    padding: 0 0 80px 0;
}

.safe-features-inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* Elementor: row, space-evenly, flex-start, gap 0 20px, padding 0 0 40px 0 */
.safe-features-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 0 20px;
    padding: 0 0 40px 0;
}

.safe-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33%;
}

/* Dot icon + heading in a row */
.safe-feature-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

/* Elementor: 16px circle icons — colored dots */
.safe-feature-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Elementor: Libre Franklin 700 28px #FFFFFF */
.safe-feature h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: #FFFFFF;
    text-align: left;
}

/* Elementor: Inter 400 16px #FFFFFF, 80% width, center */
/* Elementor: Inter 400 16px #FFFFFF, lh 1.4em */
.safe-feature p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.4em;
    width: 80%;
}

@media (max-width: 1024px) {
    .safe-features {
        padding: 0 20px 60px 20px;
    }
    .safe-feature-header {
        flex-direction: column;
        gap: 12px;
    }
    .safe-feature h3 {
        font-size: 24px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .safe-features {
        padding: 40px 12px 60px 12px;
    }
    .safe-features-grid {
        flex-direction: column;
        gap: 20px;
    }
    .safe-feature {
        width: 100%;
    }
    .safe-feature-header {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   HOW MUCH / HOW LONG (Cost + Timing FAQ)
   bg #0072BC, row layout, text + image side by side
   ========================================================================== */

/* How Much — padding 120px 0 120px 0 (mobile: 120px 0 60px 0) */
.how-much-section {
    background-color: var(--color-primary);
    padding: 120px 0 120px 0;
}

.how-much-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

/* Text column */
.how-much-text,
.how-long-text {
    flex: 1;
    padding: 0 20px;
}

/* Elementor: Libre Franklin 700 white, with accent-colored <span> */
/* Elementor: Libre Franklin 700 36px #FFFFFF, lh 1.5 */
.how-much-text h3,
.how-long-text h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 36px;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 16px;
}

.how-much-text h3 span,
.how-long-text h3 span {
    color: var(--color-accent);
}

/* Elementor: Inter 400 16px #FFFFFF, lh 1.4em */
.how-much-text .faq-content,
.how-long-text .faq-content {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.4em;
}

.how-much-text .faq-content strong,
.how-long-text .faq-content strong {
    font-weight: 700;
}

.how-much-text .faq-content a,
.how-long-text .faq-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Image column — 100% width, 400px height, object-fit cover */
.how-much-image,
.how-long-image {
    flex: 1;
}

.how-much-image img,
.how-long-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* How Long — padding 120px 0 160px 0 (mobile: 0, margin-top 60px) */
.how-long-section {
    background-color: var(--color-primary);
    padding: 120px 0 160px 0;
}

.how-long-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

@media (max-width: 767px) {
    .how-much-section {
        padding: 120px 0 60px 0;
    }
    .how-much-inner {
        flex-direction: column;
    }
    .how-much-text h3,
    .how-long-text h3 {
        font-size: 28px;
    }
    .how-long-section {
        padding: 0;
        margin-top: 60px;
    }
    .how-long-inner {
        flex-direction: column;
    }
    /* On mobile, image goes first for "How Much" */
    .how-much-image {
        order: -1;
    }
}

/* ==========================================================================
   FLAG GRID (SendMoney-Countries)
   bg #0072BC, column, boxed 1000px
   padding 40px 0 80px 0 (mobile: 80px 0 0 0)
   Flags: 92px (mobile: 64px) in a flex-wrap container with border-radius 20px
   ========================================================================== */

.flag-grid-section {
    background-color: var(--color-primary);
    padding: 40px 0 80px 0;
}

.flag-grid-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Elementor: Libre Franklin 700 44px #FFFFFF, left (mobile: center) */
/* Elementor: Libre Franklin 700 44px #FFFFFF, left, margin-bottom 40px */
.flag-grid-section .section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 44px;
    color: #FFFFFF;
    text-align: left;
    margin-bottom: 40px;
    width: 100%;
}

/* Flag container — Elementor: padding 40px, margin 0 0 80px, border-radius 20px */
.flag-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px;
    margin: 0 0 80px 0;
    border-radius: 20px;
    gap: 0;
}

/* Elementor: each flag image 92px */
.flag-grid-item {
    display: inline-block;
}

.flag-grid-item img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.flag-grid-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .flag-grid-section {
        padding: 80px 0 0 0;
    }
    .flag-grid-section .section-title {
        font-size: 36px;
        text-align: center;
    }
    .flag-grid {
        padding: 4px;
    }
    .flag-grid-item img {
        width: 64px;
        height: 64px;
    }
}

/* ==========================================================================
   DOTS DIVIDER
   Colored dots row between sections
   Section 4: white bg, padding 40px 0 60px 0 (mobile: 60px 0)
   Section 15: blue bg #0072BC, padding 20px 0 (mobile: 80px 0)
   ========================================================================== */

.dots-divider {
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 20px 0;
}

/* Section 4 variant: between how-it-works and highlight — white bg */
.dots-divider--white {
    background-color: #FFFFFF;
    padding: 40px 0 60px 0;
}

@media (max-width: 767px) {
    .dots-divider {
        padding: 80px 0;
    }
    .dots-divider--white {
        padding: 60px 0;
    }
}

/* ==========================================================================
   GET IN TOUCH / CTA + FAQ
   Extracted from Section 16
   bg gradient #0072BC 50% → #0054A6 100%, column
   padding 0 0 200px 0
   Inner: padding 120px 80px (mobile: 12px)
   ========================================================================== */

.get-in-touch {
    background: linear-gradient(180deg, #0072BC 50%, #0054A6 100%);
    padding: 0 0 200px 0;
}

.get-in-touch-card {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 80px;
}

/* Elementor: Lato 500 36px italic #E6A713, center, margin-bottom 4px */
.get-in-touch-question {
    font-family: var(--font-subheading);
    font-weight: 500;
    font-size: 36px;
    font-style: italic;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 4px;
}

/* Elementor: Libre Franklin 700 44px #FFFFFF, center, margin-bottom 40px */
.get-in-touch-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 44px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

/* Elementor: Inter 400 16px #FFFFFF, 80% width, center, lh 1.4em, margin-bottom 40px */
.get-in-touch-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    width: 80%;
    line-height: 1.4em;
    margin-bottom: 40px;
}

/* Phone link: gold color */
.get-in-touch-phone {
    color: #E6A713;
    text-decoration: none;
}

.get-in-touch-phone:hover {
    text-decoration: underline;
}

/* --- FAQ Accordion (inside get-in-touch) ---
   Toggle: Lato 700 18px #FFFFFF title, #E6A713 active
   Icon: fa-angle-down/up, #E6A713, right-aligned
   Content: Inter 400 16px #FFFFFF, line-height 1.5em
   Space between items: 5px (mobile: 12px)
   No borders between items
   Margin bottom: 20px (mobile: 40px)
   -------------------------------------------- */

.get-in-touch-faq {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.get-in-touch-faq .faq-item {
    margin-bottom: 5px;
}

.get-in-touch-faq .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.get-in-touch-faq .faq-question-text {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.2em;
    text-transform: none;
}

/* Active (open) state: gold title */
.get-in-touch-faq .faq-item.is-open .faq-question-text {
    color: #E6A713;
}

.get-in-touch-faq .faq-icon {
    color: #E6A713;
    font-size: 18px;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.get-in-touch-faq .faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    color: #B48005;
}

.get-in-touch-faq .faq-answer {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.get-in-touch-faq .faq-answer-inner {
    padding: 0 0 12px 0;
}

.get-in-touch-faq .faq-answer-inner p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.5em;
    margin-bottom: 8px;
}

.get-in-touch-faq .faq-answer-inner ul {
    padding-left: 20px;
    margin-bottom: 8px;
}

.get-in-touch-faq .faq-answer-inner li {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.5em;
    margin-bottom: 4px;
}

.get-in-touch-faq .faq-answer-inner a {
    color: #E6A713;
    text-decoration: none;
}

.get-in-touch-faq .faq-answer-inner a:hover {
    text-decoration: underline;
}

/* Bottom image — Elementor: 100% width, 440px height, cover, top center
   12px border-radius, 12px padding, jonquil bg, contrast 96%, saturate 66% */
/* Elementor: 12px padding, jonquil bg, radius 12px, margin-bottom 50px (mobile: 30px) */
.get-in-touch-image {
    width: 100%;
    padding: 12px;
    background-color: var(--color-jonquil);
    border-radius: 12px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.get-in-touch-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 12px;
    filter: contrast(0.96) saturate(0.66);
}

@media (max-width: 767px) {
    .get-in-touch-card {
        padding: 12px;
    }
    .get-in-touch-question {
        font-size: 28px;
    }
    .get-in-touch-title {
        font-size: 32px;
    }
    .get-in-touch-desc {
        width: 100%;
        text-align: left;
    }
    .get-in-touch-faq .faq-item {
        margin-bottom: 12px;
    }
    .get-in-touch-faq .faq-question-text {
        font-size: 18px;
    }
    .get-in-touch-faq .faq-answer-inner p,
    .get-in-touch-faq .faq-answer-inner li {
        font-size: 14px;
    }
    .get-in-touch-image img {
        height: 344px;
    }
    .get-in-touch-image {
        margin-bottom: 30px;
    }
    .get-in-touch-faq {
        margin-bottom: 40px;
    }
}

@media (max-width: 1024px) {
    .get-in-touch-faq .faq-question-text {
        font-size: 20px;
    }
}

/* ==========================================================================
   PAGE (legal / default)
   ========================================================================== */

/* Elementor pages: full width, no constraints */
.elementor-page-content {
    width: 100%;
}

/* Non-Elementor pages: boxed content */
.page-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.page-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--color-sapphire);
}

/* ==========================================================================
   WPForms overrides (Contact page)
   ========================================================================== */

.wpforms-container {
    max-width: 600px !important;
}

.wpforms-container .wpforms-field-label {
    font-family: var(--font-subheading) !important;
    font-weight: 600 !important;
}

.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container textarea,
.wpforms-container select {
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
    padding: 12px !important;
    font-family: var(--font-body) !important;
}

.wpforms-container .wpforms-submit {
    background-color: var(--color-primary) !important;
    border-radius: 20px !important;
    font-family: var(--font-subheading) !important;
    font-weight: 700 !important;
    padding: 12px 32px !important;
}

/* ==========================================================================
   SMALL HERO (Contact Us, About Us)
   Extracted from elementor_contact_us.json "SmallHero"
   ========================================================================== */

.hero-small {
    background: linear-gradient(180deg, var(--color-primary) 70%, var(--color-sapphire) 100%);
    min-height: 72vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 0 20px;
}

@media (max-width: 767px) {
    .hero-small {
        min-height: auto;
        padding: 60px 20px 40px 20px;
        flex-direction: column;
    }
}

.hero-small-content {
    max-width: var(--max-width);
    width: 100%;
}

.hero-small-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .hero-small-title {
        font-size: 42px;
        text-align: center;
    }
}

.hero-small-desc {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-white);
    max-width: 480px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .hero-small-desc {
        font-size: 16px;
        text-align: center;
        max-width: 100%;
    }
}

.hero-contact-info {
    padding-top: 40px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
}

.hero-contact-info p {
    margin-bottom: 0.5em;
}

.hero-contact-info a {
    color: var(--color-white);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .hero-contact-info {
        text-align: center;
        padding-top: 20px;
    }
}

/* ==========================================================================
   CONTACT US — Offices Section
   ========================================================================== */

.offices-section {
    background-color: var(--color-white);
    padding: 60px 20px 80px 20px;
}

@media (max-width: 1024px) {
    .offices-section {
        padding: 60px 20px 60px 20px;
    }
}

.offices-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 32px;
}

.offices-title span {
    color: var(--color-primary);
}

@media (max-width: 767px) {
    .offices-title {
        font-size: 36px;
    }
}

.offices-image {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.offices-image img {
    width: 100%;
    filter: brightness(0);
}

.offices-grid {
    display: flex;
    flex-direction: row;
    gap: 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (max-width: 767px) {
    .offices-grid {
        flex-direction: column;
        gap: 32px;
    }
}

.office-card {
    flex: 1;
}

.office-card h3 {
    font-family: var(--font-subheading);
    font-weight: 700;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .office-card h3 {
        font-size: 28px;
    }
}

.office-card p,
.office-card div {
    color: var(--color-text);
    line-height: 1.6;
}
