:root {
    --green-950: #052e16;
    --green-900: #0a3d22;
    --green-800: #14532d;
    --green-700: #166534;
    --green-600: #16a34a;
    --green-500: #22c55e;
    --green-400: #4ade80;
    --green-200: #bbf7d0;
    --green-100: #dcfce7;
    --green-50: #f0fdf4;
    --gold: #d4a017;
    --gold-light: #f5d76e;
    --sand: #faf8f5;
    --text: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 30px rgba(10, 61, 34, 0.08);
    --shadow-md: 0 8px 40px rgba(10, 61, 34, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 61, 34, 0.16);
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green-700); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { color: var(--green-600); }

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

/* Icons */
.bi { line-height: 1; vertical-align: -0.125em; }
.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}
.icon-box-green { background: linear-gradient(135deg, var(--green-100), var(--green-50)); color: var(--green-700); }
.icon-box-gold { background: linear-gradient(135deg, #fef3c7, #fffbeb); color: #b45309; }
.icon-box-dark { background: linear-gradient(135deg, var(--green-800), var(--green-950)); color: var(--gold-light); }

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(22, 101, 52, 0.08);
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--green-900);
    letter-spacing: -0.02em;
}
.logo:hover { color: var(--green-800); }

.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--green-600) 0%, var(--green-900) 100%);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}
.logo-mark .bi { font-size: 1.1rem; }

.logo-img {
    height: 52px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

.logo-img-wrap {
    display: flex;
    align-items: center;
    background: var(--green-900);
    border-radius: 10px;
    padding: 3px 8px;
    line-height: 0;
}

.site-header .logo-img {
    height: 44px;
}

.footer-brand .logo-img {
    height: 56px;
    filter: brightness(1.05);
}

.logo span small {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
}
.nav-links a.active { color: var(--green-700); }

.nav-toggle {
    display: none;
    background: var(--green-50);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--green-800);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    color: white;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
}
.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(22, 163, 74, 0.4);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: var(--green-950);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}
.btn-gold:hover { color: var(--green-950); transform: translateY(-2px); }
.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: white; color: var(--green-900); border-color: white; }
.btn-white {
    background: white;
    color: var(--green-800);
    box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--green-50); color: var(--green-900); }
.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: white;
    border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); color: white; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-secondary { background: #e2e8f0; color: var(--text); }
.btn-danger { background: #dc2626; color: white; border: none; }

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    display: flex;
    align-items: center;
    margin-top: var(--header-h);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, rgba(5, 46, 22, 0.94) 0%, rgba(20, 83, 45, 0.82) 45%, rgba(22, 101, 52, 0.7) 100%),
        url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80') center/cover no-repeat;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
    color: white;
}
.hero-content { max-width: 580px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid rgba(245, 215, 110, 0.35);
    color: var(--gold-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.hero h1 .highlight { color: var(--gold-light); }
.hero-lead {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-panel {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.hero-panel h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.75;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.dest-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.dest-mini {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
}
.dest-mini .code {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: var(--green-950);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 800;
}

.hero-stats-bar {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats-bar strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold-light);
}
.hero-stats-bar span { font-size: 0.82rem; opacity: 0.8; }

/* Sections */
section { padding: 5.5rem 0; }
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green-600);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}
.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    color: var(--green-900);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

.bg-sand { background: var(--sand); }
.bg-green-soft { background: linear-gradient(180deg, var(--green-50) 0%, white 100%); }

/* Destinations */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 1.25rem;
}
.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}
.dest-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
}
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    background: var(--green-800);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,46,22,0.92) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: white;
}
.dest-card-overlay .code-badge {
    align-self: flex-start;
    background: var(--gold);
    color: var(--green-950);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}
.dest-card-overlay h3 { font-size: 1rem; font-weight: 700; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-visual img {
    border-radius: var(--radius);
    width: 100%;
    height: 480px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.about-float-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 260px;
}
.about-float-card strong {
    display: block;
    color: var(--green-900);
    font-size: 1.5rem;
    font-weight: 800;
}
.about-float-card span { font-size: 0.82rem; color: var(--text-muted); }

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-900);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.about-content p { color: var(--text-muted); margin-bottom: 1rem; }

.feature-list { list-style: none; margin-top: 1.75rem; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.65rem 0;
    font-weight: 600;
    color: var(--text);
}
.feature-list .bi {
    color: var(--green-600);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

/* Process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.process-step {
    text-align: center;
    padding: 2rem 1.25rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(22, 101, 52, 0.06);
    position: relative;
}
.process-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.9rem;
    margin: 0 auto 1rem;
}
.process-step h3 { font-size: 1rem; color: var(--green-900); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(22, 101, 52, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-900);
    margin: 1rem 0 0.5rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Job cards */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}
