:root {
    --navy-900: #081a31;
    --navy-800: #0e2748;
    --navy-700: #12345f;
    --navy-600: #1c4a85;
    --yellow-500: #f9b400;
    --yellow-400: #ffc324;
    --slate-100: #f2f6fb;
    --slate-200: #e6edf5;
    --slate-300: #d6e0ec;
    --text-900: #102038;
    --text-700: #324860;
    --white: #ffffff;
    --danger: #cf2f25;
    --success: #1a8f5e;
    --warning: #e58f00;
    --shadow-lg: 0 20px 40px rgba(8, 26, 49, 0.16);
    --shadow-md: 0 12px 30px rgba(8, 26, 49, 0.12);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --public-header-offset: 128px;
    --public-header-offset-mobile: 90px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text-900);
    background: var(--white);
    line-height: 1.6;
}

.gfc-lang-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1105;
    background: linear-gradient(90deg, #0d2a4c 0%, #12345f 60%, #1c4a85 100%);
    color: #e9f3ff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.gfc-lang-topbar-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0;
}

.gfc-lang-left {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.82rem;
}

.gfc-lang-left i {
    color: var(--yellow-400);
}

.gfc-lang-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.gfc-lang-country {
    color: rgba(244, 251, 255, 0.9);
    font-weight: 600;
}

.gfc-lang-select-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 3px 8px;
}

.gfc-lang-select-wrap i {
    color: #ffe28e;
    font-size: 0.94rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
}

#gfc-lang-select {
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    width: 146px;
    min-width: 146px;
    max-width: 146px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#gfc-lang-select option {
    color: #0f2643;
    font-weight: 700;
}

body.has-gfc-topbar {
    --public-header-offset: calc(128px + 44px);
    --public-header-offset-mobile: calc(90px + 44px);
}

body.has-gfc-topbar .site-header {
    top: 44px;
}

body.lang-rtl {
    direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0.2px;
    line-height: 1.2;
    color: var(--navy-900);
}

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

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

ul {
    list-style: none;
}

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

.section {
    padding: 90px 0;
}

.section-title {
    max-width: 640px;
    margin-bottom: 44px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(249, 180, 0, 0.18);
    color: var(--navy-800);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-700);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    transition: all .3s ease;
    padding: 13px 24px;
}

.btn-sm {
    padding: 10px 16px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
    color: #1c1c1c;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 180, 0, 0.32);
}

.btn-dark {
    background: var(--navy-900);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-700);
}

.btn-outline {
    border: 1px solid var(--navy-800);
    color: var(--navy-800);
    background: transparent;
}

.btn-outline:hover {
    background: var(--navy-800);
    color: var(--white);
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at top left, var(--navy-700), var(--navy-900) 50%);
    transition: opacity .4s ease, visibility .4s ease;
}

.site-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.24);
    border-top-color: var(--yellow-500);
    display: grid;
    place-items: center;
    animation: spin 1s linear infinite;
}

.loader-mark span {
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 28px;
    font-weight: 700;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.topbar {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
}

.topbar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-left i, .topbar-right i {
    color: var(--yellow-400);
    margin-right: 6px;
}

.topbar-right a:hover {
    color: var(--yellow-400);
}

.navbar {
    background: rgba(8, 26, 49, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 18px;
}

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

.brand-logo {
    height: 58px;
    width: auto;
    display: block;
}

.brand-text {
    font-family: "Rajdhani", sans-serif;
    color: var(--white);
    font-size: 1.62rem;
    font-weight: 800;
}

.menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.menu a i {
    font-size: 0.86rem;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--yellow-500);
    transition: width .25s ease;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.menu a.active {
    color: var(--yellow-400);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: transparent;
    color: var(--white);
}

.mobile-menu-backdrop {
    display: none;
}

.hero {
    position: relative;
}

.hero .swiper {
    height: min(90vh, 760px);
}

.hero-slide {
    position: relative;
    color: var(--white);
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 26, 49, 0.88), rgba(8, 26, 49, 0.45));
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
}

.hero-inner {
    width: min(760px, calc(100% - 110px));
    margin-left: clamp(38px, 7vw, 120px);
    margin-right: 24px;
}

.hero-inner h1 {
    color: var(--white);
    font-size: clamp(2.1rem, 4.8vw, 4.2rem);
    margin-bottom: 15px;
}

.hero-inner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions .btn-outline,
.home-hero-actions .btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: rgba(7, 21, 38, 0.44);
    box-shadow: 0 12px 24px rgba(4, 13, 24, 0.28);
}

.hero-actions .btn-outline:hover,
.home-hero-actions .btn-outline:hover {
    color: #1d1d1d;
    border-color: rgba(255, 214, 95, 0.96);
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
    box-shadow: 0 12px 24px rgba(249, 180, 0, 0.34);
}

.hero .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.hero .swiper-pagination-bullet-active {
    background: var(--yellow-400);
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
    color: var(--white);
}

.about-preview,
.why-choose {
    background: var(--slate-100);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.about-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-content p {
    color: var(--text-700);
    margin-bottom: 14px;
}

.tick-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.tick-list i {
    color: var(--success);
    margin-top: 5px;
}

.services-grid,
.projects-grid,
.jobs-grid,
.values-grid,
.stats-grid,
.testimonial-grid,
.why-grid,
.safety-grid {
    display: grid;
    gap: 20px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}

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

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(249, 180, 0, 0.16);
    color: var(--navy-800);
    margin-bottom: 16px;
}

.why-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    padding: 26px;
}

.why-card i {
    color: var(--yellow-500);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .3s ease;
}

.project-card:hover {
    transform: translateY(-7px);
}

.project-image {
    position: relative;
    height: 220px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 26, 49, 0.8), transparent 60%);
}

.project-content {
    padding: 18px 18px 22px;
}

.project-meta {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-700);
    margin-bottom: 10px;
}

.jobs-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.job-card {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 20px;
    background: var(--white);
    transition: box-shadow .25s ease, transform .25s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.job-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.job-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.job-card p {
    color: var(--text-700);
    margin: 8px 0 16px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--text-700);
    font-size: 0.95rem;
}

.job-card-foot {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

.careers-shell {
    background: linear-gradient(180deg, #f4f7fb 0%, #eef3f9 100%);
}

.careers-toolbar {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 22px;
    margin-bottom: 18px;
}

.careers-toolbar .filters {
    margin-bottom: 10px;
}

.careers-job-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    color: var(--text-700);
    font-size: 0.95rem;
}

.careers-job-summary strong {
    color: var(--navy-900);
}

.jobs-results-wrap {
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.careers-job-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.careers-job-card {
    border: 1px solid #dce6f3;
    border-radius: 14px;
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(8, 26, 49, 0.1);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    position: relative;
}

.careers-job-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--navy-700), var(--yellow-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .26s ease;
}

.careers-job-card:hover {
    transform: translateY(-8px) scale(1.018);
    box-shadow: 0 22px 44px rgba(8, 26, 49, 0.2);
    border-color: #bcd0eb;
}

.careers-job-card:hover::after {
    transform: scaleX(1);
}

.careers-job-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.careers-job-head h3 {
    font-size: 1.32rem;
    margin-bottom: 0;
}

.careers-job-head h3 a:hover {
    color: var(--navy-600);
}

.careers-job-title {
    margin-bottom: 10px;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.16;
}

.careers-job-title a:hover {
    color: var(--navy-600);
}

.careers-job-badge-wrap {
    margin-bottom: 12px;
}

.careers-job-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--text-700);
}

.careers-job-line i {
    color: var(--navy-700);
}

.careers-job-salary {
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--navy-600);
}

.careers-job-salary i {
    color: var(--yellow-500);
}

.careers-job-meta {
    margin: 12px 0;
    display: grid;
    gap: 6px;
    color: var(--text-700);
    font-size: 0.93rem;
}

