
:root {
    --deep-green: #0b3327;
    --mid-green: #12503e;
    --leaf-green: #1c8264;
    --leaf-soft: #eaf4ee;
    --gold: #bd9440;
    --gold-deep: #9c7a2f;
    --gold-soft: #f6ecd2;
    --cream: #faf8f2;
    --ink: #152420;
    --muted: #6d8378;
    --line: #e6ede8;
    --radius: 24px;
    --green-dark: #0b3d2e;
    --green: #0e5c3f;
    --green-mid: #1a7a52;
    --gold: #e8a93a;
    --gold-2: #d4942a;
    --cream: #faf8f3;
    --text: #1c2a24;
    --muted: #5b6b63;
    --border: #e4e2da;
    --white: #fff;
    --shadow: 0 10px 40px rgba(10, 40, 30, 0.15);
    --radius: 14px;
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
}

/* fields   */


img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1453px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Top Bar ===== */
.topbar {
    background: var(--green-dark);
    color: #dcefe6;
    font-size: 13px;
    padding: 8px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar .left {
    display: flex;
    gap: 22px;
}

.topbar .left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar .social {
    display: flex;
    gap: 8px;
}

.topbar .social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.topbar .social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== Header ===== */
header.main {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 60px;
    margin-bottom: 14px;
}

nav.primary {
    display: flex;
    align-items: center;
    gap: 6px;
}

nav.primary>a,
.nav-item>.nav-link {
    font-size: 13px;
    font-weight: 400;
    color: #2c3a34;
    padding: 8px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

nav.primary>a:hover,
.nav-item>.nav-link:hover {
    background: #f2f6f3;
    color: var(--green);
}

nav.primary a.active {
    color: var(--green);
    background: #eaf5ee;
}

.nav-item {
    position: relative;
}

.nav-item .caret {
    font-size: 10px;
    transition: var(--transition);
}

.nav-item .caret i {
    font-size: 10px;
}

.nav-item .dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 200px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 50;
}

.nav-item .dropdown a {
    display: block;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2c3a34;
    border-radius: 6px;
}

.nav-item .dropdown a:hover {
    background: #eaf5ee;
    color: var(--green);
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item:hover .caret i,
.nav-item.open .caret i {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang {
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2c3a34;
    cursor: pointer;
}

.lang i {
    font-size: 12px;
}

.btn {
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-outline {
    border: 2px solid var(--green);
    color: var(--green);
    background: transparent;
}

.btn-outline:hover {
    background: var(--green);
    color: #fff;
}

.btn-solid {
    background: #fff;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-solid:hover {
    background: var(--green);
    color: #fff;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 20, 0.5);
    z-index: 90;
}

.nav-overlay.show {
    display: block;
}

.nav-close {
    display: none;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #cfe6ea 0%, #f3e3d0 50%, #f6efe3 100%);
    overflow: hidden;
    padding: 60px 0 40px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 900;
    color: #1a2b23;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--green);
    display: block;
}

.hero-content p {
    margin-top: 16px;
    font-size: 17px;
    color: #3f4d47;
    max-width: 440px;
}

.hero-badges {
    display: flex;
    gap: 30px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badges .badge .ic {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-2);
    font-size: 18px;
    flex-shrink: 0;
}

.hero-badges .badge strong {
    display: block;
    font-size: 14px;
    color: #1a2b23;
}

.hero-badges .badge span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.hero-visual img {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 16px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.plane {
    position: absolute;
    top: 15px;
    left: 10px;
    font-size: 40px;
    transform: rotate(-20deg);
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.2));
    color: var(--gold);
    z-index: 2;
}

/* ===== Search Card ===== */
.search-card {
    max-width: 1453px;
    margin: -61px auto 0;
    background: var(--green-dark);
    border-radius: var(--radius);
    padding: 34px 40px;
    position: relative;
    z-index: 5;
    box-shadow: 0 25px 60px rgba(10, 40, 30, 0.35);
}

.search-card .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.search-card h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.search-card .head p {
    color: #bcd8c9;
    font-size: 14px;
    margin-top: 4px;
}

.pill {
    background: var(--green-mid);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fields {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.field label {
    display: block;
    margin-bottom: 10px;
    color: #1f6f43;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ============ Box ============ */
.field .box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;

    height: 60px;
    padding: 0 18px;

    background: #fff;
    border: 1.8px solid #d9e4dc;
    border-radius: 14px;

    transition: .35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
}

.field .box:hover {
    border-color: #1f6f43;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 111, 67, .15);
}

.field .box:focus-within {
    border-color: #1f6f43;
    box-shadow: 0 0 0 4px rgba(31, 111, 67, .15);
}

.field .box i {
    font-size: 18px;
    color: #1f6f43;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

/* ============ Native select / input (fallback) ============ */
.field .box select,
.field .box input {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

.field .box select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.field .box select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #222;
}

.field .box input {
    cursor: pointer;
}

.field .box input::placeholder {
    color: #999;
}

/* Custom arrow icon (native select ke liye) */
.field .box::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #1f6f43;
    font-size: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.field:nth-child(4) .box::after {
    display: none;
}

/* ============ Select2 Styling (override library defaults) ============ */
.field .select2-container {
    flex: 1;
    width: 100% !important;
}

.field .select2-container .select2-selection--single {
    height: 36px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 0;
}

.field .select2-container .select2-selection__rendered {
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 36px;
}

.field .select2-container .select2-selection__placeholder {
    color: #999;
}

.field .select2-container .select2-selection__arrow {
    display: none;
    /* apna custom arrow use ho raha hai (.box::after) */
}

.select2-dropdown {
    border: 1.8px solid #1f6f43;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    margin-top: 6px;
}

.select2-search--dropdown {
    padding: 10px;
}

.select2-search--dropdown .select2-search__field {
    border: 1.5px solid #d9e4dc;
    border-radius: 8px;
    padding: 8px 12px;
    outline: none;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #1f6f43;
}

.select2-results__option {
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
}

.select2-results__option--highlighted[aria-selected] {
    background: #1f6f43 !important;
    color: #fff !important;
}

.select2-results__option[aria-selected="true"] {
    background: #e8f5ed;
    color: #1f6f43;
    font-weight: 600;
}

/* ============ Flatpickr (Date) Styling ============ */
.flatpickr-calendar {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
    margin-top: 8px;
}

.flatpickr-months {
    background: #1f6f43;
    color: #fff;
    padding: 8px 0;
}

.flatpickr-current-month {
    color: #fff;
    font-weight: 600;
}

.flatpickr-current-month input.cur-year {
    color: #fff;
}

.flatpickr-weekday {
    color: #1f6f43;
    font-weight: 700;
    background: #f4faf6;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: #1f6f43;
    border-color: #1f6f43;
}

.flatpickr-day.today {
    border-color: #1f6f43;
}

.flatpickr-day:hover {
    background: #e8f5ed;
    color: #1f6f43;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #fff;
}

/* ============ Responsive ============ */
@media(max-width:992px) {
    .fields {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .fields {
        grid-template-columns: 1fr;
    }
}

.search-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 16px;
}

.passport-pill {
    background: #0f4a35;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.search-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    padding: 16px 61px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 169, 58, 0.4);
}

.need-help {
    color: #e5f0ea;
    font-size: 13.5px;
}

.need-help a {
    color: var(--gold);
    font-weight: 700;
}

.need-help a:hover {
    text-decoration: underline;
}

/* ===== Stats Strip ===== */
.stats-strip {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    max-width: 1453px;
    padding: 16px 10px;
    /* Reduced padding */
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    box-shadow: var(--shadow);
}

.stats-strip .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: #2c3a34;
}

.stats-strip .stat .ic {
    color: var(--green);
    font-size: 22px;
}

/* ===== Sections ===== */
section {
    padding: 30px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.section-head h2 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--green-dark);
}

.section-head a.view-all {
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-head a.view-all:hover {
    color: var(--gold-2);
}

/* ===== Destinations ===== */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.dest-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
}

.dest-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--green-dark);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}

.dest-info {
    position: absolute;
    bottom: 12px;
    left: 14px;
    color: #fff;
    z-index: 2;
}

.dest-info .name {
    font-weight: 800;
    font-size: 16px;
}

.dest-info .time {
    font-size: 11.5px;
    opacity: 0.9;
    margin-top: 2px;
}

/* ===== Countries Strip ===== */
.countries-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 24px;
    margin-top: 24px;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
}

.countries-strip .label {
    font-weight: 700;
    font-size: 13.5px;
    color: #2c3a34;
    margin-right: 10px;
}

.flag-icon {
    font-size: 24px;
    line-height: 1;
}

.more-pill {
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    cursor: pointer;
}

.more-pill:hover {
    background: var(--green);
    color: #fff;
}

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 18px;
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.service-card .ic {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #eaf5ee;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.service-card .title {
    font-weight: 800;
    font-size: 15px;
}

.service-card .desc {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 4px;
}

/* ===== Why Choose ===== */
.why {
    background: var(--green-dark);
    border-radius: var(--radius);
    color: #fff;
    padding: 30px 30px;
    box-shadow: var(--shadow);
}

.why h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.why h2 .dash {
    color: var(--gold);
    margin: 0 12px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.why-item .ic {
    font-size: 28px;
    color: var(--gold);
}

.why-item .t {
    font-weight: 800;
    font-size: 14.5px;
}

.why-item .d {
    font-size: 12px;
    color: #c6ddd0;
}

/* ===== How It Works ===== */
.how-grid {
    display: flex;
    justify-content: space-between;
    /* gap: 0; */
    align-items: center;

}

.how-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.how-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.how-card .num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--green-dark);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-card .ic {
    font-size: 28px;
    color: var(--green);
    margin: 14px 0 10px;
}

.how-card .t {
    font-weight: 800;
    font-size: 14.5px;
}

.how-card .d {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 6px;
}

.arrow {
    text-align: center;
    font-size: 20px;
    color: var(--gold);
}

/* ===== Testimonials ===== */
.test-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.test-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    transition: var(--transition);
}