.job-card {
    background: white;
    border-radius: var(--radius);
    padding: 0;
    box-shadow: var(--shadow);
    border: 1px solid rgba(22, 101, 52, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}
.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.job-card-top {
    background: linear-gradient(135deg, var(--green-800), var(--green-950));
    padding: 1.25rem 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}
.job-country {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.9;
    margin-bottom: 0.35rem;
}
.job-card-top h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
.job-card-top h3 a { color: white; }
.job-card-top h3 a:hover { color: var(--gold-light); }
.job-badge {
    background: var(--gold);
    color: var(--green-950);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.3rem 0.65rem;
    border-radius: 50px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.job-card-body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
}
.job-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.job-meta .bi { color: var(--green-600); }
.job-card-body > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.25rem;
}
.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}
.vacancy-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-700);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px dashed var(--green-200);
}
.empty-state .icon-box { margin: 0 auto 1.25rem; width: 72px; height: 72px; font-size: 1.75rem; }
.empty-state h3 { color: var(--green-900); font-size: 1.25rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); max-width: 420px; margin: 0 auto 1.5rem; }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 50%, var(--green-600) 100%);
    border-radius: calc(var(--radius) + 4px);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,160,23,0.2) 0%, transparent 70%);
}
.cta-section h2 { font-size: 1.85rem; font-weight: 800; margin-bottom: 0.5rem; position: relative; }
.cta-section p { opacity: 0.9; position: relative; max-width: 480px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; position: relative; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-card {
    display: flex;
    gap: 1.15rem;
    padding: 1.35rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    border: 1px solid rgba(22, 101, 52, 0.06);
    transition: box-shadow 0.2s;
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card h3 { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-bottom: 0.25rem; }
.contact-card p, .contact-card a { font-weight: 700; color: var(--green-900); font-size: 1rem; }

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    border: 3px solid var(--green-100);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* Page hero */
.page-hero {
    margin-top: var(--header-h);
    background: linear-gradient(135deg, var(--green-950), var(--green-800));
    color: white;
    padding: 4.5rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.page-hero h1 { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.85; font-size: 1.05rem; }
.page-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.88rem;
    opacity: 0.7;
}
.page-hero .breadcrumb a { color: var(--gold-light); }

/* Job detail */
.job-detail-wrap { padding: 0 0 5rem; }
.job-detail {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
}
.job-detail-banner {
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    color: white;
    padding: 2.5rem;
}
.job-detail-banner h1 { font-size: 1.85rem; font-weight: 800; margin: 0.5rem 0 1rem; }
.job-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.9rem;
}
.job-detail-meta span { display: inline-flex; align-items: center; gap: 0.4rem; opacity: 0.9; }
.job-detail-body { padding: 2.5rem; }
.job-detail-section { margin-bottom: 2rem; }
.job-detail-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--green-800);
    margin-bottom: 1rem;
    font-weight: 700;
}
.job-detail-section pre {
    color: var(--text-muted);
    white-space: pre-wrap;
    font-family: inherit;
    line-height: 1.75;
    font-size: 0.95rem;
}
.apply-box {
    background: linear-gradient(135deg, var(--green-50), white);
    border: 1px solid var(--green-200);
    border-radius: var(--radius);
    padding: 2rem;
}
.apply-box h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-900);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}
.apply-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

/* Footer */
.site-footer {
    background: var(--green-950);
    color: rgba(255,255,255,0.8);
    padding-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand .logo { color: white; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; opacity: 0.75; max-width: 320px; line-height: 1.7; }
.footer-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.footer-countries span {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    color: var(--gold-light);
}
.footer-col h4 {
    color: white;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li {
    margin-bottom: 0.65rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.footer-col li .bi { color: var(--green-400); margin-top: 0.2rem; }
.footer-col a { color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Alerts */
.page-alerts { margin-top: calc(var(--header-h) + 1rem); }
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.alert-success { background: var(--green-100); color: var(--green-800); border: 1px solid var(--green-400); }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* Admin */
.admin-wrap { max-width: 1000px; margin: calc(var(--header-h) + 2rem) auto 3rem; padding: 0 1rem; }
.admin-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.admin-table th, .admin-table td { padding: 1rem; text-align: left; border-bottom: 1px solid #f1f5f9; font-size: 0.9rem; }
.admin-table th { background: var(--green-50); color: var(--green-800); font-weight: 700; }
.admin-form { background: white; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.4rem; font-size: 0.88rem; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}
.form-check { display: flex; align-items: center; gap: 0.5rem; }
.form-check input { width: auto; }
.form-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.status-active { color: var(--green-700); font-weight: 700; }
.status-inactive { color: var(--text-muted); }

.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination a, .pagination span {
    padding: 0.55rem 0.95rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.88rem;
    font-weight: 600;
}
.pagination .active { background: var(--green-700); color: white; border-color: var(--green-700); }

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 600; margin-top: 1.5rem; }

/* Filter bar on jobs page */
.jobs-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--green-200);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-800);
}

@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-panel { display: none; }
    .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-section { grid-template-columns: 1fr; text-align: center; }
    .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-toggle { display: grid; place-items: center; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: var(--shadow-lg);
        gap: 0.5rem;
        align-items: stretch;
    }
    .nav-links.open { display: flex; }
    .nav-links .btn { width: 100%; }
    .services-grid, .process-grid { grid-template-columns: 1fr; }
    .jobs-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .about-float-card { position: static; margin-top: 1rem; max-width: none; }
    .hero-stats-bar { gap: 1.5rem; flex-wrap: wrap; }
    .job-detail-banner, .job-detail-body { padding: 1.5rem; }
}
