/*
 * app.css — Rise Overseas Portal
 * Blue (#1a3a6b) / Gold (#c9a227) / White (#ffffff) theme
 * Modern, interactive, animated public portal styles
 */

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background: #f8f9fa;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #1a3a6b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ── CSS Variables ────────────────────────────────────────────────────────── */
:root {
    --blue:       #1a3a6b;
    --blue-dark:  #122a52;
    --blue-light: #2a5298;
    --gold:       #c9a227;
    --gold-dark:  #a8841e;
    --gold-light: #e8c04a;
    --white:      #ffffff;
    --gray-50:    #f8f9fa;
    --gray-100:   #f1f3f5;
    --gray-200:   #e9ecef;
    --gray-400:   #ced4da;
    --gray-600:   #6c757d;
    --gray-800:   #343a40;
    --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --shadow-md:  0 4px 12px rgba(0,0,0,.12);
    --shadow-lg:  0 8px 24px rgba(0,0,0,.15);
    --radius:     6px;
    --radius-lg:  10px;
    --transition: 0.2s ease;
}

/* ── Container ────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Top Bar ──────────────────────────────────────────────────────────────── */
.top-bar {
    background: var(--blue);
    color: var(--gold);
    font-size: 0.82rem;
    padding: 0.35rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar a {
    color: var(--gold);
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* ── Site Header / Navigation ─────────────────────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand:hover {
    text-decoration: none;
}

.brand-logo {
    height: 52px;
    width: auto;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Primary Nav */
.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.primary-nav a {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color var(--transition);
}

.primary-nav a:hover {
    color: var(--gold);
    text-decoration: none;
}

.primary-nav a.active {
    color: var(--gold);
}

.btn-nav {
    background: var(--blue);
    color: var(--white) !important;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--transition);
}

.btn-nav:hover {
    background: var(--blue-dark) !important;
    text-decoration: none;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--blue);
    border-radius: var(--radius);
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    color: var(--blue);
    font-size: 1.2rem;
    line-height: 1;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all var(--transition);
    line-height: 1.4;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--blue);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
}

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 60%, #1e4a8a 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(201, 162, 39, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold-light);
    border: 1px solid rgba(201, 162, 39, 0.4);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero h1 span {
    color: var(--gold-light);
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 560px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* ── Section Styles ───────────────────────────────────────────────────────── */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-dark {
    background: var(--blue);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

/* ── Service Cards ────────────────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    text-align: center;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ── Destination Cards ────────────────────────────────────────────────────── */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.destination-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}

.destination-card:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.destination-flag {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.6rem;
    line-height: 1;
}

.destination-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}

/* ── Contact Section (on home page) ──────────────────────────────────────── */
.contact-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .btn-primary {
    background: var(--blue);
    border-color: var(--blue);
}

.contact-cta .btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

/* ── Contact Page ─────────────────────────────────────────────────────────── */
.contact-page {
    padding: 3rem 0 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 380px;
    }
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.contact-form-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.4rem;
}

.contact-form-card .subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1.75rem;
}

.contact-info-card {
    background: var(--blue);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.contact-info-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-info-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.contact-info-text strong {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-info-text a {
    color: var(--gold-light);
    text-decoration: none;
}

.contact-info-text a:hover {
    text-decoration: underline;
}

/* ── Forms ────────────────────────────────────────────────────────────────── */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.4rem;
}

.form-label .required {
    color: #dc3545;
    margin-left: 0.2rem;
}

.form-control {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1.5px solid var(--gray-400);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    font-family: inherit;
    line-height: 1.5;
}

.form-control:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.12);
}