.test-card:hover {
    box-shadow: var(--shadow);
}

.test-card .quote {
    color: var(--gold-2);
    font-size: 28px;
    font-weight: 900;
}

.test-card p {
    font-size: 13.5px;
    color: #3d4a44;
    margin: 10px 0 16px;
    line-height: 1.6;
}

.test-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-person img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.test-person .name {
    font-weight: 700;
    font-size: 13.5px;
}

.test-person .stars {
    color: #f2b23c;
    font-size: 12px;
}

/* ===== Accept Card ===== */
.accept-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.accept-card h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--green-dark);
}

.pay-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.pay-icons span {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition);
}

.pay-icons span:hover {
    border-color: var(--gold);
    background: #faf6ee;
}

.pay-icons span i {
    font-size: 14px;
}

.ssl {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

.ssl i {
    color: var(--green);
}

/* ===== Newsletter ===== */
.newsletter {
    background: var(--green-dark);
    border-radius: var(--radius);
    padding: 28px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: var(--shadow);
}

.newsletter h3 {
    font-size: 19px;
    font-weight: 800;
}

.newsletter h3 i {
    margin-right: 10px;
}

.newsletter p {
    font-size: 13.5px;
    color: #cfe4d9;
    margin-top: 4px;
}

.newsletter form {
    display: flex;
    gap: 0;
}

.newsletter input {
    padding: 12px 18px;
    border: none;
    border-radius: 8px 0 0 8px;
    width: 260px;
    font-size: 13.5px;
    outline: none;
}

.newsletter button {
    background: var(--gold);
    border: none;
    color: #fff;
    font-weight: 800;
    padding: 0 24px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 13.5px;
    transition: var(--transition);
}

.newsletter button:hover {
    background: var(--gold-2);
}

/* ===== Footer ===== */
footer {
    background: #f3f1ea;
    padding-top: 50px;
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.footer-grid h5 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    color: var(--green-dark);
}

.footer-grid li {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
}

.footer-grid li a:hover {
    color: var(--green);
}

.footer-about p {
    font-size: 13.5px;
    color: var(--muted);
    margin: 12px 0 18px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.footer-contact {
    padding: 20px 0;
}

.footer-contact h5 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    color: var(--green-dark);
}

.footer-contact ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact ul li {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact ul li i {
    color: var(--green);
    width: 18px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 18px 0;
    text-align: center;
    font-size: 12.5px;
    color: var(--muted);
}

.footer-bottom a {
    font-weight: 700;
    color: #2c3a34;
}

.footer-bottom a:hover {
    color: var(--green);
}

/* ===== Responsive ===== */
/* ===== Tablet & Small Laptop ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-visual {
        height: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* ===== Mobile Menu Breakpoint ===== */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    nav.primary {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 80vw;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 80px 20px 24px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 95;
        overflow-y: auto;
    }

    nav.primary.open {
        transform: translateX(0);
    }

    nav.primary>a,
    .nav-item>.nav-link {
        padding: 12px 14px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        justify-content: space-between;
        font-size: 15px;
    }

    .nav-item .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0 0 0 16px;
        min-width: 0;
    }

    .nav-item.open .dropdown {
        display: block;
    }

    .nav-item .caret i {
        transition: var(--transition);
    }

    .nav-item.open .caret i {
        transform: rotate(180deg);
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--green-dark);
    }

    .header-actions .lang {
        display: none;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .header-actions .btn-solid {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 12px auto 0;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-visual {
        height: 250px;
        margin-top: 20px;
    }

    .fields {
        grid-template-columns: 1fr 1fr;
    }

    .search-row {
        flex-direction: column;
        align-items: stretch;
    }

    .search-btn {
        justify-content: center;
    }

    .test-wrap {
        grid-template-columns: 1fr;
    }

    .test-grid {
        grid-template-columns: 1fr 1fr;
    }

    .countries-strip {
        gap: 8px;
        padding: 12px 16px;
    }

    .country-item {
        padding: 3px 8px 3px 4px;
    }

    .flag-icon {
        font-size: 18px;
    }

    .country-name {
        font-size: 11px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

/* ===== Tablet ===== */
@media (max-width: 768px) {
    .topbar .left span:nth-child(2) {
        display: none;
    }

    .topbar .left span:nth-child(3) {
        display: none;
    }

    .hero {
        padding: 30px 0 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-badges {
        gap: 14px;
    }

    .hero-badges .badge .ic {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .hero-badges .badge strong {
        font-size: 13px;
    }

    .hero-badges .badge span {
        font-size: 11px;
    }

    .hero-visual {
        height: 200px;
    }

    .plane {
        font-size: 30px;
        top: 10px;
        left: 5px;
    }

    .search-card {
        margin-top: -35px;
        padding: 20px 18px;
    }

    .search-card h2 {
        font-size: 18px;
    }

    .search-card .head p {
        font-size: 13px;
    }

    .fields {
        gap: 8px;
    }

    .field .box {
        padding: 10px 12px;
        font-size: 13px;
    }

    .passport-pill {
        font-size: 12px;
        padding: 8px 14px;
    }

    .search-btn {
        font-size: 14px;
        padding: 12px 30px;
    }

    .need-help {
        font-size: 12px;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 14px 10px;
        margin-top: 18px;
        gap: 10px;
    }

    .stats-strip .stat {
        font-size: 12px;
    }

    .stats-strip .stat .ic {
        font-size: 18px;
    }

    section {
        padding: 25px 0;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 18px;
    }

    .section-head h2 {
        font-size: 20px;
    }

    .section-head a.view-all {
        font-size: 13px;
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .dest-card {
        height: 160px;
    }

    .dest-info .name {
        font-size: 14px;
    }

    .dest-info .time {
        font-size: 10px;
    }

    .countries-strip .label {
        font-size: 12px;
        width: 100%;
        margin-bottom: 4px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-card {
        padding: 16px 14px;
    }

    .service-card .ic {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-card .title {
        font-size: 14px;
    }

    .service-card .desc {
        font-size: 12px;
    }

    .why {
        padding: 22px 18px;
    }

    .why h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .why h2 .dash {
        margin: 0 6px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .why-item .ic {
        font-size: 22px;
    }

    .why-item .t {
        font-size: 13px;
    }

    .why-item .d {
        font-size: 11px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .arrow {
        display: none;
    }

    .how-card {
        padding: 18px 16px;
    }

    .how-card .ic {
        font-size: 24px;
        margin: 10px 0 8px;
    }

    .how-card .t {
        font-size: 14px;
    }

    .how-card .d {
        font-size: 12px;
    }

    .test-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .test-card {
        padding: 16px;
    }

    .test-card p {
        font-size: 13px;
    }

    .accept-card {
        padding: 16px;
    }

    .pay-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .pay-icons span {
        font-size: 10px;
        padding: 6px 4px;
    }

    .newsletter {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 18px;
    }

    .newsletter h3 {
        font-size: 16px;
    }

    .newsletter p {
        font-size: 13px;
    }

    .newsletter form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter input {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 8px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .newsletter button {
        border-radius: 8px;
        padding: 10px;
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 16px;
    }

    .footer-about p {
        font-size: 13px;
    }

    .footer-grid h5 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-grid li {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .footer-contact ul {
        flex-direction: column;
        gap: 8px;
    }

    .footer-contact ul li {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 14px 0;
    }
}

/* ===== Mobile Small ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .topbar {
        padding: 4px 0;
    }

    .topbar .left {
        gap: 8px;
    }

    .topbar .left span {
        font-size: 10px;
        gap: 3px;
    }

    .topbar .social a {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }

    .topbar .social {
        gap: 4px;
    }

    .site-logo {
        height: 32px;
    }

    .header-actions {
        gap: 4px;
    }

    .header-actions .btn-solid {
        padding: 6px 12px;
        font-size: 11px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
        gap: 4px;
    }

    .hero {
        padding: 20px 0 10px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
        margin-top: 8px;
    }

    .hero-badges {
        gap: 10px;
        margin-top: 16px;
    }

    .hero-badges .badge .ic {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .hero-badges .badge strong {
        font-size: 11px;
    }

    .hero-badges .badge span {
        font-size: 10px;
    }

    .hero-visual {
        height: 160px;
        margin-top: 12px;
    }

    .plane {
        font-size: 24px;
        top: 5px;
        left: 5px;
    }

    .search-card {
        margin-top: -25px;
        padding: 14px 12px;
        border-radius: 10px;
    }

    .search-card .head {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 12px;
    }

    .search-card h2 {
        font-size: 16px;
    }

    .search-card .head p {
        font-size: 12px;
    }

    .pill {
        font-size: 10px;
        padding: 4px 12px;
    }

    .fields {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .field label {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .field .box {
        padding: 8px 10px;
        font-size: 12px;
        border-radius: 6px;
    }

    .passport-pill {
        font-size: 11px;
        padding: 6px 12px;
        justify-content: center;
    }

    .search-btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .need-help {
        font-size: 11px;
        text-align: center;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px 8px;
        gap: 8px;
        margin-top: 14px;
        border-radius: 8px;
    }

    .stats-strip .stat {
        font-size: 11px;
        gap: 4px;
    }

    .stats-strip .stat .ic {
        font-size: 16px;
    }

    section {
        padding: 18px 0;
    }

    .section-head h2 {
        font-size: 17px;
    }

    .section-head a.view-all {
        font-size: 12px;
    }

    .dest-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .dest-card {
        height: 120px;
        border-radius: 8px;
    }

    .dest-tag {
        font-size: 9px;
        padding: 2px 8px;
        top: 6px;
        left: 6px;
    }

    .dest-info {
        bottom: 8px;
        left: 10px;
    }

    .dest-info .name {
        font-size: 12px;
    }

    .dest-info .time {
        font-size: 9px;
    }

    .countries-strip {
        padding: 8px 10px;
        gap: 6px;
        margin-top: 12px;
        border-radius: 8px;
    }

    .countries-strip .label {
        font-size: 10px;
        width: 100%;
        margin-bottom: 2px;
    }

    .country-item {
        padding: 2px 6px 2px 3px;
        border-radius: 12px;
    }

    .flag-icon {
        font-size: 14px;
    }

    .country-name {
        font-size: 9px;
    }

    .more-pill {
        font-size: 10px;
        padding: 2px 10px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .service-card {
        padding: 12px 10px;
        border-radius: 8px;
    }

    .service-card .ic {
        width: 34px;
        height: 34px;
        font-size: 15px;
        margin-bottom: 8px;
        border-radius: 8px;
    }

    .service-card .title {
        font-size: 12px;
    }

    .service-card .desc {
        font-size: 10px;
    }

    .why {
        padding: 16px 12px;
        border-radius: 10px;
    }

    .why h2 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .why h2 .dash {
        margin: 0 4px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px 8px;
    }

    .why-item .ic {
        font-size: 18px;
    }

    .why-item .t {
        font-size: 11px;
    }

    .why-item .d {
        font-size: 10px;
    }

    .how-card {
        padding: 14px 12px;
        border-radius: 8px;
    }

    .how-card .num {
        width: 24px;
        height: 24px;
        font-size: 11px;
        top: -12px;
    }

    .how-card .ic {
        font-size: 20px;
        margin: 8px 0 6px;
    }

    .how-card .t {
        font-size: 13px;
    }

    .how-card .d {
        font-size: 11px;
    }

    .test-card {
        padding: 14px;
        border-radius: 8px;
    }

    .test-card .quote {
        font-size: 20px;
    }

    .test-card p {
        font-size: 12px;
        margin: 6px 0 12px;
    }

    .test-person img {
        width: 32px;
        height: 32px;
    }

    .test-person .name {
        font-size: 12px;
    }

    .test-person .stars {
        font-size: 10px;
    }

    .accept-card {
        padding: 14px;
        border-radius: 8px;
    }

    .accept-card h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .pay-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 12px;
    }

    .pay-icons span {
        font-size: 9px;
        padding: 4px 2px;
        border-radius: 4px;
    }

    .pay-icons span i {
        font-size: 11px;
    }

    .ssl {
        font-size: 10px;
        gap: 4px;
    }

    .newsletter {
        padding: 16px 14px;
        border-radius: 10px;
    }

    .newsletter h3 {
        font-size: 14px;
    }

    .newsletter h3 i {
        margin-right: 6px;
    }

    .newsletter p {
        font-size: 11px;
    }

    .newsletter input {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 6px;
        margin-bottom: 6px;
    }

    .newsletter button {
        padding: 8px;
        font-size: 12px;
        border-radius: 6px;
    }

    .footer-grid {
        gap: 16px;
        padding-bottom: 12px;
    }

    .footer-about p {
        font-size: 12px;
        margin: 8px 0 12px;
    }

    .footer-logo {
        height: 40px;
        margin-bottom: 10px;
    }

    .footer-grid h5 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-grid li {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .footer-social a {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .footer-contact {
        padding: 12px 0;
    }

    .footer-contact h5 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-contact ul li {
        font-size: 11px;
        gap: 6px;
    }

    .footer-bottom {
        font-size: 10px;
        padding: 10px 0;
    }

    /* Mobile Menu adjustments */
    nav.primary {
        width: 260px;
        padding: 70px 16px 20px;
    }

    nav.primary>a,
    .nav-item>.nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .nav-close {
        top: 16px;
        right: 16px;
        font-size: 20px;
    }

    .nav-item .dropdown a {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ===== Extra Small Devices ===== */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 20px;
    }

    .hero-badges .badge .ic {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .hero-badges .badge strong {
        font-size: 10px;
    }

    .hero-badges .badge span {
        font-size: 9px;
    }

    .dest-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .dest-card {
        height: 100px;
    }

    .dest-info .name {
        font-size: 10px;
    }

    .dest-info .time {
        font-size: 8px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px 6px;
    }

    .search-card h2 {
        font-size: 14px;
    }

    .search-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/*

about */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

.leor-about {
    --green-dark: #0a3d2e;
    --green: #0d4a37;
    --green-light: #e7f0ec;
    --gold: #f0a629;
    --gold-dark: #d98f1a;
    --cream: #f7f2e6;
    --ink: #17251f;
    --muted: #5f6f68;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(10, 61, 46, 0.10);
    --ease: cubic-bezier(.22, .9, .32, 1);
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
}

.leor-about,
.leor-about * {
    box-sizing: border-box;
}

.leor-about h1,
.leor-about h2,
.leor-about h3,
.leor-about h4 {
    font-family: 'Poppins', sans-serif;
    margin: 0 0 .5em;
    color: var(--green-dark);
}

.leor-about p {
    margin: 0 0 1em;
    color: var(--muted);
}

.leor-about a {
    text-decoration: none;
    color: inherit;
}

.leor-about img {
    max-width: 100%;
    display: block;
}

.leor-about .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.leor-about .eyebrow {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .75rem;
    margin-bottom: 10px;
}

.leor-about .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: .92rem;
    cursor: pointer;
    border: 2px solid darkgreen;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}

.leor-about .btn-gold {
    background: var(--gold);
    color: var(--green-dark);
}

.leor-about .btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(240, 166, 41, .35);
}

.leor-about .btn-outline {
    background: transparent;
    border: 2px solid darkgreen;
}

.leor-about .btn-outline:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-3px);
}




/* Navbar */
.leor-about .navbar {
    background: var(--white);
    box-shadow: 0 2px 14px rgba(10, 61, 46, .06);
    position: sticky;
    top: 0;
    z-index: 50;
}

.leor-about .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}

.leor-about .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--green-dark);
    font-size: 1.2rem;
}

.leor-about .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--green-dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.leor-about .brand small {
    display: block;
    font-size: .55rem;
    letter-spacing: .2em;
    color: var(--gold-dark);
    font-weight: 700;
}

.leor-about .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: .94rem;
}

.leor-about .nav-links a {
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    transition: color .2s;
}

.leor-about .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .25s var(--ease);
}

.leor-about .nav-links a:hover::after,
.leor-about .nav-links a.active::after {
    width: 100%;
}

.leor-about .nav-links a.active {
    color: var(--green-dark);
    font-weight: 700;
}

.leor-about .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.leor-about .nav-btn-outline {
    padding: 9px 20px;
    border: 1.5px solid var(--green-dark);
    border-radius: 999px;
    font-weight: 600;
    font-size: .88rem;
    color: var(--green-dark);
    transition: .25s;
}

.leor-about .nav-btn-outline:hover {
    background: var(--green-dark);
    color: #fff;
}

.leor-about .nav-btn-solid {
    padding: 9px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .88rem;
    background: var(--green-dark);
    color: #fff;
    transition: .25s;
}

.leor-about .nav-btn-solid:hover {
    background: var(--gold);
    color: var(--green-dark);
}

/* Hero */
.leor-about .page-hero {
    background: linear-gradient(120deg, var(--green-dark), var(--green) 65%);
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
}

.leor-about .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 85% 20%, rgba(240, 166, 41, .18), transparent 45%),
            radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .08), transparent 40%);
}