.careers-job-meta li {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.careers-job-meta i {
    color: var(--navy-700);
    width: 18px;
}

.careers-job-card p {
    color: #465b72;
    margin-top: 8px;
    margin-bottom: 18px;
    min-height: 68px;
}

.careers-job-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.careers-job-actions .btn {
    flex: 1;
    min-width: 0;
}

.btn-apply-card {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
    color: #1f1f1f;
    border: 1px solid rgba(185, 134, 0, 0.35);
}

.btn-apply-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 180, 0, 0.34);
}

.btn-details-card {
    background: transparent;
    border: 1px solid var(--navy-800);
    color: var(--navy-800);
}

.btn-details-card:hover {
    background: var(--navy-800);
    color: var(--white);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 5px 10px;
}

.badge-info {
    background: rgba(28, 74, 133, 0.16);
    color: var(--navy-700);
}

.badge-warning {
    background: rgba(249, 180, 0, 0.2);
    color: #7a5400;
}

.badge-success {
    background: rgba(26, 143, 94, 0.17);
    color: var(--success);
}

.badge-muted {
    background: rgba(120, 134, 151, 0.2);
    color: #55606d;
}

.stats {
    background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
    color: var(--white);
}

.stats .section-title h2,
.stats .section-title p {
    color: var(--white);
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    color: var(--yellow-400);
}

.testimonials {
    background: var(--slate-100);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 24px;
    min-height: 220px;
}

.testimonial-stars {
    color: var(--yellow-500);
    margin-bottom: 12px;
}

.testimonial-card p {
    color: var(--text-700);
    margin-bottom: 16px;
}

.cta-strip {
    background: linear-gradient(135deg, var(--yellow-500), #ffcd4f);
    padding: 44px 0;
}

.cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-wrap h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.site-footer {
    background: #071625;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 70px 0 30px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
    margin-bottom: 14px;
}

.footer-brand-logo {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-brand-logo img {
    width: 250px;
    max-width: 100%;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: var(--yellow-400);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
}

.footer-contact i {
    color: var(--yellow-400);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
    text-align: center;
}

.page-hero {
    position: relative;
    background: linear-gradient(120deg, rgba(8, 26, 49, 0.86), rgba(8, 26, 49, 0.86)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80") center/cover;
    color: var(--white);
    padding: 90px 0;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 8px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}

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

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy-900);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    border: 1px solid var(--slate-300);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font: inherit;
    color: var(--text-900);
    background: var(--white);
    transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
    resize: vertical;
    min-height: 130px;
}

input:focus,
textarea:focus,
select:focus {
    outline: 0;
    border-color: var(--navy-600);
    box-shadow: 0 0 0 3px rgba(28, 74, 133, 0.12);
}

.form-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.job-details-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.job-main,
.job-side {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    padding: 24px;
}

.job-main h2 {
    margin-bottom: 10px;
}

.job-side .meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--slate-200);
}

.job-side .meta-row:last-child {
    border-bottom: 0;
}

.job-apply-section {
    margin-top: 24px;
}

.job-apply-section h3 {
    margin-bottom: 8px;
}

.job-apply-form .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.job-apply-form .form-grid .form-group:last-child {
    grid-column: 1 / -1;
}

.app-modal {
    position: fixed;
    inset: 0;
    background: rgba(8, 18, 34, 0.62);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .26s ease, visibility .26s ease;
}

.app-modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.app-modal-card {
    width: min(420px, 100%);
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(8, 20, 34, 0.26);
}

.app-modal-loader {
    width: 48px;
    height: 48px;
    border: 4px solid #dde6f3;
    border-top-color: var(--navy-700);
    border-radius: 50%;
    margin: 0 auto 14px;
    animation: spin .9s linear infinite;
}

.app-modal-icon {
    font-size: 52px;
    margin-bottom: 12px;
}

.app-modal-success {
    color: var(--success);
}

.app-modal-error {
    color: var(--danger);
}

body.modal-open {
    overflow: hidden;
}

.similar-jobs {
    margin-top: 24px;
}

.values-grid,
.safety-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card,
.safety-card {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 22px;
}

.value-card i,
.safety-card i {
    font-size: 1.5rem;
    color: var(--yellow-500);
    margin-bottom: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-item i {
    color: var(--yellow-500);
    margin-top: 3px;
}

.map-frame {
    border: 0;
    width: 100%;
    min-height: 350px;
    border-radius: var(--radius-md);
}

.contact-enterprise-section {
    background: linear-gradient(180deg, #f5f9ff 0%, #eef4fc 100%);
}

.contact-enterprise-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 26px;
}

.contact-enterprise-head h1 {
    font-size: clamp(2rem, 4.4vw, 3rem);
    margin-bottom: 10px;
}

.contact-enterprise-head p {
    color: #5d7590;
    font-size: 1rem;
}

.contact-enterprise-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: stretch;
}

.contact-form-card,
.contact-info-card,
.contact-map-card {
    border: 1px solid #d7e4f3;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(8, 26, 49, 0.11);
}

.contact-form-card {
    padding: 24px;
}

