:root {
    --sand: #fbf0f0;
    --sand-deep: #f2d8d8;
    --sand-border: #e8caca;
    --cream: #fff8f8;
    --gold: #f60808;
    --gold-rich: #f62e2e;
    --gold-light: #f58b8b;
    --gold-pale: #fdd0d0;
    --gold-border: rgba(184, 11, 11, 0.25);
    --brown: #5c1111;
    --text-dark: #1A1008;
    --text-body: #4A3520;
    --text-muted: #8B6D4A;
    --text-light: #B8967A;
    --white: #FFFFFF;
    --emerald: #0F7B5C;
    --emerald-bg: #E6F7F1;
    --blue-bg: #E8F3FB;
    --rose-bg: #FDECEA;
    --shadow-sm: 0 2px 12px rgba(90, 50, 10, 0.08);
    --shadow-md: 0 8px 32px rgba(90, 50, 10, 0.12);
    --shadow-lg: 0 20px 60px rgba(90, 50, 10, 0.15);
    --shadow-gold: 0 8px 30px rgba(184, 134, 11, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--sand);
    color: var(--text-dark);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--sand-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-rich);
    border-radius: 3px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: .7
    }

    50% {
        transform: scale(1.6);
        opacity: .2
    }
}

.anim {
    animation: fadeUp .65s ease both;
}

.d1 {
    animation-delay: .08s
}

.d2 {
    animation-delay: .16s
}

.d3 {
    animation-delay: .24s
}

.d4 {
    animation-delay: .32s
}

.d5 {
    animation-delay: .40s
}

/* ===== HERO ===== */
.hero-wrap {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(150deg, #FBF7F0 0%, #F5EDD8 45%, #FBF5E6 100%);
    padding: 80px 24px 70px;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(184, 134, 11, .07) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(184, 134, 11, .05) 0%, transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(184, 134, 11, .06) 0%, transparent 40%);
}

.hero-geo {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hgc {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(184, 134, 11, .1);
}

.hgc:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -160px;
    right: -160px;
}

.hgc:nth-child(2) {
    width: 340px;
    height: 340px;
    top: -90px;
    right: -90px;
}

.hgc:nth-child(3) {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -200px;
}

.hgc:nth-child(4) {
    width: 400px;
    height: 400px;
    bottom: -120px;
    left: -120px;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeUp .5s ease both;
}

.bdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-rich);
    animation: pulseDot 1.8s ease infinite;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 7vw, 82px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.gold-span {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold), #F5A623);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

.hero-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 44px;
    font-weight: 400;
    animation: fadeUp .65s .1s ease both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    animation: fadeUp .65s .2s ease both;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hstat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hstat-lbl {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 4px;
}

.hdiv {
    width: 1px;
    height: 50px;
    background: var(--sand-border);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .65s .3s ease both;
}

/* ===== BUTTONS ===== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold));
    color: var(--white);
    padding: 15px 36px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: transform .25s, box-shadow .25s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(184, 134, 11, .35);
}

.btn-outline {
    background: var(--white);
    color: var(--gold);
    padding: 15px 36px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid var(--gold-border);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all .25s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--gold-pale);
    border-color: var(--gold-rich);
    transform: translateY(-2px);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--sand-border);
    border-bottom: 1px solid var(--sand-border);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
}

.trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* ===== SECTION COMMONS ===== */
.sw {
    padding: 90px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.bg-white {
    background: var(--white);
}

.bg-sand {
    background: var(--sand);
}

.bg-deep {
    background: var(--sand-deep);
}

.stag {
    display: inline-block;
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.stitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.stitle .ac {
    color: var(--gold);
}

.ssub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
}

.sh {
    margin-bottom: 52px;
}

.sh.center {
    text-align: center;
}

.sh.center .ssub {
    margin: 0 auto;
}

/* ===== VISA TOGGLE ===== */
.toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
}

.vtoggle {
    display: flex;
    background: var(--sand-deep);
    border: 1px solid var(--sand-border);
    border-radius: 14px;
    padding: 6px;
    gap: 4px;
}

.tbtn {
    padding: 12px 32px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .25s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 7px;
}

.tbtn.active {
    background: var(--white);
    color: var(--gold);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gold-border);
}

/* ===== VISA CARDS ===== */
.vgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(388px, 1fr));
    gap: 22px;
}

.visa-types {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.visa-card {
    /* background: var(--white); */
    border: 1.5px solid var(--sand-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    text-align: start;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
}

.visa-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.visa-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.visa-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.visa-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.visa-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.visa-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-body);
}