.leor-about .page-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.leor-about .page-hero h1 {
    color: #fff;
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.leor-about .page-hero p.lead {
    color: #cfe4da;
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.02rem;
}

.leor-about .crumb {
    color: #a9c9bb;
    font-size: .85rem;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.leor-about .crumb span {
    color: var(--gold);
}

.leor-about .hero-plane {
    position: absolute;
    font-size: 2.4rem;
    color: var(--gold);
    animation: leorFly 9s linear infinite;
    opacity: .9;
}

@keyframes leorFly {
    0% {
        transform: translate(-10%, 60px) rotate(8deg);
    }

    50% {
        transform: translate(60vw, -10px) rotate(8deg);
    }

    100% {
        transform: translate(120vw, -40px) rotate(8deg);
    }
}

/* Reveal animation */
.leor-about .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.leor-about .reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.leor-about .reveal-delay-1 {
    transition-delay: .1s;
}

.leor-about .reveal-delay-2 {
    transition-delay: .22s;
}

.leor-about .reveal-delay-3 {
    transition-delay: .34s;
}

.leor-about .reveal-delay-4 {
    transition-delay: .46s;
}

/* Sections */
.leor-about section {
    padding: 70px 0;
}

.leor-about .section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 46px;
}

.leor-about .section-head h2 {
    font-size: 2rem;
}

/* Stats strip */
.leor-about .stats-strip {
    background: var(--white);
    margin-top: -56px;
    position: relative;
    z-index: 3;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.leor-about .stat {
    text-align: center;
    border-right: 1px solid #edece4;
}

.leor-about .stat:last-child {
    border-right: none;
}

.leor-about .stat .num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--green-dark);
}