.contact-enterprise-form .form-group {
    margin-bottom: 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.input-icon-field {
    position: relative;
}

.input-icon-field > i {
    position: absolute;
    left: 14px;
    top: 44px;
    color: #6d849e;
    font-size: 0.94rem;
    pointer-events: none;
}

.input-icon-field input,
.input-icon-field textarea {
    padding-left: 40px;
    border-radius: 10px;
    border-color: #cfdded;
    background: #fbfdff;
}

.input-icon-field textarea {
    min-height: 170px;
    padding-top: 12px;
}

.input-icon-field.full-width {
    grid-column: 1 / -1;
}

.contact-submit-btn {
    margin-top: 14px;
    min-height: 50px;
    padding-inline: 24px;
}

.contact-side-stack {
    display: grid;
    gap: 16px;
    height: 100%;
}

.contact-info-card {
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card h3 {
    margin-bottom: 8px;
    font-size: 1.45rem;
}

.contact-info-card > p {
    color: #617993;
    margin-bottom: 14px;
}

.contact-info-list {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.contact-info-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border: 1px solid #e0ebf8;
    border-radius: 12px;
    background: #f8fbff;
    padding: 10px;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 180, 0, 0.2);
    color: #7d5700;
    flex: 0 0 36px;
}

.contact-info-item strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.contact-info-item p {
    color: #556f8b;
    margin: 0;
    font-size: 0.9rem;
}

.contact-map-card {
    padding: 8px;
    overflow: hidden;
}

.contact-map-card .map-frame {
    min-height: 320px;
    border-radius: 14px;
}

.pagination {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-btn {
    border: 1px solid var(--slate-300);
    background: var(--white);
    color: var(--text-900);
    border-radius: 8px;
    min-width: 36px;
    height: 38px;
    cursor: pointer;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.page-btn.active {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--white);
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.empty-state {
    border: 1px dashed var(--slate-300);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    background: var(--slate-100);
}

.empty-state i {
    font-size: 2rem;
    color: var(--navy-600);
    margin-bottom: 10px;
}

.flash-message {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1100;
    min-width: 290px;
    max-width: 420px;
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.flash-success { background: var(--success); }
.flash-error { background: var(--danger); }
.flash-warning { background: var(--warning); }

.not-found {
    min-height: 70vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 60px 20px;
}

.not-found h1 {
    font-size: clamp(3rem, 8vw, 5.8rem);
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    body.mobile-nav-open {
        overflow: hidden;
    }

    .navbar {
        position: relative;
    }

    .topbar {
        display: none;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-900);
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: transform .25s ease, opacity .25s ease, visibility .25s ease, max-height .25s ease;
        pointer-events: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 14px 26px rgba(2, 12, 23, 0.45);
        z-index: 1002;
    }

    .menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: min(70vh, 520px);
        overflow-y: auto;
        pointer-events: auto;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        width: 100%;
        justify-content: flex-start;
        padding: 6px 2px;
    }

    .mobile-toggle {
        display: inline-grid;
        place-items: center;
    }

    .mobile-menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1001;
        background: rgba(6, 18, 34, 0.56);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease;
    }

    .mobile-menu-backdrop.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-cta {
        display: none;
    }

    body:not(.js-on) .mobile-toggle {
        display: none;
    }

    body:not(.js-on) .menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: none;
        overflow: visible;
        pointer-events: auto;
        border-top: 0;
        box-shadow: none;
        padding: 10px 0 0;
    }

    .about-grid,
    .contact-grid,
    .job-details-layout {
        grid-template-columns: 1fr;
    }

    .careers-job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .gfc-lang-topbar-inner {
        min-height: 54px;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 7px 0;
    }

    .gfc-lang-left {
        font-size: 0.76rem;
    }

    .gfc-lang-country {
        width: 100%;
    }

    body.has-gfc-topbar .site-header {
        top: 54px;
    }

    .section {
        padding: 70px 0;
    }

    .topbar-wrap,
    .topbar-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero .swiper {
        height: 80vh;
    }

    .brand-logo {
        height: 50px;
    }

    .brand-text {
        font-size: 1.36rem;
    }

    .hero-inner {
        margin-left: auto;
        margin-right: auto;
    }

    .form-grid,
    .filters {
        grid-template-columns: 1fr;
    }

    .job-apply-form .form-grid {
        grid-template-columns: 1fr;
    }

    .careers-toolbar {
        padding: 16px;
    }

    .careers-job-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .careers-job-card {
        padding: 20px;
    }

    .careers-job-actions .btn {
        width: 100%;
    }

    .cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =============================
   Careers Premium UI Overrides
============================= */
.careers-shell {
    background: linear-gradient(180deg, #f4f7fb 0%, #edf3fa 100%);
    padding-top: 76px;
}

.careers-shell .container {
    width: min(1320px, 94%);
}

.mobile-filter-toggle {
    display: none;
    width: 100%;
    margin-bottom: 16px;
}

.careers-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.careers-sidebar {
    position: sticky;
    top: 106px;
    background: #ffffff;
    border: 1px solid #dce6f3;
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(8, 26, 49, 0.1);
    padding: 22px;
    height: fit-content;
    z-index: 30;
}

.careers-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.careers-sidebar-head h3 {
    font-size: 1.18rem;
    margin: 0;
}

.filter-close-btn {
    display: none;
    width: 36px;
    height: 36px;
    border: 1px solid #d5e0ee;
    border-radius: 10px;
    background: #ffffff;
    color: var(--navy-900);
}

.careers-sidebar .form-group {
    margin-bottom: 14px;
}

.careers-sidebar label {
    font-size: 0.86rem;
    font-weight: 700;
    color: #1b3556;
}

.careers-sidebar input,
.careers-sidebar select {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #cfdced;
    padding: 0 14px;
    background: #fbfdff;
}

.filter-btn-primary,
.filter-btn-outline {
    width: 100%;
    margin-top: 4px;
}

.filter-btn-outline {
    border-width: 1.5px;
}

.careers-content {
    min-width: 0;
}

.careers-job-summary {
    background: #ffffff;
    border: 1px solid #dce6f3;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(8, 26, 49, 0.08);
    padding: 15px 18px;
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    font-size: 0.92rem;
}

.careers-job-summary span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #48607a;
}

.careers-job-summary i {
    color: var(--navy-700);
}

.careers-job-summary strong {
    color: var(--navy-900);
}

.careers-job-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.careers-job-card {
    position: relative;
    border: 1px solid #d7e2f0;
    border-left: 5px solid var(--yellow-500);
    border-radius: 16px;
    padding: 24px 22px 22px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(8, 26, 49, 0.1);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    opacity: 1;
    transform: translateY(0);
}

.careers-job-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 22px 40px rgba(8, 26, 49, 0.18);
    border-color: #bfd1e7;
}

#jobsList .careers-job-card {
    opacity: 0;
    transform: translateY(14px);
}

body.js-on #jobsList .careers-job-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body:not(.js-on) #jobsList .careers-job-card {
    opacity: 1;
    transform: none;
}

.careers-job-title {
    margin-bottom: 10px;
    font-size: clamp(1.25rem, 2.1vw, 1.52rem);
    line-height: 1.2;
    font-weight: 700;
    padding-right: 108px;
}

.careers-job-title a:hover {
    color: var(--navy-600);
}

.careers-job-badge-wrap {
    position: absolute;
    top: 20px;
    right: 18px;
    margin: 0;
}

.badge {
    letter-spacing: 0.3px;
}

.careers-job-line {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    color: #4c637b;
    font-size: 0.94rem;
    font-weight: 600;
}

.careers-job-line i {
    color: var(--navy-700);
}

.careers-job-salary {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--navy-600);
}

.careers-job-salary i {
    color: var(--yellow-500);
}

.careers-job-desc {
    color: #667f98;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 10px 0 14px;
    min-height: 58px;
}

.careers-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(14, 39, 72, 0.2), rgba(14, 39, 72, 0.05));
    margin: 12px 0 16px;
}

.careers-job-actions {
    display: flex;
    gap: 10px;
}

.careers-job-actions .btn {
    flex: 1 1 calc(50% - 5px);
    border-radius: 999px;
    min-height: 43px;
    font-size: 0.84rem;
    font-weight: 700;
}

.btn-apply-card {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
    color: #1e1e1e;
    border: 1px solid rgba(164, 115, 0, 0.3);
}

.btn-apply-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(249, 180, 0, 0.35);
}

.btn-details-card {
    background: #ffffff;
    color: var(--navy-800);
    border: 1.5px solid var(--navy-800);
}

.btn-details-card:hover {
    background: var(--navy-900);
    color: #ffffff;
}

.pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.page-btn {
    min-width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid #ccd9e8;
    background: #ffffff;
    color: #223a58;
    font-weight: 700;
    transition: all .24s ease;
}

.page-btn:hover {
    border-color: #9eb7d2;
    transform: translateY(-2px);
}

.page-btn.active {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: #ffffff;
}

.page-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.empty-state {
    border: 1px dashed #c5d5e8;
    border-radius: 16px;
    padding: 48px 22px;
    text-align: center;
    background: linear-gradient(180deg, #f8fbff, #f3f8fe);
}

.empty-state h3 {
    margin-bottom: 4px;
}

.job-skeleton-card {
    border: 1px solid #d7e3f1;
    border-left: 5px solid #e9cf88;
    border-radius: 16px;
    padding: 24px 22px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(8, 26, 49, 0.08);
}

.skeleton-line {
    height: 11px;
    border-radius: 999px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #e7eef7 25%, #f2f6fb 38%, #e7eef7 63%);
    background-size: 400% 100%;
    animation: skeletonPulse 1.35s ease-in-out infinite;
}

.skeleton-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.w-35 { width: 35%; }
.w-45 { width: 45%; }
.w-48 { width: 48%; }
.w-50 { width: 50%; }
.w-70 { width: 70%; }
.w-100 { width: 100%; }

@keyframes skeletonPulse {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

.filter-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 24, 45, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
    z-index: 1050;
}

.filter-drawer-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* =============================
   Job Details Premium Overrides
============================= */
.job-details-premium {
    background: linear-gradient(180deg, #f4f8fd 0%, #edf4fb 100%);
    padding-top: 34px;
}

.job-premium-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.job-main-panel {
    background: #ffffff;
    border: 1px solid #dbe6f2;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(8, 26, 49, 0.1);
    padding: 32px;
}

.job-main-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e6edf6;
}

.job-main-header h2 {
    margin: 0;
    font-size: clamp(1.75rem, 2.4vw, 2.2rem);
}

.job-description-block {
    margin-bottom: 24px;
}

.job-description-block h3 {
    margin-bottom: 10px;
    font-size: 1.32rem;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.job-description-block h3 i {
    color: var(--navy-700);
}

.job-description-block p {
    color: #4c627b;
}

.job-apply-section {
    border-top: 1px solid #e3ecf7;
    padding-top: 22px;
    margin-top: 30px;
}

.premium-apply-form {
    margin-top: 16px;
    border: 1px solid #dae6f4;
    box-shadow: none;
    border-radius: 16px;
    background: #fbfdff;
    padding: 22px;
}

.premium-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.floating-field {
    position: relative;
}

.floating-field input {
    width: 100%;
    border: 1px solid #ccd9ea;
    border-radius: 12px;
    background: #ffffff;
    height: 56px;
    padding: 20px 14px 10px;
    font: inherit;
}

.floating-field input:focus {
    border-color: var(--navy-600);
}

.floating-field label {
    position: absolute;
    left: 12px;
    top: 17px;
    font-size: 0.88rem;
    color: #6a8098;
    pointer-events: none;
    transition: all .2s ease;
    background: #ffffff;
    padding: 0 6px;
}

.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy-700);
}