.visa-btn {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.visa-btn:hover {
    transform: translateY(-2px);
}

.vcard {
    background: var(--white);
    border: 1.5px solid var(--sand-border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    cursor: pointer;
}

.vcard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-rich));
    opacity: 0;
    transition: opacity .3s;
}

.vcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184, 134, 11, .3);
}

.vcard:hover::after {
    opacity: 1;
}

.vcard.feat {
    background: linear-gradient(160deg, var(--gold-pale) 0%, var(--white) 60%);
    border-color: rgba(184, 134, 11, .4);
}

.vcard.feat::after {
    opacity: 1;
}

.cbadge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold));
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.cicon {
    width: 56px;
    height: 56px;
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    transition: background .3s;
}

.vcard:hover .cicon {
    background: rgba(184, 134, 11, .15);
}

.ctag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 6px;
}

.cname {
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.2;
}

.cdur {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 22px;
}

.cprice {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.pcur {
    font-size: 17px;
    color: var(--gold);
    font-weight: 700;
}

.pamt {
    font-family: 'Segoe UI', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.pper {
    font-size: 13px;
    color: var(--text-light);
}

.cfeats {
    list-style: none;
    margin-bottom: 28px;
    border-top: 1px solid var(--sand-border);
    padding-top: 18px;
}

.cfeats li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    color: var(--text-body);
    border-bottom: 1px solid rgba(232, 222, 202, .5);
}

.cfeats li:last-child {
    border-bottom: none;
}

.ficon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--emerald-bg);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    font-weight: 700;
}

.ccta {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold));
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 15px rgba(184, 134, 11, .25);
}

.ccta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184, 134, 11, .35);
}

.ccta-o {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold-border);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all .2s;
}

.ccta-o:hover {
    background: var(--gold-pale);
    border-color: var(--gold-rich);
}

/* ===== PROCESS ===== */
.pgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    position: relative;
}

.pconn {
    position: absolute;
    top: 52px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold-border) 0, var(--gold-border) 8px, transparent 8px, transparent 16px);
}

.pcard {
    text-align: center;
}

.pnum {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--sand-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all .3s;
    box-shadow: var(--shadow-sm);
}

.pcard:hover .pnum {
    border-color: var(--gold-rich);
    background: var(--gold-pale);
    box-shadow: var(--shadow-gold);
}

.pemoji {
    font-size: 28px;
}