.leor-about .stat .num span {
    color: var(--gold-dark);
}

.leor-about .stat .label {
    font-size: .82rem;
    color: var(--muted);
}

/* Story */
.leor-about .story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.leor-about .story-media {
    position: relative;
}

.leor-about .story-media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.leor-about .story-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: var(--gold);
    color: var(--green-dark);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(240, 166, 41, .35);
    font-family: 'Poppins', sans-serif;
}

.leor-about .story-badge b {
    display: block;
    font-size: 1.5rem;
}

.leor-about .story-badge small {
    font-size: .72rem;
    font-weight: 600;
}

.leor-about .story-text ul {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.leor-about .story-text li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--ink);
    font-weight: 500;
}

.leor-about .story-text li::before {
    content: '✓';
    background: var(--green-light);
    color: var(--green-dark);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    flex: none;
}

/* Mission/Vision cards */
.leor-about .mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.leor-about .mv-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 26px;
    box-shadow: var(--shadow);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    border-top: 4px solid var(--gold);
}

.leor-about .mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(10, 61, 46, .15);
}

.leor-about .mv-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

/* Team */
.leor-about .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.leor-about .team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform .3s var(--ease);
}

.leor-about .team-card:hover {
    transform: translateY(-8px);
}

.leor-about .team-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.leor-about .team-info {
    padding: 16px;
}

.leor-about .team-info h4 {
    margin: 0 0 2px;
    font-size: 1rem;
}

.leor-about .team-info span {
    color: var(--gold-dark);
    font-size: .82rem;
    font-weight: 600;
}

/* Blog */
.leor-about .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.leor-about .blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.leor-about .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 36px rgba(10, 61, 46, .16);
}

.leor-about .blog-thumb {
    height: 190px;
    overflow: hidden;
    position: relative;
}

.leor-about .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.leor-about .blog-card:hover .blog-thumb img {
    transform: scale(1.08);
}

.leor-about .blog-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--green-dark);
    font-size: .7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}

.leor-about .blog-body {
    padding: 20px 22px 24px;
}

.leor-about .blog-meta {
    font-size: .76rem;
    color: var(--muted);
    margin-bottom: 8px;
    display: flex;
    gap: 14px;
}

.leor-about .blog-body h3 {
    font-size: 1.08rem;
    line-height: 1.35;
}