.file-field input {
    padding-top: 15px;
    padding-bottom: 15px;
}

.file-field label {
    top: -8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy-700);
}

.file-field input::file-selector-button {
    border: 0;
    background: #eaf2fb;
    color: #15355d;
    border-radius: 8px;
    padding: 8px 10px;
    margin-right: 10px;
    font-weight: 700;
    cursor: pointer;
}

.premium-submit-wrap {
    margin-top: 16px;
}

.premium-submit-btn {
    width: 100%;
    min-height: 52px;
    font-size: 0.98rem;
}

.job-info-sticky {
    position: sticky;
    top: 106px;
    background: #ffffff;
    border: 1px solid #dbe6f2;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(8, 26, 49, 0.1);
    padding: 22px;
}

.job-info-sticky h3 {
    margin-bottom: 14px;
    font-size: 1.24rem;
}

.info-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e4edf8;
    padding: 11px 0;
    color: #48607a;
}

.info-line span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.info-line i {
    color: var(--navy-700);
}

.info-line strong {
    color: var(--navy-900);
}



.info-location-with-visa {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    text-align: right;
}

.quick-apply-btn {
    width: 100%;
    margin-top: 16px;
    min-height: 48px;
}

.company-mini {
    margin-top: 18px;
    background: #f5f9ff;
    border: 1px solid #dce8f7;
    border-radius: 12px;
    padding: 14px;
}

.company-mini h4 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.company-mini p {
    color: #587089;
    font-size: 0.9rem;
}

.app-modal {
    background: rgba(5, 20, 38, 0.56);
    backdrop-filter: blur(5px);
}

.app-modal-card {
    width: min(460px, 100%);
    border-radius: 18px;
    border: 1px solid #dce7f5;
    padding: 32px 26px;
    box-shadow: 0 28px 48px rgba(8, 20, 34, 0.24);
    transform: translateY(16px) scale(0.98);
    opacity: 0;
    transition: transform .26s ease, opacity .26s ease;
}

.app-modal.show .app-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.app-modal-loader {
    width: 52px;
    height: 52px;
    border: 4px solid #dbe6f3;
    border-top-color: var(--navy-700);
    box-shadow: 0 0 0 6px rgba(28, 74, 133, 0.08);
    margin-bottom: 15px;
}

.app-modal-card h3 {
    margin-bottom: 8px;
}

.app-modal-card p {
    color: #5f748d;
}

.app-modal-icon i {
    animation: checkPop .36s ease both;
}

@keyframes checkPop {
    0% { transform: scale(0.4); opacity: 0; }
    70% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-redirect-note {
    font-size: 0.84rem;
    color: #73879d;
}

.mobile-apply-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid #dbe6f3;
    box-shadow: 0 -10px 22px rgba(8, 26, 49, 0.12);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
}

.mobile-apply-bar .btn {
    width: 100%;
    min-height: 48px;
}

/* Large desktop */
@media (min-width: 1400px) {
    .careers-shell .container {
        width: min(1400px, 95%);
    }

    .careers-layout {
        grid-template-columns: 320px minmax(0, 1fr);
    }

    .careers-job-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Tablet and below: filter drawer */
@media (max-width: 1199px) {
    .mobile-filter-toggle {
        display: inline-flex;
    }

    .careers-layout {
        grid-template-columns: 1fr;
    }

    .careers-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(380px, 92vw);
        max-width: 100%;
        border-radius: 0 18px 18px 0;
        transform: translateX(-105%);
        transition: transform .26s ease;
        z-index: 1060;
        overflow-y: auto;
        padding-top: 18px;
    }

    .careers-sidebar.open {
        transform: translateX(0);
    }

    .filter-close-btn {
        display: inline-grid;
        place-items: center;
    }

    .careers-job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .job-premium-layout {
        grid-template-columns: 1fr;
    }

    .job-info-sticky {
        position: static;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .careers-shell {
        padding-top: 62px;
    }

    .careers-shell .container {
        width: min(100%, 94%);
    }

    .careers-job-summary {
        padding: 14px;
        gap: 10px;
    }

    .careers-job-summary span {
        width: 100%;
    }

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

    .careers-job-card {
        padding: 22px 18px 18px;
    }

    .careers-job-title {
        padding-right: 0;
        font-size: 1.34rem;
    }

    .careers-job-badge-wrap {
        position: static;
        margin-bottom: 10px;
    }

    .careers-job-actions {
        flex-direction: column;
    }

    .careers-job-actions .btn {
        width: 100%;
    }

    .job-main-panel {
        padding: 22px 18px;
    }

    .job-main-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-apply-form {
        padding: 16px;
    }

    .premium-form-grid {
        grid-template-columns: 1fr;
    }

    .job-info-panel {
        display: none;
    }

    .mobile-apply-bar {
        display: block;
    }

    .job-details-premium {
        padding-bottom: 90px;
    }
}

.ajax-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f5a900, #ffd667);
    box-shadow: 0 0 10px rgba(249, 180, 0, 0.5);
    opacity: 0;
    z-index: 1205;
    transition: width .18s linear, opacity .18s ease;
    pointer-events: none;
}

.ajax-progress.active {
    opacity: 1;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.45);
    animation: btnRipple .52s ease-out forwards;
    pointer-events: none;
}

@keyframes btnRipple {
    to {
        transform: scale(2.8);
        opacity: 0;
    }
}

.careers-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.careers-stat-card {
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(8, 26, 49, 0.09);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.careers-stat-card .stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(12, 41, 78, 0.12), rgba(249, 180, 0, 0.23));
    color: var(--navy-800);
}

.careers-stat-card strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.55rem;
    line-height: 1;
    color: var(--navy-900);
}

.careers-stat-card small {
    color: #6b8098;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-weight: 700;
}

.careers-job-summary {
    margin-bottom: 14px;
    padding: 11px 15px;
}

.job-card-company {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding-right: 88px;
}

.company-mini-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #edf3fb, #dde9f8);
    color: var(--navy-700);
    border: 1px solid #cbdcf0;
    flex: 0 0 34px;
    line-height: 0;
    overflow: hidden;
}

.company-mini-logo img {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

.job-company-meta {
    display: grid;
    line-height: 1.2;
    gap: 2px;
}

.company-label {
    font-size: 0.78rem;
    color: #6c8299;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.job-ref {
    font-size: 0.79rem;
    color: #3c5470;
    font-weight: 800;
}

.company-label i,
.job-ref i {
    margin-right: 6px;
}

.badge i {
    margin-left: 6px;
}

.careers-stat-card small i {
    margin-right: 5px;
}

.job-ribbon-urgent {
    position: absolute;
    top: 12px;
    left: -36px;
    transform: rotate(-38deg);
    min-width: 146px;
    text-align: center;
    padding: 5px 8px;
    background: linear-gradient(135deg, #df3b2f, #f66d4d);
    color: #ffffff;
    font-size: 0.68rem;
    letter-spacing: 0.4px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(185, 45, 28, 0.35);
    z-index: 3;
}

.careers-job-card {
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
}

.careers-job-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(248, 194, 43, 0.45), rgba(13, 42, 79, 0.2)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.careers-job-card:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 24px 42px rgba(8, 26, 49, 0.2), 0 0 0 1px rgba(18, 52, 95, 0.05);
}

.careers-job-card:hover::before {
    opacity: 1;
}

.careers-job-title {
    margin-bottom: 11px;
}

.careers-salary-box {
    border: 1px solid #d7e3f2;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fbff, #eff5fd);
    padding: 9px 12px;
    margin: 10px 0 10px;
}

.careers-salary-box span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #5d738b;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.careers-salary-box span i {
    color: var(--yellow-500);
}