.form-control::placeholder {
    color: #adb5bd;
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.form-hint {
    font-size: 0.78rem;
    color: var(--gray-600);
    margin-top: 0.3rem;
}

.form-error {
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 0.3rem;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

/* ── Page Header ──────────────────────────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: var(--white);
    padding: 2.5rem 0;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.page-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ── Breadcrumb ───────────────────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb-sep {
    opacity: 0.5;
}

/* ── Flash Messages ───────────────────────────────────────────────────────── */
.flash-container {
    padding: 0.75rem 0;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--blue);
    color: #cdd8ea;
    padding: 2.5rem 0 1rem;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.footer-col p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #a0b0c8;
}

.footer-col ul {
    list-style: none;
    font-size: 0.85rem;
    line-height: 2.1;
}

.footer-col ul a {
    color: #cdd8ea;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #8a9bb5;
}

.footer-bottom a {
    color: #8a9bb5;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ── Job Cards (for job listings page) ───────────────────────────────────── */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.job-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.job-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.4rem;
}

.job-card-employer {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-blue {
    background: rgba(26, 58, 107, 0.1);
    color: var(--blue);
}

.badge-gold {
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-dark);
}

.badge-green {
    background: rgba(40, 167, 69, 0.1);
    color: #1a6b2e;
}

.job-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ── Search / Filter Bar ──────────────────────────────────────────────────── */
.search-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.search-bar .form-group {
    flex: 1;
    min-width: 180px;
    margin-bottom: 0;
}

/* ── Empty State ──────────────────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-600);
}

.empty-state-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.2rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

/* ── Utility Classes ──────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-blue   { color: var(--blue); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--gray-600); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .primary-nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .primary-nav.open {
        display: block;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--gray-200);
        padding-top: 0.75rem;
    }

    .primary-nav ul li {
        width: 100%;
    }

    .primary-nav ul a {
        display: block;
        padding: 0.6rem 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .btn-nav {
        display: inline-block;
        margin-top: 0.5rem;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODERN LANDING PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── AOS Animations ──────────────────────────────────────────────────────── */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-right"]  { transform: translateX(-30px); }
[data-aos="fade-left"]   { transform: translateX(30px); }
[data-aos="zoom-in"]     { transform: scale(0.9); }
[data-aos].aos-animate   { opacity: 1; transform: none; }
[data-aos-delay="100"].aos-animate { transition-delay: 0.1s; }
[data-aos-delay="200"].aos-animate { transition-delay: 0.2s; }
[data-aos-delay="300"].aos-animate { transition-delay: 0.3s; }
[data-aos-delay="360"].aos-animate { transition-delay: 0.36s; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #0f2447 0%, #1a3a6b 45%, #1e4a8a 100%);
    color: #fff;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
.hero-shape-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, #c9a227, transparent);
    top: -200px; right: -150px;
    animation: floatShape 8s ease-in-out infinite;
}
.hero-shape-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #fff, transparent);
    bottom: -100px; left: -100px;
    animation: floatShape 10s ease-in-out infinite reverse;
}
.hero-shape-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, #c9a227, transparent);
    top: 40%; left: 40%;
    animation: floatShape 6s ease-in-out infinite;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(20px, -20px) scale(1.05); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,162,39,.15);
    color: #e8c04a;
    border: 1px solid rgba(201,162,39,.35);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 7px; height: 7px;
    background: #c9a227;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #fff;
    letter-spacing: -0.02em;
}
.hero-title-highlight {
    background: linear-gradient(135deg, #c9a227, #e8c04a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-animated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-animated:hover {
    gap: 0.85rem;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #e8c04a;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}
.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.2);
}