.leor-about .blog-read {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: .86rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.leor-about .blog-read span {
    transition: transform .25s;
}

.leor-about .blog-card:hover .blog-read span {
    transform: translateX(5px);
}

/* Newsletter CTA */
.leor-about .cta-strip {
    background: var(--green-dark);
    border-radius: var(--radius);
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.leor-about .cta-strip h3 {
    color: #fff;
    margin-bottom: 4px;
    font-size: 1.3rem;
}

.leor-about .cta-strip p {
    color: #bcd6c9;
    margin: 0;
}

.leor-about .cta-form {
    display: flex;
    gap: 10px;
}

.leor-about .cta-form input {
    padding: 13px 16px;
    border-radius: 999px;
    border: none;
    min-width: 260px;
    font-family: 'Inter', sans-serif;
}

.leor-about .cta-form input:focus {
    outline: 2px solid var(--gold);
}



/* Mobile nav toggle (basic) */
.leor-about .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--green-dark);
    cursor: pointer;
}

@media(max-width:980px) {
    .leor-about .story {
        grid-template-columns: 1fr;
    }

    .leor-about .mv-grid,
    .leor-about .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leor-about .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leor-about .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .leor-about .nav-links {
        display: none;
    }

    .leor-about .nav-toggle {
        display: block;
    }
}

@media(prefers-reduced-motion:reduce) {
    .leor-about * {
        animation: none !important;
        transition: none !important;
    }

    .leor-about .reveal {
        opacity: 1;
        transform: none;
    }
}





/* contact.css – specific to contact page */


.leor-contact {
    --green-dark: #0a3d2e;
    --green: #0d4a37;
    --green-light: #e7f0ec;
    --gold: #f0a629;
    --gold-dark: #d98f1a;
    --cream: #f7f2e6;
    --ink: #17251f;
    --muted: #5f6f68;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(10, 61, 46, 0.10);
    --ease: cubic-bezier(.22, .9, .32, 1);
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
}

.leor-contact,
.leor-contact * {
    box-sizing: border-box;
}

.leor-contact h1,
.leor-contact h2,
.leor-contact h3,
.leor-contact h4 {
    font-family: 'Poppins', sans-serif;
    margin: 0 0 .5em;
    color: var(--green-dark);
}

.leor-contact p {
    margin: 0 0 1em;
    color: var(--muted);
}

.leor-contact a {
    text-decoration: none;
    color: inherit;
}

.leor-contact img {
    max-width: 100%;
    display: block;
}

.leor-contact .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.leor-contact .eyebrow {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .75rem;
    margin-bottom: 10px;
}

.leor-contact .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: .92rem;
    cursor: pointer;
    border: none;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}

.leor-contact .btn-gold {
    background: var(--gold);
    color: var(--green-dark);
}

.leor-contact .btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(240, 166, 41, .35);
}

.leor-contact .btn-outline {
    background: transparent;
    border: 1.5px solid var(--white);
    color: var(--white);
}

.leor-contact .btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-3px);
}



/* Navbar */
.leor-contact .navbar {
    background: var(--white);
    box-shadow: 0 2px 14px rgba(10, 61, 46, .06);
    position: sticky;
    top: 0;
    z-index: 50;
}

.leor-contact .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}

.leor-contact .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--green-dark);
    font-size: 1.2rem;
}

.leor-contact .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--green-dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.leor-contact .brand small {
    display: block;
    font-size: .55rem;
    letter-spacing: .2em;
    color: var(--gold-dark);
    font-weight: 700;
}

.leor-contact .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: .94rem;
}

.leor-contact .nav-links a {
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    transition: color .2s;
}

.leor-contact .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .25s var(--ease);
}

.leor-contact .nav-links a:hover::after,
.leor-contact .nav-links a.active::after {
    width: 100%;
}

.leor-contact .nav-links a.active {
    color: var(--green-dark);
    font-weight: 700;
}

.leor-contact .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.leor-contact .nav-btn-outline {
    padding: 9px 20px;
    border: 1.5px solid var(--green-dark);
    border-radius: 999px;
    font-weight: 600;
    font-size: .88rem;
    color: var(--green-dark);
    transition: .25s;
}

.leor-contact .nav-btn-outline:hover {
    background: var(--green-dark);
    color: #fff;
}

.leor-contact .nav-btn-solid {
    padding: 9px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .88rem;
    background: var(--green-dark);
    color: #fff;
    transition: .25s;
}

.leor-contact .nav-btn-solid:hover {
    background: var(--gold);
    color: var(--green-dark);
}

/* Hero */
.leor-contact .page-hero {
    background: linear-gradient(120deg, var(--green-dark), var(--green) 65%);
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
}

.leor-contact .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 85% 20%, rgba(240, 166, 41, .18), transparent 45%),
            radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .08), transparent 40%);
}

.leor-contact .page-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.leor-contact .page-hero h1 {
    color: #fff;
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.leor-contact .page-hero p.lead {
    color: #cfe4da;
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.02rem;
}

.leor-contact .crumb {
    color: #a9c9bb;
    font-size: .85rem;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.leor-contact .crumb span {
    color: var(--gold);
}

.leor-contact .hero-plane {
    position: absolute;
    font-size: 2.4rem;
    color: var(--gold);
    animation: leorFly2 9s linear infinite;
    opacity: .9;
}

@keyframes leorFly2 {
    0% {
        transform: translate(-10%, 60px) rotate(8deg);
    }

    50% {
        transform: translate(60vw, -10px) rotate(8deg);
    }

    100% {
        transform: translate(120vw, -40px) rotate(8deg);
    }
}

/* Reveal animation */
.leor-contact .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.leor-contact .reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.leor-contact .reveal-delay-1 {
    transition-delay: .1s;
}

.leor-contact .reveal-delay-2 {
    transition-delay: .22s;
}

.leor-contact .reveal-delay-3 {
    transition-delay: .34s;
}

.leor-contact .reveal-delay-4 {
    transition-delay: .46s;
}

/* Sections */
.leor-contact section {
    padding: 70px 0;
}

.leor-contact .section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 46px;
}

.leor-contact .section-head h2 {
    font-size: 2rem;
}

/* Contact cards */
.leor-contact .contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.leor-contact .contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .3s var(--ease);
}

.leor-contact .contact-card:hover {
    transform: translateY(-8px);
}

.leor-contact .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
}

.leor-contact .contact-card h4 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.leor-contact .contact-card p {
    margin: 0;
    font-size: .88rem;
}

/* Form + map split */
.leor-contact .contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.leor-contact .form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 38px;
}

.leor-contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.leor-contact .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.leor-contact .field label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink);
}

.leor-contact .field input,
.leor-contact .field select,
.leor-contact .field textarea {
    padding: 12px 14px;
    border: 1.5px solid #e5e2d6;
    border-radius: 9px;
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    background: var(--cream);
    transition: border-color .2s, box-shadow .2s;
}

.leor-contact .field input:focus,
.leor-contact .field select:focus,
.leor-contact .field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(240, 166, 41, .18);
}

.leor-contact .field textarea {
    resize: vertical;
    min-height: 110px;
}

.leor-contact .form-note {
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.leor-contact .map-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    min-height: 320px;
}

.leor-contact .map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 320px;
}

.leor-contact .map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    background: var(--green-dark);
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px 10px 10px 2px;
    font-size: .78rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

/* Accordion */
.leor-contact .faq {
    max-width: 820px;
    margin: 0 auto;
}

.leor-contact .faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 14px;
    overflow: hidden;
}

.leor-contact .faq-q {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: .96rem;
}

.leor-contact .faq-q .plus {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transition: transform .3s var(--ease), background .3s;
}

.leor-contact .faq-item.open .faq-q .plus {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--green-dark);
}

.leor-contact .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.leor-contact .faq-item.open .faq-a {
    max-height: 220px;
}

.leor-contact .faq-a p {
    padding: 0 24px 20px;
    margin: 0;
}