.careers-salary-box strong {
    display: block;
    margin-top: 3px;
    color: var(--navy-700);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.78rem;
    line-height: 1.05;
}

.careers-job-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(16, 45, 82, 0.08);
    border: 1px solid #c7d8ed;
    border-radius: 999px;
    padding: 5px 11px;
    color: #2e4b6c;
    font-size: 0.79rem;
    font-weight: 700;
}

.posted-muted {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #7a8fa5;
    font-size: 0.78rem;
    font-weight: 700;
}

.posted-muted i {
    color: #8ea3bb;
}

.careers-job-desc {
    min-height: 64px;
}

.job-header-content {
    flex: 1;
    min-width: 0;
}

.job-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 12px;
    margin: 10px 0 8px;
    color: #49617a;
    font-weight: 700;
    font-size: 0.9rem;
}

.job-header-meta span,
.job-header-submeta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}



.job-header-meta i {
    color: var(--navy-700);
}



.job-location-with-visa {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.job-header-submeta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 12px;
    color: #6d8197;
    font-size: 0.8rem;
    font-weight: 700;
}

.job-salary-highlight {
    min-width: 220px;
    background: linear-gradient(135deg, rgba(249, 180, 0, 0.22), rgba(255, 217, 116, 0.31));
    border: 1px solid rgba(220, 174, 38, 0.45);
    border-radius: 14px;
    padding: 14px 16px;
    text-align: right;
}

.job-salary-highlight small {
    display: block;
    color: #6f5810;
    font-weight: 800;
    font-size: 0.74rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.job-salary-highlight strong {
    display: block;
    margin-top: 4px;
    font-family: "Rajdhani", sans-serif;
    font-size: 2rem;
    line-height: 1.02;
    color: #664608;
}

.job-share-row {
    display: none !important;
}

.share-btn {
    min-height: 43px;
    font-size: 0.84rem;
    padding-inline: 16px;
}

.share-email-menu {
    position: relative;
}

.share-email-toggle {
    list-style: none;
}

.share-email-toggle::-webkit-details-marker {
    display: none;
}

.share-email-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #dbe6f3;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(8, 26, 49, 0.16);
    padding: 8px;
    display: grid;
    gap: 6px;
    z-index: 40;
}

.share-email-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 9px;
    color: #12345f;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background .2s ease, color .2s ease;
}

.share-email-item i {
    color: #1c4a85;
}

.share-email-item:hover {
    background: #edf4fd;
    color: #0f2a4b;
}

.share-copy-btn.copied {
    background: #1a8f5e;
    color: #ffffff;
}

.app-modal-icon {
    position: relative;
}

.success-ring {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid rgba(26, 143, 94, 0.32);
    animation: successRing 1s ease-out forwards;
    pointer-events: none;
}

@keyframes successRing {
    0% {
        transform: scale(0.6);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@media (max-width: 1399px) {
    .careers-stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {
    .mobile-filter-toggle {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 1048;
        min-height: 50px;
        box-shadow: 0 12px 24px rgba(8, 26, 49, 0.25);
    }
}

@media (max-width: 767px) {
    .careers-stats-strip {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .careers-stat-card {
        padding: 11px;
        border-radius: 12px;
    }

    .careers-stat-card .stat-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .careers-stat-card strong {
        font-size: 1.28rem;
    }

    .careers-stat-card small {
        font-size: 0.7rem;
    }

    .careers-job-card {
        padding: 18px 15px 16px;
        border-radius: 14px;
    }

    .job-card-company {
        padding-right: 0;
        margin-bottom: 7px;
    }

    .careers-job-title {
        font-size: 1.22rem;
        margin-bottom: 8px;
    }

    .careers-job-line {
        font-size: 0.86rem;
        margin-bottom: 5px;
    }

    .careers-salary-box {
        margin: 8px 0;
        padding: 8px 10px;
    }

    .careers-salary-box strong {
        font-size: 1.48rem;
    }

    .careers-job-meta-row {
        flex-wrap: wrap;
        margin-bottom: 8px;
    }

    .meta-pill,
    .posted-muted {
        font-size: 0.74rem;
    }

    .careers-job-desc {
        font-size: 0.84rem;
        min-height: 0;
        margin: 6px 0 10px;
    }

    .careers-job-actions .btn {
        min-height: 48px;
        font-size: 0.88rem;
    }

    .job-main-header {
        gap: 12px;
        padding-bottom: 12px;
        margin-bottom: 14px;
    }

    .job-salary-highlight {
        width: 100%;
        min-width: 0;
        text-align: left;
        padding: 12px 13px;
    }

    .job-salary-highlight strong {
        font-size: 1.5rem;
    }

    .job-header-meta {
        gap: 8px;
        font-size: 0.82rem;
    }

    .job-header-submeta {
        gap: 7px;
        font-size: 0.74rem;
    }

    .job-share-row .btn {
        flex: 1 1 100%;
        min-height: 46px;
    }

    .share-email-menu {
        width: 100%;
    }

    .share-email-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 46px;
    }

    .share-email-dropdown {
        width: 100%;
        min-width: 0;
        position: static;
        margin-top: 8px;
    }
}

.careers-hero-premium {
    position: relative;
    min-height: min(76vh, 720px);
    display: grid;
    align-items: center;
    background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.careers-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 26, 49, 0.92) 15%, rgba(8, 26, 49, 0.66) 60%, rgba(8, 26, 49, 0.82) 100%);
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    padding: 96px 0 74px;
}

.careers-hero-content h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 12px;
    max-width: 780px;
}

.careers-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.04rem;
    max-width: 760px;
    margin-bottom: 20px;
}

.careers-hero-search {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.9fr auto;
    gap: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 10px;
    width: min(1040px, 100%);
}

.hero-search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    min-height: 50px;
    padding: 0 12px;
}

.hero-search-field i {
    color: var(--navy-700);
}

.hero-search-field input,
.hero-search-field select {
    border: 0;
    background: transparent;
    box-shadow: none;
    outline: 0;
    height: 100%;
    padding: 0;
}

.hero-search-field select {
    appearance: none;
}

.hero-job-count {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(6px);
}

.hero-job-count .counter {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd262;
}

.hero-job-count small {
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.73rem;
}

.careers-local-section {
    padding: 34px 0 24px;
    background: #eef4fb;
}

.careers-local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.local-panel {
    background: #fff;
    border: 1px solid #d8e5f4;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(8, 26, 49, 0.08);
    padding: 16px;
}

.local-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.local-panel-head h3 {
    font-size: 1.2rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.local-panel-head span {
    min-width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 52, 95, 0.1);
    color: var(--navy-700);
    font-weight: 800;
}

.local-job-list {
    display: grid;
    gap: 10px;
    max-height: 172px;
    overflow-y: auto;
    padding-right: 2px;
}

.saved-job-item {
    border: 1px solid #d9e6f5;
    border-radius: 12px;
    padding: 10px 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #f9fcff;
}