/* Hero visual / floating cards */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card-stack {
    position: relative;
    width: 320px;
    height: 320px;
}
.hero-globe {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7rem;
    opacity: 0.15;
    animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card-1 { top: 10%; left: 0;   animation-delay: 0s; }
.hero-float-card-2 { top: 40%; right: 0;  animation-delay: 1.3s; }
.hero-float-card-3 { bottom: 10%; left: 10%; animation-delay: 2.6s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.hfc-icon { font-size: 1.6rem; }
.hfc-title { font-size: 0.85rem; font-weight: 700; color: #fff; }
.hfc-sub   { font-size: 0.72rem; color: rgba(255,255,255,.7); }

/* Hero wave */
.hero-wave { margin-top: 3rem; line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ── Marquee ─────────────────────────────────────────────────────────────── */
.destinations-marquee-wrap {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    overflow: hidden;
    padding: 0.75rem 0;
}
.destinations-marquee {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    width: max-content;
}
.destinations-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.marquee-item {
    padding: 0.4rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a3a6b;
    white-space: nowrap;
    border-right: 1px solid #e9ecef;
}

/* ── Section Styles ───────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-alt { background: #f8f9fa; }
.section-dark { background: linear-gradient(135deg, #0f2447, #1a3a6b); color: #fff; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-label-pill {
    display: inline-block;
    background: rgba(26,58,107,.08);
    color: #1a3a6b;
    border: 1px solid rgba(26,58,107,.15);
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a3a6b;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.section-subtitle {
    font-size: 1rem;
    color: #6c757d;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Service Cards ────────────────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26,58,107,.12);
}
.service-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.service-icon-emoji { font-size: 1.75rem; }
.service-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a3a6b;
    margin-bottom: 0.6rem;
}
.service-desc {
    font-size: 0.88rem;
    color: #6c757d;
    line-height: 1.7;
}
.service-accent {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover .service-accent { transform: scaleX(1); }

/* ── Process Steps ────────────────────────────────────────────────────────── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26,58,107,.1);
}
.process-step-num {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a3a6b, #2a5298);
    color: #fff;
    width: 28px; height: 28px;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.process-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a3a6b;
    margin-bottom: 0.5rem;
}
.process-step-desc {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.65;
}
.process-connector {
    display: none; /* shown via CSS on desktop */
}

/* ── Destinations ─────────────────────────────────────────────────────────── */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}
.destination-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: default;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.destination-card:hover {
    background: rgba(201,162,39,.15);
    border-color: #c9a227;
    transform: translateY(-4px);
}
.destination-flag { font-size: 2.8rem; display: block; margin-bottom: 0.5rem; }
.destination-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.destination-region { font-size: 0.72rem; color: rgba(255,255,255,.55); margin-top: 0.2rem; }

/* ── Jobs CTA ─────────────────────────────────────────────────────────────── */
.jobs-cta-section { padding: 3rem 0; }
.jobs-cta-card {
    background: linear-gradient(135deg, #1a3a6b 0%, #2a5298 100%);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26,58,107,.25);
}
.jobs-cta-content { position: relative; z-index: 1; }
.jobs-cta-icon { font-size: 3rem; margin-bottom: 1rem; }
.jobs-cta-card h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}
.jobs-cta-card p {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 1.75rem;
    max-width: 480px;
}
.jobs-cta-decoration { position: absolute; inset: 0; pointer-events: none; }
.jcd-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.jcd-circle-1 { width: 300px; height: 300px; top: -100px; right: -80px; }
.jcd-circle-2 { width: 200px; height: 200px; bottom: -60px; left: -60px; }
.jcd-circle-3 { width: 120px; height: 120px; top: 20%; left: 10%; }

/* ── Contact CTA ──────────────────────────────────────────────────────────── */
.contact-cta {
    background: linear-gradient(135deg, #c9a227 0%, #a8841e 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}
.contact-cta-inner { max-width: 640px; margin: 0 auto; }
.contact-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.contact-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.contact-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.contact-cta-address {
    font-size: 0.85rem;
    opacity: 0.85;
    line-height: 1.7;
}

/* ── Buttons (enhanced) ───────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.4;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: #1a3a6b; color: #fff; border-color: #1a3a6b; }
.btn-primary:hover { background: #122a52; border-color: #122a52; color: #fff; }
.btn-gold { background: #c9a227; color: #fff; border-color: #c9a227; }
.btn-gold:hover { background: #a8841e; border-color: #a8841e; color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; border-radius: 10px; }

/* ── Forms ────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: #343a40; margin-bottom: 0.4rem; }
.form-label .required { color: #dc3545; margin-left: 0.2rem; }
.form-control {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid #ced4da;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #343a40;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    line-height: 1.5;
}
.form-control:focus {
    outline: none;
    border-color: #1a3a6b;
    box-shadow: 0 0 0 3px rgba(26,58,107,.12);
}
.form-control::placeholder { color: #adb5bd; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.8rem; color: #dc3545; margin-top: 0.3rem; }
.form-control.is-invalid { border-color: #dc3545; }

/* ── Flash Messages ───────────────────────────────────────────────────────── */
.flash-container { padding: 0.75rem 0; }
.alert {
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.alert-success { background: #f0fff4; border-color: #c6f6d5; color: #276749; }
.alert-danger  { background: #fff5f5; border-color: #fed7d7; color: #c53030; }
.alert-warning { background: #fffff0; border-color: #fefcbf; color: #975a16; }
.alert-info    { background: #ebf8ff; border-color: #bee3f8; color: #2b6cb0; }

/* ── Badges ───────────────────────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-blue   { background: rgba(26,58,107,.1);  color: #1a3a6b; }
.badge-gold   { background: rgba(201,162,39,.12); color: #a8841e; }
.badge-green  { background: rgba(40,167,69,.1);   color: #1a6b2e; }

/* ── Job Cards ────────────────────────────────────────────────────────────── */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.job-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1px solid #e9ecef;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}
.job-card:hover { box-shadow: 0 8px 24px rgba(26,58,107,.12); border-color: #1a3a6b; transform: translateY(-3px); }
.job-card-title { font-size: 1.05rem; font-weight: 700; color: #1a3a6b; margin-bottom: 0.4rem; }
.job-card-employer { font-size: 0.85rem; color: #6c757d; margin-bottom: 0.75rem; }
.job-card-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.job-card-footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid #e9ecef; display: flex; justify-content: space-between; align-items: center; }

/* ── Search Bar ───────────────────────────────────────────────────────────── */
.search-bar {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1px solid #e9ecef;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}
.search-bar .form-group { flex: 1; min-width: 180px; margin-bottom: 0; }

/* ── Empty State ──────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 2rem; color: #6c757d; }
.empty-state-icon { font-size: 3.5rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-state h3 { font-size: 1.2rem; color: #343a40; margin-bottom: 0.5rem; }

/* ── Page Header (public) ─────────────────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, #1a3a6b, #2a5298);
    color: #fff;
    padding: 2.5rem 0;
    margin-bottom: 0;
}
.page-header h1 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 0.3rem; }
.page-header p  { font-size: 0.95rem; color: rgba(255,255,255,.8); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer { background: #1a3a6b; color: #cdd8ea; padding: 2.5rem 0 1rem; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h3 { color: #c9a227; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.85rem; }
.footer-col p  { font-size: 0.85rem; line-height: 1.7; color: #a0b0c8; }
.footer-col ul { list-style: none; font-size: 0.85rem; line-height: 2.1; }
.footer-col ul a { color: #cdd8ea; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: #e8c04a; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #8a9bb5;
}
.footer-bottom a { color: #8a9bb5; text-decoration: none; }
.footer-bottom a:hover { color: #e8c04a; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero { min-height: auto; padding: 4rem 0 0; }
}
@media (max-width: 768px) {
    .primary-nav { display: none; width: 100%; order: 3; }
    .primary-nav.open { display: block; }
    .primary-nav ul { flex-direction: column; gap: 0; border-top: 1px solid #e9ecef; padding-top: 0.75rem; }
    .primary-nav ul a { display: block; padding: 0.6rem 0; border-bottom: 1px solid #f1f3f5; }
    .nav-toggle { display: block; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .destinations-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .jobs-cta-card { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-cta-actions { flex-direction: column; align-items: center; }
}