/* Newsletter CTA */
.leor-contact .cta-strip {
    background: var(--green-dark);
    border-radius: var(--radius);
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.leor-contact .cta-strip h3 {
    color: #fff;
    margin-bottom: 4px;
    font-size: 1.3rem;
}

.leor-contact .cta-strip p {
    color: #bcd6c9;
    margin: 0;
}

.leor-contact .cta-form {
    display: flex;
    gap: 10px;
}

.leor-contact .cta-form input {
    padding: 13px 16px;
    border-radius: 999px;
    border: none;
    min-width: 260px;
    font-family: 'Inter', sans-serif;
}

.leor-contact .cta-form input:focus {
    outline: 2px solid var(--gold);
}




/* Mobile nav toggle (basic) */
.leor-contact .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--green-dark);
    cursor: pointer;
}

@media(max-width:980px) {
    .leor-contact .contact-split {
        grid-template-columns: 1fr;
    }

    .leor-contact .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leor-contact .nav-links {
        display: none;
    }

    .leor-contact .nav-toggle {
        display: block;
    }
}

@media(prefers-reduced-motion:reduce) {
    .leor-contact * {
        animation: none !important;
        transition: none !important;
    }

    .leor-contact .reveal {
        opacity: 1;
        transform: none;
    }
}



.box select,
.box input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: inherit;
    color: inherit;
}

.passport-pill select {
    border: none;
    outline: none;
    background: transparent;
    font-size: inherit;
    color: inherit;
}

/* bottom menu  */

.mobile-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #ddd;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, .12);
    z-index: 9999;
}

.mobile-nav a {
    text-decoration: none;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    transition: .3s;
}

.mobile-nav a i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-nav a.active,
.mobile-nav a:hover {
    color: rgba(0, 128, 0, 0.842);
}

@media (min-width:768px) {
    .mobile-nav {
        display: none;
    }
}

/* menu end  */



/* detailpage.css start  */

.visa-page {
    --deep-green: #0b3327;
    --mid-green: #12503e;
    --leaf-green: #1c8264;
    --leaf-soft: #eaf4ee;
    --gold: #bd9440;
    --gold-deep: #9c7a2f;
    --gold-soft: #f6ecd2;
    --cream: #faf8f2;
    --ink: #152420;
    --muted: #6d8378;
    --line: #e6ede8;
    --radius: 24px;
    min-height: 100vh;
    background: var(--cream);
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    background: #faf8f2;
    font-family: 'Manrope', sans-serif;
    color: #152420;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}



/* ===== VISA MAIN ===== */
.visa-main {
    display: flex;
    justify-content: center;
    padding: 48px 32px 96px;
}

.visa-shell {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ---- reveal-on-scroll ---- */
.reveal {
    /* opacity: 0; */
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(.2, .7, .3, 1), transform 0.7s cubic-bezier(.2, .7, .3, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal.stagger.in-view>* {
    animation: none;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- HERO ---- */
.visa-hero {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 460px;
    box-shadow: 0 24px 56px -20px rgba(11, 51, 39, 0.5);
}

.visa-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 22s ease-in-out infinite alternate;
}

@keyframes kenburns {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.08) translateY(-2%);
    }
}

.hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 51, 39, 0.05) 25%, rgba(11, 51, 39, 0.82) 100%);
}

.flight-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.55;
}

.flight-path .route {
    fill: none;
    stroke: #f6ecd2;
    stroke-width: 2;
    stroke-dasharray: 3 10;
    stroke-linecap: round;
}

.flight-plane {
    offset-path: path('M 40 340 C 260 120, 620 420, 960 90');
    animation: fly 9s linear infinite;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

@keyframes fly {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

.hero-flag {
    position: absolute;
    top: 28px;
    left: 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 10px 24px 10px 16px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--deep-green);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.hero-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    background: rgba(189, 148, 64, 0.95);
    color: #2a2005;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge i {
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }
}

.hero-caption {
    position: absolute;
    left: 40px;
    bottom: 40px;
    right: 40px;
    color: #fff;
}

.hero-caption .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.hero-caption .eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    display: inline-block;
}

.hero-caption h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    margin: 0 0 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.hero-caption p {
    margin: 0 0 20px;
    color: #e4ece7;
    font-size: 17px;
    max-width: 560px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: #dbe8e1;
}

.hero-scroll-cue .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: dotmove 1.6s ease-in-out infinite;
}

@keyframes dotmove {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}

/* ---- STATS BAR ---- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--deep-green);
    border-radius: 20px;
    padding: 30px 12px;
    box-shadow: 0 20px 44px -22px rgba(11, 51, 39, 0.6);
}

.stat-item {
    text-align: center;
    padding: 6px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
}

.stat-num .suffix {
    font-size: 22px;
    color: var(--gold);
}

.stat-label {
    margin-top: 8px;
    font-size: 12.5px;
    color: #b9cdc2;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ---- LAYOUT: main column + sticky sidebar ---- */
.visa-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.visa-main-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.visa-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 44px 48px 48px;
    box-shadow: 0 24px 56px -24px rgba(11, 51, 39, 0.28);
    border: 1px solid var(--line);
}

.visa-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.visa-head h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: var(--deep-green);
}

.visa-sub {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    font-weight: 500;
    padding-bottom: 4px;
}

.head-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.head-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--leaf-soft);
    color: var(--mid-green);
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 30px;
}

.head-badge i {
    color: var(--leaf-green);
    font-size: 11px;
}

.head-badge.gold {
    background: var(--gold-soft);
    color: var(--gold-deep);
}

.head-badge.gold i {
    color: var(--gold);
}

/* info row */
.info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.info-box {
    background: var(--leaf-soft);
    border-radius: 16px;
    padding: 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px -12px rgba(28, 130, 100, 0.35);
}

.info-box i {
    color: var(--leaf-green);
    font-size: 17px;
    margin-bottom: 2px;
}

.info-label {
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.info-val {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--deep-green);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 8px;
}

section h2 {
    font-size: 18.5px;
    font-weight: 800;
    color: var(--deep-green);
    margin: 0 0 14px;
    letter-spacing: 0.01em;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #3d4d47;
    margin: 0;
    max-height: 80px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.about-text.open {
    max-height: 600px;
}

.doc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.doc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #3d4d47;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.doc-list li:hover {
    background: var(--leaf-soft);
    transform: translateX(4px);
}

.doc-list li i {
    color: var(--gold);
    font-size: 12px;
    width: 16px;
}

.doc-list li.extra {
    display: none;
}

.doc-list.open li.extra {
    display: flex;
    animation: fadeUp 0.35s ease;
}

.link-toggle {
    background: none;
    border: none;
    color: var(--leaf-green);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 0 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-toggle i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.link-toggle.rotated i {
    transform: rotate(180deg);
}

/* eligibility strip */
.eligibility {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px dashed var(--line);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: start;
}

.eligibility h2 {
    margin-bottom: 12px;
}

.eligibility p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #3d4d47;
}

.eligibility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.elig-tag {
    background: var(--cream);
    border: 1px solid var(--line);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--mid-green);
    padding: 6px 12px;
    border-radius: 20px;
}

.not-eligible {
    background: var(--leaf-soft);
    border-radius: 16px;
    padding: 18px 20px;
}

.not-eligible h3 {
    font-size: 13.5px;
    color: var(--deep-green);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.not-eligible h3 i {
    color: var(--gold);
}

.not-eligible p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ---- TIMELINE (process) ---- */
.timeline-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 44px 48px;
    box-shadow: 0 24px 56px -24px rgba(11, 51, 39, 0.28);
    border: 1px solid var(--line);
}

.timeline-card h2 {
    font-size: 22px;
}

.timeline-sub {
    color: var(--muted);
    font-size: 14.5px;
    margin: -6px 0 30px;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
}

.tl-step {
    position: relative;
    padding-top: 66px;
    text-align: left;
}

.tl-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--leaf-soft);
    color: var(--deep-green);
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px var(--leaf-soft);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.tl-step:hover .tl-num {
    background: var(--leaf-green);
    color: #fff;
    transform: scale(1.08);
}

.tl-step h4 {
    font-size: 15px;
    color: var(--deep-green);
    margin-bottom: 6px;
}