.saved-job-link {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.saved-job-link strong {
    color: var(--navy-900);
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.saved-job-link span {
    color: #647c95;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.remove-saved-job {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #d7e5f5;
    background: #fff;
    color: #687f99;
    cursor: pointer;
}

.remove-saved-job:hover {
    color: #c9372b;
    border-color: #f0c0bd;
}

.recent-jobs-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.recent-job-chip {
    flex: 0 0 220px;
    border: 1px solid #d8e6f6;
    border-radius: 12px;
    background: #f9fcff;
    padding: 10px;
    display: grid;
    gap: 4px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.recent-job-chip strong {
    color: var(--navy-900);
    font-size: 0.9rem;
    line-height: 1.3;
}

.recent-job-chip span {
    color: #6d859c;
    font-size: 0.79rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.recent-job-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(8, 26, 49, 0.1);
}

.local-empty {
    border: 1px dashed #c8d9ed;
    border-radius: 10px;
    background: #f8fbff;
    color: #6f859e;
    padding: 14px;
    text-align: center;
    font-size: 0.86rem;
}

.featured-carousel-wrap {
    background: linear-gradient(180deg, #edf4fc 0%, #f6f9fe 100%);
    padding-top: 50px;
    padding-bottom: 56px;
}

.featured-jobs-swiper {
    padding-bottom: 34px;
}

.featured-jobs-swiper .swiper-pagination-bullet-active {
    background: var(--navy-700);
}

.featured-job-card {
    border: 1px solid #d9e6f4;
    border-radius: 16px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(8, 26, 49, 0.08);
    height: 100%;
}

.featured-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: rgba(249, 180, 0, 0.22);
    color: #7a5600;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 10px;
    margin-bottom: 9px;
    text-transform: uppercase;
}

.featured-job-card h3 {
    font-size: 1.24rem;
    margin-bottom: 9px;
}

.featured-job-card h3 a:hover {
    color: var(--navy-700);
}

.featured-meta {
    color: #5d758f;
    font-size: 0.84rem;
    margin-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.featured-meta.salary {
    color: var(--navy-700);
    font-weight: 800;
}

.featured-job-card p {
    color: #687f98;
    font-size: 0.88rem;
    margin: 10px 0 14px;
}

.save-job-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #d5e3f3;
    background: #fff;
    color: #7e93aa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all .2s ease;
}

.save-job-btn:hover {
    color: #e53745;
    border-color: #f5c6cd;
}

.save-job-btn.saved {
    color: #e53745;
    background: #fff1f3;
    border-color: #f2c6cf;
}

.save-job-btn.pulse {
    transform: scale(1.1);
}

.careers-job-badge-wrap {
    position: absolute;
    top: 20px;
    right: 60px;
}

.careers-job-title {
    padding-right: 148px;
}

.careers-job-meta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 10px;
}

.careers-job-meta-grid span {
    color: #6a829a;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
}

.careers-job-summary {
    margin-top: 2px;
}

.load-more-wrap {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

#jobsLoadMore.loading {
    opacity: 0.75;
    pointer-events: none;
}

.is-hidden {
    display: none !important;
}

.jobs-updating {
    opacity: 0.85;
    transition: opacity .2s ease;
}

.fade-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
}

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

@media (max-width: 1399px) {
    .careers-hero-search {
        grid-template-columns: 1fr 1fr;
    }

    .careers-hero-search .btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1199px) {
    .careers-local-grid {
        grid-template-columns: 1fr;
    }

    .careers-job-badge-wrap {
        right: 56px;
    }

    .careers-job-title {
        padding-right: 128px;
    }
}

@media (max-width: 991px) {
    .careers-hero-content {
        padding: 84px 0 62px;
    }

    .careers-hero-search {
        grid-template-columns: 1fr;
    }

    .careers-hero-search .btn {
        width: 100%;
    }

    .hero-job-count {
        margin-top: 14px;
    }
}

@media (max-width: 767px) {
    .careers-hero-content h1 {
        font-size: 2rem;
    }

    .careers-hero-content p {
        font-size: 0.92rem;
    }

    .hero-search-field {
        min-height: 46px;
    }

    .local-panel {
        padding: 12px;
        border-radius: 13px;
    }

    .local-panel-head h3 {
        font-size: 1.04rem;
    }

    .saved-job-item {
        padding: 9px;
    }

    .recent-job-chip {
        flex-basis: 190px;
    }

    .save-job-btn {
        width: 34px;
        height: 34px;
        top: 12px;
        right: 12px;
    }

    .careers-job-badge-wrap {
        top: 12px;
        right: 52px;
        margin-bottom: 0;
    }

    .careers-job-title {
        padding-right: 112px;
    }

    .mobile-filter-toggle {
        min-height: 54px;
        font-size: 0.98rem;
    }

    .careers-job-actions .btn {
        min-height: 50px;
    }
}

.careers-shell .careers-job-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1199px) {
    .careers-shell .careers-job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .careers-shell .careers-job-grid {
        grid-template-columns: 1fr;
    }
}

.similar-jobs .careers-job-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1199px) {
    .similar-jobs .careers-job-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .similar-jobs .careers-job-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================
   Homepage Enterprise Upgrade
============================= */
.home-enterprise-hero {
    position: relative;
}

.home-enterprise-hero .hero-swiper {
    height: min(92vh, 820px);
}

.home-enterprise-hero .hero-slide::before {
    background: linear-gradient(120deg, rgba(7, 21, 38, 0.86), rgba(7, 21, 38, 0.54));
}

.home-enterprise-hero .swiper-button-next,
.home-enterprise-hero .swiper-button-prev,
.hero-nav-enterprise .swiper-button-next,
.hero-nav-enterprise .swiper-button-prev {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: linear-gradient(145deg, rgba(6, 18, 33, 0.9), rgba(14, 40, 71, 0.78));
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(6, 16, 29, 0.46);
    backdrop-filter: blur(6px);
    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home-enterprise-hero .swiper-button-next::after,
.home-enterprise-hero .swiper-button-prev::after,
.hero-nav-enterprise .swiper-button-next::after,
.hero-nav-enterprise .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 800;
}

.home-enterprise-hero .swiper-button-next:hover,
.home-enterprise-hero .swiper-button-prev:hover,
.hero-nav-enterprise .swiper-button-next:hover,
.hero-nav-enterprise .swiper-button-prev:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 214, 95, 0.98);
    background: linear-gradient(145deg, rgba(255, 214, 95, 0.92), rgba(249, 180, 0, 0.85));
    color: #1e1e1e;
    box-shadow: 0 18px 36px rgba(6, 16, 29, 0.48);
}

.home-enterprise-hero .swiper-button-next:active,
.home-enterprise-hero .swiper-button-prev:active,
.hero-nav-enterprise .swiper-button-next:active,
.hero-nav-enterprise .swiper-button-prev:active {
    transform: translateY(0);
}

.home-hero-content-wrap {
    width: 100%;
    padding-left: clamp(12px, 4.6vw, 74px);
}

.home-hero-text {
    width: min(760px, 100%);
}

.home-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 211, 79, 0.22);
    color: #ffe8a0;
    border: 1px solid rgba(255, 211, 79, 0.46);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 0.76rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.home-hero-text h1 {
    color: #ffffff;
    font-size: clamp(2.1rem, 5vw, 3.45rem);
    line-height: 1.05;
    margin-bottom: 14px;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
}

.home-hero-text p {
    width: min(640px, 96%);
    font-size: 1.04rem;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.36);
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.home-hero-actions .btn {
    min-height: 48px;
    padding-inline: 20px;
}

.home-hero-panel-wrap {
    position: absolute;
    inset: auto 0 30px 0;
    pointer-events: none;
    z-index: 6;
}

.home-hero-panel {
    margin-left: auto;
    width: min(390px, 100%);
    border-radius: 18px;
    border: 1px solid rgba(229, 240, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(9px);
    box-shadow: 0 18px 36px rgba(2, 15, 29, 0.32);
    padding: 20px;
    color: #ffffff;
    pointer-events: auto;
}

.home-hero-panel h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-hero-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.home-hero-panel-grid article {
    border-radius: 12px;
    border: 1px solid rgba(245, 251, 255, 0.45);
    background: rgba(255, 255, 255, 0.14);
    padding: 10px;
}

.home-hero-panel-grid strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.48rem;
    line-height: 1;
}

.home-hero-panel-grid span {
    display: block;
    margin-top: 4px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.86);
}

.home-hero-panel .btn {
    width: 100%;
}

.home-trust-strip {
    background: #ffffff;
    border-top: 1px solid #e4edf8;
    border-bottom: 1px solid #e4edf8;
    padding: 22px 0;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #dbe7f5;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff, #f5f9ff);
    padding: 14px;
}

.home-trust-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 180, 0, 0.18);
    color: #825b00;
    flex: 0 0 36px;
}

.home-trust-item h3 {
    font-size: 0.96rem;
    margin-bottom: 4px;
}