.pstep {
    font-size: 10px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ptitle {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pdesc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== FEATURES ===== */
.fgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.fcard {
    background: var(--white);
    border: 1.5px solid var(--sand-border);
    border-radius: 16px;
    padding: 28px;
    transition: all .3s;
}

.fcard:hover {
    border-color: rgba(184, 134, 11, .3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fi {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.fi-g {
    background: var(--gold-pale)
}

.fi-e {
    background: var(--emerald-bg)
}

.fi-b {
    background: var(--blue-bg)
}

.fi-r {
    background: var(--rose-bg)
}

.ftitle {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.fdesc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== ENQUIRY ===== */
.eq-bg {
    background: var(--sand-deep);
    border-top: 1px solid var(--sand-border);
    border-bottom: 1px solid var(--sand-border);
}

.eq-layout {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 60px;
    align-items: start;
}

.eq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.eq-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.eq-contacts {
    list-style: none;
}

.eq-ci {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--sand-border);
}

.eq-ci:last-child {
    border-bottom: none;
}

.eq-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--white);
    border: 1px solid var(--sand-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.eq-lbl {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.eq-val {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.ph-box {
    margin-top: 32px;
    background: var(--white);
    border: 1.5px solid var(--gold-border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.ph-lbl {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 8px;
}

.ph-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
}

.ph-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

/* FORM */
.fcard-wrap {
    background: var(--white);
    border: 1.5px solid var(--sand-border);
    border-radius: 22px;
    padding: 44px;
    box-shadow: var(--shadow-md);
}

.fc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.fc-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.flbl {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 7px;
}

.fc {
    width: 100%;
    padding: 13px 16px;
    background: var(--sand);
    border: 1.5px solid var(--sand-border);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color .25s, box-shadow .25s, background .25s;
    outline: none;
}

.fc:focus {
    border-color: var(--gold-rich);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, .1);
    background: var(--cream);
}

.fc::placeholder {
    color: rgba(139, 109, 74, .5);
}

select.fc {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23B8860B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

select.fc option {
    background: var(--white);
}

textarea.fc {
    resize: vertical;
    min-height: 90px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.fg {
    margin-bottom: 14px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 14px;
}

.chip {
    padding: 8px 18px;
    border-radius: 9px;
    border: 1.5px solid var(--sand-border);
    background: var(--sand);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.chip:hover {
    border-color: var(--gold-rich);
    color: var(--gold);
    background: var(--gold-pale);
}

.chip.sel {
    background: var(--gold-pale);
    border-color: var(--gold-rich);
    color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold-border);
}

.dgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 14px;
}

.dop input[type="radio"] {
    display: none;
}

.dlbl {
    display: block;
    text-align: center;
    padding: 12px 8px;
    border-radius: 10px;
    border: 1.5px solid var(--sand-border);
    background: var(--sand);
    cursor: pointer;
    transition: all .2s;
}

.dlbl-m {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.dlbl-s {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    display: block;
}

.dop input:checked+.dlbl {
    border-color: var(--gold-rich);
    background: var(--gold-pale);
    box-shadow: 0 0 0 1px var(--gold-border);
}

.dop input:checked+.dlbl .dlbl-m {
    color: var(--gold);
}

.fsub {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: var(--shadow-gold);
    margin-top: 6px;
}

.fsub:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, .4);
}

.fprivacy {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ===== TESTIMONIALS ===== */
.tgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
}

.tcard {
    background: var(--white);
    border: 1.5px solid var(--sand-border);
    border-radius: 18px;
    padding: 28px;
    transition: all .3s;
}

.tcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 134, 11, .25);
}

.tstars {
    color: var(--gold-rich);
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.ttext {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.tauthor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tavatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    flex-shrink: 0;
}

.tname {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.tcountry {
    font-size: 12px;
    color: var(--text-light);
}

/* ===== FAQ ===== */
.faqlist {
    max-width: 760px;
    margin: 0 auto;
}

.faqitem {
    border-bottom: 1px solid var(--sand-border);
}

.faqq {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    gap: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color .2s;
}

.faqq:hover {
    color: var(--gold);
}

.faqplus {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1.5px solid var(--sand-border);
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    font-weight: 300;
    transition: transform .3s, background .25s, border-color .25s;
}

.faqitem.open .faqplus {
    transform: rotate(45deg);
    background: var(--gold-pale);
    border-color: var(--gold-border);
}

.faqa {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    transition: max-height .4s ease, padding .3s;
}

.faqitem.open .faqa {
    max-height: 250px;
    padding-bottom: 18px;
}


/* SUCCESS */
.sov {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(251, 247, 240, .92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.sov.show {
    display: flex;
}

.sm {
    background: var(--white);
    border: 1.5px solid var(--gold-border);
    border-radius: 24px;
    padding: 52px;
    text-align: center;
    max-width: 460px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: fadeUp .5s ease;
}

.schk {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--emerald-bg);
    border: 2px solid var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin: 0 auto 22px;
}

.sm-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sm-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.sm-ref {
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.sm-close {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold));
    color: var(--white);
    border: none;
    padding: 13px 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: transform .2s;
}

.sm-close:hover {
    transform: translateY(-2px);
}

@media(max-width:900px) {
    .eq-layout {
        grid-template-columns: 1fr;
    }

    .frow {
        grid-template-columns: 1fr;
    }

    .hdiv {
        display: none;
    }

    .hero-stats {
        gap: 20px;
    }

    .pconn {
        display: none;
    }

    .trust-bar {
        gap: 20px;
        padding: 16px 20px;
    }

    .sw {
        padding: 60px 20px;
    }

    .fcard-wrap {
        padding: 28px;
    }
}

@media(max-width:600px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-gold,
    .btn-outline {
        justify-content: center;
    }

    .dgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .toast-el {
        right: 16px;
        left: 16px;
    }

    .vgrid {
        grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
    }
}



/* ===== UAE VISA SEO SECTION ===== */

.uaeVisaSeoWrap {
    padding: 40px 0 20px;
}

.uaeVisaSeoBox {
    background: #f7e3e1;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}


/* Title */

.uaeVisaSeoTitle {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 14px;
}


/* paragraph */

.uaeVisaSeoText {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
    font-weight: 400;
}

.seoHighlight {
    font-weight: 500;
    color: #111;
}


/* grid */

.uaeVisaSeoGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


/* cards */

.uaeVisaSeoCard {
    background: #fafafa;
    border-radius: 14px;
    padding: 20px;

    border: 2px solid rgba(0, 0, 0, 0.152);
}


/* headings */

.uaeVisaSeoHeading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}


/* list */

.uaeVisaSeoList {
    padding-left: 18px;
    margin: 0;
}

.uaeVisaSeoList li {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 6px;
}


/* buttons */

.uaeVisaSeoBtnWrap {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.uaeVisaBtnPrimary {
    background: #f7b500;
    color: #111;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.uaeVisaBtnPrimary:hover {
    background: #e5a800;
}


.uaeVisaBtnWhatsapp {
    background: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.uaeVisaBtnWhatsapp:hover {
    background: #1ebe5d;
}


/* ================= MOBILE ================= */

@media(max-width:768px) {

    .uaeVisaSeoWrap {
        padding: 20px 12px;
    }

    .uaeVisaSeoBox {
        padding: 18px;
    }

    .uaeVisaSeoTitle {
        font-size: 22px;
    }

    .uaeVisaSeoText {
        font-size: 14px;
    }

    .uaeVisaSeoGrid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .uaeVisaSeoCard {
        padding: 16px;
    }

    .uaeVisaSeoHeading {
        font-size: 16px;
    }

    .uaeVisaSeoList li {
        font-size: 14px;
    }

    .uaeVisaSeoBtnWrap {
        flex-direction: column;
    }

    .uaeVisaBtnPrimary,
    .uaeVisaBtnWhatsapp {
        width: 100%;
        text-align: center;
    }

}



/* ══════════════════════ PROGRESS STEPPER ══════════════════════ */
.stepper {
    background: var(--white);
    border-bottom: 1px solid var(--sand3);
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-row {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 700px;
    width: 100%;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 22px);
    right: calc(-50% + 22px);
    height: 2px;
    background: var(--sand3);
    z-index: 0;
    transition: background .4s;
}

.step.done:not(:last-child)::after {
    background: var(--red);
}

.step-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sand2);
    border: 2px solid var(--sand3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--muted);
    transition: all .3s;
    z-index: 1;
    margin-bottom: 7px;
}

.step.active .step-dot {
    background: var(--red-pale);
    border-color: var(--red);
    color: var(--red);
}

.step.done .step-dot {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    font-size: 18px;
}

.step-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-align: center;
    letter-spacing: .4px;
}

.step.active .step-lbl {
    color: var(--red);
}

.step.done .step-lbl {
    color: var(--dark);
}

/* ══════════════════════ PAGES ══════════════════════ */
.page {
    display: none;
    animation: fadeUp .5s ease both;
}

.page.show {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ══════════════════════ CARD ══════════════════════ */
.card {
    max-width: 700px;
    margin: 36px auto 60px;
    background: var(--white);
    border: 1.5px solid var(--sand3);
    border-radius: 22px;
    padding: 44px;
    box-shadow: var(--sh);
}

.card-head {
    margin-bottom: 28px;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.card-sub {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.section-tag {
    display: inline-block;
    background: var(--red-pale);
    border: 1px solid var(--red-border);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

/* ══════════════════════ FORM CONTROLS ══════════════════════ */
.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fg {
    margin-bottom: 15px;
}

.flbl {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.fc {
    width: 100%;
    padding: 12px 15px;
    background: var(--sand);
    border: 1.5px solid var(--sand3);
    border-radius: 10px;
    color: var(--dark);
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.fc:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(246, 8, 8, .07);
    background: var(--cream);
}

.fc::placeholder {
    color: rgba(139, 109, 74, .45);
}

select.fc {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23B8860B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 36px;
}

/* ══════════════════════ DOCUMENT UPLOAD BOXES ══════════════════════ */
.doc-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin: 24px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--sand3);
}

.doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 6px;
}

.doc-box {
    position: relative;
    border: 2px dashed var(--sand3);
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    background: var(--sand);
    transition: all .25s;
    overflow: hidden;
}

.doc-box:hover {
    border-color: var(--red);
    background: var(--red-pale);
}

.doc-box.ready {
    border-color: var(--green);
    background: var(--green-bg);
    border-style: solid;
}

.doc-box.error-box {
    border-color: #e53e3e;
    background: #fff5f5;
    border-style: solid;
}

.doc-box input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.doc-emoji {
    font-size: 26px;
    margin-bottom: 7px;
    display: block;
}

.doc-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.doc-hint {
    font-size: 11px;
    color: var(--muted);
}

.doc-req {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-top: 4px;
}

.doc-ok {
    font-size: 11px;
    color: var(--green);
    font-weight: 700;
    margin-top: 5px;
    display: none;
}

.doc-box.ready .doc-ok {
    display: block;
}

.doc-box.ready .doc-req {
    display: none;
}

/* ══════════════════════ UPLOAD PROGRESS ══════════════════════ */
.upload-progress {
    display: none;
    margin: 18px 0;
    background: var(--sand2);
    border-radius: 12px;
    padding: 16px;
}

.up-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.up-bar-bg {
    height: 8px;
    background: var(--sand3);
    border-radius: 4px;
    overflow: hidden;
}

.up-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red2), var(--red));
    border-radius: 4px;
    transition: width .3s;
}

.up-files {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.up-file-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
}

.up-file-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.up-file-status {
    font-weight: 700;
    font-size: 11px;
}

.up-file-status.done {
    color: var(--green);
}

.up-file-status.wait {
    color: var(--muted);
}

.up-file-status.uploading {
    color: var(--red);
}

/* ══════════════════════ REVIEW SUMMARY ══════════════════════ */
.sumbox {
    background: var(--sand);
    border: 1px solid var(--sand3);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 14px;
}

.sum-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--sand3);
}

.sum-row:last-child {
    border-bottom: none;
}

.sum-k {
    color: var(--muted);
}

.sum-v {
    font-weight: 600;
    color: var(--dark);
    text-align: right;
    max-width: 260px;
}

.doc-check-list {
    list-style: none;
}

.doc-check-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--sand3);
}

.doc-check-list li:last-child {
    border-bottom: none;
}

.ck {
    font-size: 14px;
    font-weight: 700;
}

.ck.ok {
    color: var(--green);
}

.ck.no {
    color: #e53e3e;
}

/* ══════════════════════ PRICE BOX ══════════════════════ */
.price-box {
    background: var(--red-pale);
    border: 1.5px solid var(--red-border);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-lbl {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.price-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
}

.price-cur {
    font-size: 18px;
    color: var(--red);
    font-weight: 700;
    margin-right: 4px;
}

.price-type {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* ══════════════════════ PAY METHODS ══════════════════════ */
.pay-methods {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.pay-opt {
    flex: 1;
    min-width: 110px;
    border: 2px solid var(--sand3);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    background: var(--sand);
    transition: all .2s;
}

.pay-opt:hover {
    border-color: var(--red);
    background: var(--red-pale);
}

.pay-opt.sel {
    border-color: var(--red);
    background: var(--red-pale);
}

.pay-opt-icon {
    font-size: 22px;
    margin-bottom: 5px;
}

.pay-opt-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
}

/* ══════════════════════ BUTTONS ══════════════════════ */
.btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: all .25s;
    margin-top: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red2), var(--red));
    color: #fff;
    box-shadow: var(--sh-red);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(246, 8, 8, .28);
}