.tl-step p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* ---- FAQ ---- */
.faq-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 44px 48px;
    box-shadow: 0 24px 56px -24px rgba(11, 51, 39, 0.28);
    border: 1px solid var(--line);
}

.faq-card h2 {
    font-size: 22px;
    margin-bottom: 22px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item:first-of-type {
    border-top: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--deep-green);
    gap: 16px;
}

.faq-q .fa-plus {
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-q .fa-plus {
    transform: rotate(135deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 14px;
    color: #3d4d47;
    line-height: 1.75;
    padding: 0 4px;
}

.faq-item.open .faq-a {
    max-height: 220px;
    padding: 0 4px 20px;
}

/* ---- SIDEBAR ---- */
.visa-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 26px 30px;
    box-shadow: 0 20px 48px -20px rgba(11, 51, 39, 0.3);
    border: 1px solid var(--line);
}

.side-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.side-head .flag-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--leaf-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.side-head strong {
    display: block;
    font-size: 15.5px;
    color: var(--deep-green);
}

.side-head span {
    font-size: 12.5px;
    color: var(--muted);
}

.side-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.side-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
}

.side-list li span:first-child {
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-list li span:first-child i {
    color: var(--leaf-green);
    width: 14px;
}

.side-list li span:last-child {
    font-weight: 700;
    color: var(--ink);
}

.fees {
    background: var(--gold-soft);
    border: 1.5px solid var(--gold);
    border-radius: 16px;
    padding: 18px 20px 14px;
    margin-bottom: 20px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 14.5px;
    border-bottom: 1px dashed rgba(157, 122, 47, 0.35);
    transition: padding-left 0.2s ease;
}

.fee-row:hover {
    padding-left: 6px;
}

.fee-row span:first-child {
    color: var(--gold-deep);
    font-weight: 500;
}

.fee-row span:last-child {
    font-weight: 700;
    color: var(--ink);
}

.fee-row.total {
    border-bottom: none;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 2px solid var(--gold);
}

.fee-row.total span:first-child {
    color: var(--deep-green);
    font-weight: 700;
    font-size: 15.5px;
}

.fee-row.total span:last-child {
    color: var(--leaf-green);
    font-size: 19px;
    font-weight: 800;
}

.fee-note {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--gold-deep);
    font-style: italic;
}

.apply-btn {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 17px 24px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #fff;
    background: linear-gradient(135deg, var(--leaf-green), var(--mid-green));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 16px 32px -12px rgba(18, 80, 62, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.apply-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    animation: shine 3.2s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -60%;
    }

    45%,
    100% {
        left: 130%;
    }
}

.apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px -14px rgba(18, 80, 62, 0.6);
}

.apply-btn i {
    animation: nudge 1.6s ease-in-out infinite;
}

@keyframes nudge {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--muted);
}

.trust-row i {
    color: var(--leaf-green);
}

.side-note {
    background: var(--leaf-soft);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 12.5px;
    color: var(--mid-green);
    line-height: 1.6;
    display: flex;
    gap: 10px;
}

.side-note i {
    color: var(--gold);
    margin-top: 2px;
}