.home-trust-item p {
    font-size: 0.84rem;
    color: #617993;
}

.home-company-section {
    background: linear-gradient(180deg, #f7fbff 0%, #eff5fc 100%);
}

.home-company-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: start;
}

.home-company-main,
.home-company-side {
    border: 1px solid #dce8f5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(8, 26, 49, 0.08);
    padding: 28px;
}

.home-company-main h2 {
    margin-bottom: 14px;
}

.home-check-list {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}

.home-check-list li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #46617e;
    font-weight: 600;
}

.home-check-list i {
    color: #2f9d60;
}

.home-company-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.home-company-side {
    display: grid;
    gap: 12px;
}

.home-focus-card {
    border: 1px solid #dce8f4;
    border-radius: 14px;
    background: #f8fbff;
    padding: 16px;
}

.home-focus-card h3 {
    font-size: 1.03rem;
    margin-bottom: 7px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-focus-card h3 i {
    color: var(--navy-700);
}

.home-focus-card p {
    color: #5c7591;
    font-size: 0.92rem;
}

.home-services-section {
    background: #ffffff;
}

.home-section-title-center {
    text-align: center;
    margin-inline: auto;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-service-card {
    border: 1px solid #dbe7f6;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f6faff);
    box-shadow: 0 12px 24px rgba(8, 26, 49, 0.08);
    padding: 22px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 36px rgba(8, 26, 49, 0.14);
}

.home-service-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(9, 35, 66, 0.16), rgba(249, 180, 0, 0.28));
    color: var(--navy-800);
    margin-bottom: 12px;
}

.home-service-card h3 {
    margin-bottom: 8px;
}

.home-service-card p {
    color: #5f7792;
    margin-bottom: 12px;
}

.home-service-card a {
    color: var(--navy-700);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-process-section {
    background: linear-gradient(180deg, #f6faff 0%, #eef4fc 100%);
}

.home-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-process-card {
    border: 1px solid #dae7f5;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(8, 26, 49, 0.08);
    padding: 20px;
}

.home-process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--yellow-500), #ffd77a);
    color: #423100;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.home-process-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.home-process-card p {
    color: #607a95;
    font-size: 0.9rem;
}

.home-projects-section {
    background: #ffffff;
}

.home-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-project-card {
    border: 1px solid #dbe7f4;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(8, 26, 49, 0.09);
}

.home-project-image {
    height: 220px;
    overflow: hidden;
}

.home-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-project-card:hover .home-project-image img {
    transform: scale(1.06);
}

.home-project-content {
    padding: 18px;
}

.home-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.home-project-meta span {
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4f6884;
}

.home-project-content h3 {
    margin-bottom: 8px;
}

.home-project-content p {
    color: #607a95;
    margin-bottom: 10px;
}

.home-project-content small {
    color: #7088a3;
}

.home-jobs-section {
    background: linear-gradient(180deg, #f5f9ff 0%, #edf4fc 100%);
}

.home-jobs-overview {
    border: 1px solid #dbe7f4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(8, 26, 49, 0.08);
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
}

.home-jobs-overview span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4c6783;
    font-weight: 700;
}

.home-jobs-overview i {
    color: var(--navy-700);
}