.btn-primary:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.btn-ghost {
    background: var(--white);
    color: var(--red);
    border: 1.5px solid var(--red-border);
    box-shadow: 0 2px 8px rgba(90, 50, 10, .06);
}

.btn-ghost:hover {
    background: var(--red-pale);
    border-color: var(--red);
}

/* ══════════════════════ ALERTS ══════════════════════ */
.alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
    display: none;
}

.alert.show {
    display: block;
}

.alert-err {
    background: #fdecea;
    border: 1px solid #feb2b2;
    color: #c53030;
}

.alert-info {
    background: var(--green-bg);
    border: 1px solid #9ae6b4;
    color: #276749;
}

.alert-warn {
    background: #fffbeb;
    border: 1px solid #f6e05e;
    color: #744210;
}

/* ══════════════════════ SPINNER ══════════════════════ */
.spin {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: rot .7s linear infinite;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes rot {
    to {
        transform: rotate(360deg)
    }
}

/* ══════════════════════ SUCCESS PAGE ══════════════════════ */
.success-wrap {
    text-align: center;
    padding: 16px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--green-bg);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ref-box {
    background: var(--red-pale);
    border: 1px solid var(--red-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
}

.ref-id {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
}

.ref-lbl {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
}

.info-box {
    background: var(--sand2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.info-box strong {
    color: var(--dark);
}



/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media(max-width:640px) {
    .card {
        padding: 24px 18px;
        margin: 20px 12px 40px;
    }

    .frow {
        grid-template-columns: 1fr;
    }

    .doc-grid {
        grid-template-columns: 1fr;
    }

    .stepper {
        padding: 16px 10px;
    }

    .step-lbl {
        font-size: 10px;
    }

    .app-header {
        padding: 14px 18px;
    }

    .pay-methods {
        flex-direction: column;
    }
}