/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
    .visa-layout {
        grid-template-columns: 1fr;
    }

    .visa-sidebar {
        position: static;
        order: -1;
    }

    .side-card.summary-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }

    .side-card.summary-card .side-head {
        grid-column: 1 / -1;
    }

    .side-card.summary-card .apply-btn,
    .side-card.summary-card .trust-row {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .primary {
        gap: 28px;
    }

    .primary a {
        font-size: 14px;
    }

    .visa-shell {
        max-width: 100%;
    }

    .visa-hero {
        height: 320px;
    }

    .hero-caption h2 {
        font-size: 34px;
    }

    .visa-card,
    .timeline-card,
    .faq-card {
        padding: 36px 32px 40px;
    }

    .visa-head h1 {
        font-size: 34px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .doc-list {
        grid-template-columns: 1fr 1fr;
    }

    .eligibility {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .timeline {
        grid-template-columns: 1fr 1fr;
        row-gap: 34px;
    }

    .timeline::before {
        display: none;
    }
}

@media (max-width: 820px) {
    .primary {
        display: none;
        flex-direction: column;
        background: #fff;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        padding: 44px 32px;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
        z-index: 40;
        gap: 18px;
        overflow-y: auto;
    }

    .primary.open {
        display: flex;
    }

    .nav-close {
        display: block;
        background: none;
        border: none;
        font-size: 26px;
        align-self: flex-end;
        color: var(--deep-green);
        cursor: pointer;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 30;
    }

    .nav-overlay.show {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        padding: 8px 0 8px 16px;
        border: none;
        display: none;
    }

    .nav-item:hover .dropdown {
        display: none;
    }

    .nav-item.open .dropdown {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .header-actions .lang {
        display: none;
    }

    .visa-main {
        padding: 32px 16px 60px;
    }

    .visa-shell {
        gap: 20px;
    }

    .visa-hero {
        height: 240px;
    }

    .hero-caption h2 {
        font-size: 26px;
    }

    .hero-caption p {
        font-size: 13px;
    }

    .hero-flag {
        top: 16px;
        left: 16px;
        font-size: 12px;
        padding: 6px 16px 6px 12px;
    }

    .hero-badge {
        top: 16px;
        right: 16px;
        font-size: 11px;
        padding: 7px 14px;
    }

    .visa-card,
    .timeline-card,
    .faq-card {
        padding: 24px 18px 28px;
    }

    .visa-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .visa-head h1 {
        font-size: 28px;
    }

    .info-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .doc-list {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding: 22px 10px;
    }

    .stat-num {
        font-size: 28px;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .side-card.summary-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .topbar .left span {
        margin-right: 12px;
        font-size: 11px;
    }

    .topbar .social a {
        margin-left: 8px;
        font-size: 12px;
    }

    .visa-hero {
        height: 200px;
    }

    .hero-caption {
        left: 18px;
        bottom: 20px;
        right: 18px;
    }

    .hero-caption h2 {
        font-size: 22px;
    }

    .hero-caption p {
        font-size: 12px;
    }

    .visa-card,
    .timeline-card,
    .faq-card {
        padding: 18px 14px 22px;
    }

    .visa-head h1 {
        font-size: 24px;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fees {
        padding: 14px 16px 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-about p {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}



/* tabs .cs  */



.app-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.app-body {
    font-family: 'Inter', sans-serif;
    background: #f2f4f1;
    color: #1a231d;
    min-height: 100vh;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-body * {
    box-sizing: border-box;
}

:root {
    --green-dark: #123c26;
    --green: #1f6f43;
    --green-mid: #29875a;
    --green-light: #e7f3ec;
    --green-pale: #f2f8f4;
    --gold: #ab7f2c;
    --gold-light: #f5e8c8;
    --cream: #f6f5ef;
    --card: #ffffff;
    --ink: #16241a;
    --slate: #647167;
    --line: #e2e7de;
    --shadow: 0 8px 32px rgba(12, 58, 34, .10);
    --shadow-hover: 0 12px 40px rgba(12, 58, 34, .18);
    --font-display: 'Fraunces', Georgia, serif;
    --font-mono: 'Space Mono', monospace;
    --radius: 16px;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* ============================
                   MAIN WRAPPER
                ============================ */
.app-wrapper {
    max-width: 1160px;
    width: 100%;
    background: var(--card);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 40px 44px 48px;
    border: 1px solid rgba(12, 58, 34, .06);
    animation: appFadeUp .7s ease forwards;
}

@keyframes appFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================
                   HEADER
                ============================ */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.app-header-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-header-title i {
    color: var(--green);
    font-size: 28px;
}

.app-header-id {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--slate);
    background: var(--cream);
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    border: 1px solid var(--line);
}

.app-header-id i {
    margin-right: 6px;
}

/* ============================
                   STEP TABS (1,2,3,4)
                ============================ */
.step-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 36px;
    background: var(--cream);
    border-radius: 14px;
    padding: 6px;
    border: 1px solid var(--line);
    position: relative;
}

.step-tab {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--slate);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    justify-content: center;
    white-space: nowrap;
}

.step-tab .num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--line);
    color: var(--slate);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
    flex-shrink: 0;
}

.step-tab .tab-label {
    transition: var(--transition);
}

.step-tab .check-icon {
    display: none;
    color: var(--green);
    font-size: 16px;
}

/* Active Tab */
.step-tab.active {
    background: var(--card);
    color: var(--green-dark);
    box-shadow: 0 4px 16px rgba(12, 58, 34, .10);
}

.step-tab.active .num {
    background: var(--green);
    color: #fff;
    transform: scale(1.05);
}

/* Completed Tab */
.step-tab.completed {
    color: var(--green);
}

.step-tab.completed .num {
    background: var(--green);
    color: #fff;
}

.step-tab.completed .check-icon {
    display: inline;
}

/* Hover */
.step-tab:hover:not(.active) {
    background: rgba(31, 111, 67, .06);
}

/* ============================
                   TAB CONTENT
                ============================ */
.tab-content {
    display: none;
    animation: tabFadeIn .5s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes tabFadeIn {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
                   STEP DESCRIPTION
                ============================ */
.step-desc {
    font-size: 13.5px;
    color: var(--slate);
    margin-bottom: 24px;
    padding: 12px 18px;
    background: var(--cream);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.step-desc strong {
    color: var(--green-dark);
}

.step-desc i {
    color: var(--gold);
    font-size: 18px;
}

/* ============================
                   FORM STYLES
                ============================ */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 24px 28px;
    border: 1px solid var(--line);
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate);
}

.form-group label i {
    color: var(--green);
    margin-right: 6px;
    width: 16px;
}

.form-group input,
.form-group select {
    padding: 10px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--card);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(31, 111, 67, .12);
}

.form-group input::placeholder {
    color: #b0bdb5;
}

.form-group .hint {
    font-size: 11px;
    color: var(--slate);
    margin-top: 2px;
}

/* ============================
                   BUTTONS
                ============================ */
.btn-primary {
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(31, 111, 67, .25);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(31, 111, 67, .35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary i {
    font-size: 14px;
}

.btn-secondary {
    background: var(--cream);
    color: var(--green-dark);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--green);
    background: var(--green-light);
}

.btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ============================
                   UPLOAD DOCUMENTS
                ============================ */
.upload-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.upload-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream);
    padding: 14px 20px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    transition: var(--transition);
    flex-wrap: wrap;
    gap: 12px;
}

.upload-item:hover {
    border-color: var(--green);
    background: var(--green-pale);
}

.upload-item .info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 140px;
}

.upload-item .info .name {
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-item .info .name i {
    color: var(--green);
    width: 18px;
}

.upload-item .info .hint {
    font-size: 11px;
    color: var(--slate);
}

.upload-item .file-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.upload-item .file-controls .file-name {
    font-size: 12px;
    color: var(--slate);
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-item .file-controls .status-icon {
    font-size: 18px;
    color: var(--green);
}

.upload-item .file-controls .status-icon.empty {
    color: var(--slate);
    opacity: .4;
}

.upload-item input[type="file"] {
    display: none;
}

.upload-item .file-label {
    background: var(--card);
    border: 1.5px dashed var(--line);
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.upload-item .file-label:hover {
    border-color: var(--green);
    background: var(--green-light);
}

/* ============================
                   REVIEW SECTION
                ============================ */
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 22px 26px;
    border: 1px solid var(--line);
    margin-bottom: 24px;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-item .label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--slate);
}

.review-item .value {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

/* Documents Uploaded List */
.docs-uploaded {
    background: var(--green-light);
    border-radius: var(--radius);
    padding: 18px 22px;
    border-left: 4px solid var(--green);
    margin-bottom: 24px;
}

.docs-uploaded h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.docs-uploaded ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.docs-uploaded ul li {
    font-size: 13px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.docs-uploaded ul li i {
    color: var(--green);
}

/* ============================
                   PAYMENT SIDEBAR
                ============================ */
.two-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
}

.payment-sidebar {
    background: var(--cream);
    border-radius: 18px;
    padding: 26px 28px;
    border: 1px solid var(--line);
    height: fit-content;
    position: sticky;
    top: 20px;
    transition: var(--transition);
}

.payment-sidebar:hover {
    box-shadow: var(--shadow-hover);
}

.payment-sidebar h2 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--green-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-sidebar h2 i {
    color: var(--gold);
}

.order-summary {
    border-bottom: 2px dashed var(--line);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 5px 0;
    color: var(--ink);
}

.order-row .label {
    color: var(--slate);
}

.order-row .amount-red {
    color: #c0392b;
    font-weight: 600;
}

.order-row.total {
    font-weight: 700;
    font-size: 18px;
    border-top: 2px solid var(--line);
    padding-top: 14px;
    margin-top: 6px;
    color: var(--green-dark);
}

.order-row.total .label {
    color: var(--ink);
}

/* Coupon */
.coupon-box {
    display: flex;
    gap: 10px;
    margin: 14px 0 20px;
}

.coupon-box input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
    background: var(--card);
}

.coupon-box input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(31, 111, 67, .10);
}

.coupon-box button {
    padding: 10px 20px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.coupon-box button:hover {
    background: #8a6821;
    transform: translateY(-1px);
}

/* Payment Methods */
.payment-methods h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate);
    margin-bottom: 12px;
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.method-item {
    background: var(--card);
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 12px;
    font-weight: 600;
    color: var(--slate);
}

.method-item:hover {
    border-color: var(--green);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.method-item.active {
    border-color: var(--green);
    background: var(--green-light);
    color: var(--green-dark);
    box-shadow: 0 4px 12px rgba(31, 111, 67, .12);
}

.method-item i {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
    color: var(--green);
}

.method-sub {
    font-size: 11px;
    color: var(--slate);
    text-align: center;
    margin-top: 10px;
    padding: 8px;
    background: var(--card);
    border-radius: 8px;
    border: 1px solid var(--line);
}

.btn-pay {
    width: 100%;
    margin-top: 18px;
    padding: 15px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(31, 111, 67, .30);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(31, 111, 67, .40);
}

.btn-pay i {
    font-size: 16px;
}

/* ============================
                   RESPONSIVE
                ============================ */
@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .payment-sidebar {
        position: static;
    }

    .app-wrapper {
        padding: 28px 22px;
    }
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
        padding: 18px 16px;
    }

    .review-grid {
        grid-template-columns: 1fr;
        padding: 16px 18px;
    }

    .step-tab {
        font-size: 12px;
        padding: 10px 10px;
        gap: 6px;
    }

    .step-tab .num {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .app-wrapper {
        padding: 20px 14px;
        border-radius: 18px;
    }

    .app-header-title {
        font-size: 20px;
    }

    .method-grid {
        grid-template-columns: 1fr 1fr;
    }

    .upload-item {
        flex-direction: column;
        align-items: stretch;
    }

    .upload-item .file-controls {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .step-tab .tab-label {
        display: none;
    }

    .step-tab {
        padding: 10px 6px;
    }

    .step-tab .num {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .app-body {
        padding: 12px 8px;
    }

    .app-wrapper {
        padding: 14px 10px;
        border-radius: 14px;
    }
}

/* ============================
                   PLACEHOLDER FOR EMPTY TABS
                ============================ */
.placeholder-content {
    text-align: center;
    padding: 60px 20px;
    color: var(--slate);
}

.placeholder-content i {
    font-size: 56px;
    color: var(--green);
    margin-bottom: 16px;
    display: block;
    opacity: .5;
}

.placeholder-content h3 {
    font-family: var(--font-display);
    color: var(--green-dark);
    margin-bottom: 6px;
}