.home-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-stats-section {
    background: linear-gradient(135deg, #081a31, #0d2748);
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-stat-card {
    border: 1px solid rgba(226, 240, 255, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(2px);
    padding: 20px;
    text-align: center;
    color: #ffffff;
}

.home-stat-card i {
    font-size: 1.22rem;
    color: #ffd880;
    margin-bottom: 8px;
}

.home-stat-card strong {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 2.05rem;
    line-height: 1;
}

.home-stat-card span {
    display: block;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.9);
}

.home-testimonials-section {
    background: #ffffff;
}

.home-enterprise-cta {
    background: linear-gradient(135deg, #ffcb43, #f2b000);
    padding: 42px 0;
}

.home-enterprise-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    flex-wrap: wrap;
}

.home-enterprise-cta-wrap h3 {
    margin-bottom: 6px;
}

.home-enterprise-cta-wrap p {
    color: #624500;
    max-width: 760px;
}

.home-enterprise-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 1350px) {
    .home-hero-panel-wrap {
        position: static;
        margin-top: 14px;
    }

    .home-hero-panel {
        margin-left: 0;
        width: min(100%, 430px);
    }
}

@media (max-width: 1199px) {
    .home-trust-grid,
    .home-services-grid,
    .home-project-grid,
    .home-jobs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-company-grid {
        grid-template-columns: 1fr;
    }

    .home-process-grid,
    .home-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-enterprise-hero .hero-swiper {
        height: min(86vh, 700px);
    }

    .home-enterprise-hero .swiper-button-next,
    .home-enterprise-hero .swiper-button-prev,
    .hero-nav-enterprise .swiper-button-next,
    .hero-nav-enterprise .swiper-button-prev {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .hero-inner {
        width: calc(100% - 34px);
        margin-left: 18px;
        margin-right: 16px;
    }

    .home-hero-content-wrap {
        padding-left: 6px;
    }

    .home-hero-chip {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .home-hero-text p {
        font-size: 0.93rem;
    }

    .home-trust-grid,
    .home-services-grid,
    .home-process-grid,
    .home-project-grid,
    .home-jobs-grid,
    .home-stats-grid {
        grid-template-columns: 1fr;
    }

    .home-company-main,
    .home-company-side {
        padding: 20px;
    }

    .home-project-image {
        height: 205px;
    }

    .home-enterprise-cta {
        padding: 34px 0;
    }
}

/* =============================
   Enterprise Responsive System
============================= */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

main {
    width: 100%;
    padding-top: var(--public-header-offset);
}

@media (max-width: 1399px) {
    .container {
        width: min(1240px, 94%);
    }
}

@media (max-width: 1199px) {
    .section {
        padding: 76px 0;
    }

    .container {
        width: min(1140px, 94%);
    }

    .hero .swiper {
        height: min(84vh, 690px);
    }

    .hero-inner {
        width: min(700px, calc(100% - 76px));
        margin-left: clamp(28px, 5vw, 72px);
        margin-right: 20px;
    }

    .page-hero {
        padding: 78px 0;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .projects-grid,
    .services-grid,
    .values-grid,
    .safety-grid,
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-card,
    .job-main,
    .job-side {
        padding: 22px;
    }
}

@media (max-width: 991px) {
    main {
        padding-top: var(--public-header-offset-mobile);
    }

    .topbar-wrap {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .topbar-left,
    .topbar-right {
        flex-wrap: wrap;
        gap: 10px 14px;
    }

    .topbar-right {
        justify-content: flex-start;
        width: 100%;
    }

    .nav-wrap {
        min-height: 82px;
    }

    .menu.open {
        max-height: calc(100vh - 132px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero .swiper {
        height: min(79vh, 630px);
    }

    .hero-inner {
        width: calc(100% - 56px);
        margin-left: 28px;
        margin-right: 28px;
    }

    .hero-inner h1 {
        font-size: clamp(1.95rem, 6vw, 3.1rem);
    }

    .hero-inner p {
        font-size: 0.97rem;
        max-width: 100%;
    }

    .home-hero-text p {
        width: min(100%, 620px);
    }

    .stats-grid,
    .home-stats-grid,
    .home-process-grid,
    .home-trust-grid,
    .home-services-grid,
    .home-project-grid,
    .home-jobs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-wrap,
    .home-enterprise-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-enterprise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100%, 94%);
    }

    .section {
        padding: 62px 0;
    }

    .topbar-wrap {
        align-items: flex-start;
        padding: 10px 0;
    }

    .topbar-left span {
        font-size: 0.8rem;
    }

    .hero .swiper {
        height: min(75vh, 560px);
    }

    .hero-inner {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }

    .hero-inner h1 {
        font-size: clamp(1.72rem, 8.2vw, 2.45rem);
        line-height: 1.12;
    }

    .hero-inner p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .hero-actions,
    .home-hero-actions {
        gap: 10px;
    }

    .hero-actions .btn,
    .home-hero-actions .btn {
        width: 100%;
        min-height: 48px;
    }

    .hero .swiper-button-next,
    .hero .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .hero .swiper-button-next::after,
    .hero .swiper-button-prev::after {
        font-size: 14px;
    }

    .page-hero {
        padding: 58px 0;
    }

    .page-hero h1 {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
    }

    .breadcrumb {
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .about-grid,
    .contact-grid,
    .contact-enterprise-grid,
    .contact-form-grid,
    .form-grid,
    .job-details-layout,
    .job-premium-layout,
    .careers-layout,
    .home-company-grid,
    .filters {
        grid-template-columns: 1fr;
    }

    .form-card,
    .contact-form-card,
    .contact-info-card,
    .job-main,
    .job-side,
    .job-main-panel,
    .home-company-main,
    .home-company-side,
    .service-card,
    .project-content,
    .value-card,
    .safety-card {
        padding: 18px;
    }

    .projects-grid,
    .services-grid,
    .values-grid,
    .safety-grid,
    .why-grid,
    .stats-grid,
    .home-trust-grid,
    .home-services-grid,
    .home-process-grid,
    .home-project-grid,
    .home-jobs-grid,
    .home-stats-grid,
    .careers-job-grid,
    .similar-jobs .careers-job-grid {
        grid-template-columns: 1fr;
    }

    .project-image,
    .home-project-image {
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 54px 0 20px;
    }

    .footer-bottom {
        padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
    }

    .map-frame {
        min-height: 280px;
    }

    .contact-enterprise-head {
        margin-bottom: 18px;
    }

    .contact-enterprise-head h1 {
        font-size: clamp(1.7rem, 7.4vw, 2.25rem);
    }

    .contact-enterprise-head p {
        font-size: 0.92rem;
    }

    .contact-map-card .map-frame {
        min-height: 270px;
    }

    .pagination {
        justify-content: center;
    }

    .page-btn {
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
    }

    .job-card-foot,
    .careers-job-actions {
        flex-direction: column;
    }

    .job-card-foot .btn,
    .careers-job-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100%, 93%);
    }

    .mobile-toggle {
        width: 40px;
        height: 40px;
    }

    .brand-logo {
        height: 44px;
    }

    .brand-text {
        font-size: 1.22rem;
    }

    .hero .swiper {
        height: min(70vh, 500px);
    }

    .hero-inner h1 {
        font-size: clamp(1.55rem, 8.8vw, 2.05rem);
    }

    .eyebrow {
        font-size: 11px;
        padding: 5px 9px;
    }

    .home-hero-chip {
        font-size: 0.66rem;
        padding: 5px 9px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 0.88rem;
    }
}

@media (max-width: 991px) {
    body.mobile-nav-open {
        overflow: hidden;
        touch-action: none;
    }

    .gfc-lang-topbar {
        display: none !important;
    }

    body.has-gfc-topbar {
        --public-header-offset: 128px;
        --public-header-offset-mobile: 90px;
    }

    body.has-gfc-topbar .site-header {
        top: 0;
    }

    .navbar {
        position: relative;
    }

    .site-header {
        top: 0 !important;
        z-index: 1300;
    }

    .mobile-toggle {
        display: inline-grid !important;
        visibility: visible;
        opacity: 1;
    }

    .menu {
        z-index: 1002;
    }

    .mobile-menu-backdrop {
        z-index: 1001;
    }

    body:not(.js-on) .mobile-toggle {
        display: inline-grid !important;
    }
}

/* =============================
   Apply Prompt Modal
============================= */
.visa-sponsorship-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(31, 154, 88, 0.42);
    background: rgba(31, 154, 88, 0.14);
    color: #0f6a39;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1;
}

.visa-sponsorship-badge i {
    color: #159458;
}

.visa-inline-badge {
    margin-top: 0;
    vertical-align: middle;
}

.inline-row-with-visa {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.inline-row-with-visa .careers-job-line,
.inline-row-with-visa .featured-meta {
    margin-bottom: 0;
}

.featured-chip-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 9px;
}

.featured-chip-row .featured-chip {
    margin-bottom: 0;
}

.featured-visa-chip {
    border: 1px solid rgba(31, 154, 88, 0.42);
    background: rgba(31, 154, 88, 0.16);
    color: #0f6a39;
}

.job-info-sticky .visa-sponsorship-badge {
    margin-top: 8px;
    margin-bottom: 2px;
}

.featured-job-card .featured-meta + .visa-sponsorship-badge,
.featured-job-card .inline-row-with-visa .visa-sponsorship-badge {
    display: none !important;
}

.apply-prompt-modal {
    position: fixed;
    inset: 0;
    z-index: 1305;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(5, 18, 33, 0.58);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.apply-prompt-modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.apply-prompt-card {
    position: relative;
    width: min(640px, 100%);
    border: 1px solid #d8e5f4;
    border-radius: 22px;
    background: linear-gradient(160deg, #ffffff 0%, #f6faff 100%);
    box-shadow: 0 36px 68px rgba(5, 17, 31, 0.35);
    overflow: hidden;
    padding: 28px 26px 24px;
    transform: translateY(26px) scale(0.94);
    opacity: 0;
    transition: transform .34s cubic-bezier(.2, .85, .25, 1), opacity .34s ease;
}

.apply-prompt-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #f7b000, #ffd76f, #f7b000);
}

.apply-prompt-modal.show .apply-prompt-card {
    transform: translateY(0) scale(1);
    opacity: 1;
    animation: applyPromptFloat .45s ease both;
}

@keyframes applyPromptFloat {
    0% { transform: translateY(30px) scale(0.93); }
    65% { transform: translateY(-4px) scale(1.01); }
    100% { transform: translateY(0) scale(1); }
}

.apply-prompt-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid #d7e4f4;
    background: #ffffff;
    color: #34506f;
    cursor: pointer;
    transition: all .22s ease;
}

.apply-prompt-close:hover {
    border-color: #f2c45c;
    color: #9a5f00;
    transform: translateY(-1px);
}

.apply-prompt-head {
    margin-bottom: 18px;
    padding-right: 40px;
}

.apply-prompt-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(249, 180, 0, 0.2);
    color: #7d5600;
    border: 1px solid rgba(249, 180, 0, 0.34);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.apply-prompt-chip-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.apply-prompt-chip-row .apply-prompt-chip {
    margin-bottom: 0;
}

.apply-prompt-chip-visa {
    border-color: rgba(31, 154, 88, 0.42);
    background: rgba(31, 154, 88, 0.16);
    color: #0f6a39;
}

.apply-prompt-head h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 8px;
    color: var(--navy-900);
}

.apply-prompt-head p {
    color: #5d7692;
    line-height: 1.6;
}

.apply-prompt-visa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(31, 154, 88, 0.42);
    background: rgba(31, 154, 88, 0.15);
    color: #0f6a39 !important;
    font-size: 0.8rem;
    font-weight: 800;
}

.apply-prompt-visa i {
    color: #159458;
}

.apply-prompt-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.apply-prompt-stats article {
    border: 1px solid #dce8f5;
    border-radius: 14px;
    background: #ffffff;
    padding: 13px 11px;
    text-align: center;
}

.apply-prompt-stats strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.16rem;
    color: var(--navy-800);
}

.apply-prompt-stats strong i {
    color: #f0ab00;
}

.apply-prompt-stats span {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #677f98;
}

.apply-prompt-actions {
    display: flex;
    gap: 10px;
}

.apply-prompt-actions .btn {
    flex: 1;
    min-height: 48px;
}

@media (max-width: 767px) {
    .apply-prompt-modal {
        padding: 16px;
    }

    .apply-prompt-card {
        border-radius: 18px;
        padding: 22px 16px 16px;
    }

    .apply-prompt-head {
        padding-right: 34px;
    }

    .apply-prompt-chip-row {
        gap: 6px;
    }

    .apply-prompt-stats {
        grid-template-columns: 1fr;
    }

    .apply-prompt-actions {
        flex-direction: column;
    }

    .apply-prompt-actions .btn {
        width: 100%;
    }
}



