/* ============================================
   GLOBAL JOBS - Premium Stylesheet
   ============================================ */

/* === CSS Variables === */
:root {
    --deep-ocean: #0B1628;
    --ocean-surface: #0A1A2E;
    --sky-light: #1A2E4A;
    --premium-gold: #D4A853;
    --warm-gold: #C49A48;
    --ice-blue: #A8D0E6;
    --ice-white: #F0F5FA;
    --mist: rgba(240, 245, 250, 0.08);
    --mist-border: rgba(240, 245, 250, 0.15);
    --slate: #2A3F5F;
    --slate-light: #6B7F99;
    --success: #4CAF7D;
    --alert: #D4534A;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --section-padding: clamp(80px, 12vh, 160px);
    --content-max: 1400px;
    --content-pad: clamp(20px, 5vw, 80px);
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate);
    background: var(--ice-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-body); font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }
.font-display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.03em; }

/* === Preloader === */
.preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--deep-ocean);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { text-align: center; }
.preloader-brand {
    font-family: var(--font-display); font-size: 28px; letter-spacing: 5px;
    color: var(--premium-gold); margin-bottom: 30px;
}
.preloader-bar { width: 200px; height: 2px; background: rgba(212, 168, 83, 0.2); border-radius: 1px; overflow: hidden; }
.preloader-progress {
    height: 100%; width: 0; background: var(--premium-gold);
    animation: preloadFill 1.5s ease forwards;
}
@keyframes preloadFill { 0% { width: 0; } 100% { width: 100%; } }

/* === Custom Cursor === */
.custom-cursor {
    position: fixed; width: 12px; height: 12px;
    border: 1px solid var(--ice-white); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    transform: translate(-50%, -50%); mix-blend-mode: difference;
}
.custom-cursor.hover { width: 40px; height: 40px; border-color: var(--premium-gold); background: rgba(212, 168, 83, 0.1); }
@media (pointer: coarse) { .custom-cursor { display: none; } }

/* === Navigation === */
.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: 72px; background: rgba(11, 22, 40, 0.4);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(240, 245, 250, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.main-nav.scrolled { background: rgba(11, 22, 40, 0.85); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15); }
.nav-container {
    max-width: var(--content-max); margin: 0 auto;
    height: 100%; padding: 0 var(--content-pad);
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    font-family: var(--font-display); font-size: 18px; letter-spacing: 3px;
    color: var(--ice-white); font-weight: 500;
}
.nav-links { display: flex; gap: 36px; }
.nav-link {
    color: var(--ice-white); font-size: 14px; font-weight: 500;
    opacity: 0.8; transition: opacity 0.3s ease;
    position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--premium-gold);
    transition: width 0.25s ease;
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }

/* Nav User Dropdown */
.nav-user-btn {
    display: flex; align-items: center; gap: 10px;
    color: var(--ice-white); font-size: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px; padding: 6px 16px 6px 6px;
    transition: background 0.3s ease;
}
.nav-user-btn:hover { background: rgba(255, 255, 255, 0.12); }
.nav-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.nav-avatar-placeholder {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--premium-gold); color: var(--deep-ocean);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--deep-ocean); border: 1px solid var(--mist-border);
    border-radius: var(--radius-md); min-width: 200px;
    padding: 8px 0; opacity: 0; visibility: hidden;
    transform: translateY(-8px); transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.nav-dropdown-menu.show { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
    display: block; padding: 10px 20px;
    color: var(--ice-white); font-size: 14px;
    transition: background 0.2s ease;
}
.dropdown-item:hover { background: rgba(212, 168, 83, 0.1); color: var(--premium-gold); }
.dropdown-divider { height: 1px; background: var(--mist-border); margin: 8px 0; }
.dropdown-item-danger { color: var(--alert); }
.dropdown-item-danger:hover { background: rgba(212, 83, 74, 0.1); }

/* Mobile Toggle */
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 5px; }
.nav-mobile-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--ice-white); border-radius: 1px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: var(--deep-ocean);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
}
.mobile-menu.show { opacity: 1; visibility: visible; }
.mobile-menu-content { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.mobile-link {
    color: var(--ice-white); font-size: 24px; font-weight: 500;
    opacity: 0.8; transition: opacity 0.3s ease;
}
.mobile-link:hover { opacity: 1; color: var(--premium-gold); }
.mobile-link-danger { color: var(--alert); }
.mobile-cta { margin-top: 16px; }

/* === Buttons === */
.btn-gold {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--premium-gold); color: var(--deep-ocean);
    font-size: 15px; font-weight: 600; padding: 14px 28px;
    border-radius: 26px; border: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background: var(--warm-gold);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
    transform: translateY(-2px);
}
.btn-glass {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px); color: var(--ice-white);
    font-size: 15px; font-weight: 500; padding: 14px 28px;
    border-radius: 26px; border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.btn-glass:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}
.btn-ghost {
    display: inline-flex; align-items: center;
    color: var(--premium-gold); font-size: 14px; font-weight: 600;
    transition: all 0.3s ease;
}
.btn-ghost:hover { color: var(--warm-gold); gap: 4px; }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 20px; }

/* === OCEAN SCENE === */
.scene-ocean {
    position: relative; width: 100vw; height: 100vh; min-height: 600px;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 30%, var(--sky-light) 0%, var(--deep-ocean) 70%);
}
.sky {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 20%, rgba(26, 46, 74, 0.8) 0%, var(--deep-ocean) 60%);
}
.sun {
    position: absolute; bottom: 45%; left: 55%;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(255, 248, 230, 0.9) 0%, rgba(212, 168, 83, 0.3) 40%, transparent 70%);
    border-radius: 50%; transform: translateX(-50%);
    animation: sunPulse 4s ease-in-out infinite;
}
@keyframes sunPulse { 0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.1); } }

/* Water */
.water {
    position: absolute; bottom: 0; width: 100%; height: 55vh;
    background: linear-gradient(to bottom, var(--ocean-surface) 0%, var(--deep-ocean) 100%);
    overflow: hidden;
}
.water::before {
    content: ''; position: absolute; top: -30px; left: -50%;
    width: 200%; height: 60px;
    background: rgba(168, 208, 230, 0.12);
    border-radius: 50%;
    animation: waveCrest 6s ease-in-out infinite;
    z-index: 2;
}
.water::after {
    content: ''; position: absolute; top: -20px; left: -50%;
    width: 200%; height: 50px;
    background: rgba(212, 168, 83, 0.06);
    border-radius: 45%;
    animation: waveCrest 8s ease-in-out infinite reverse;
    animation-delay: -2s;
    z-index: 1;
}
@keyframes waveCrest {
    0%, 100% { transform: translateX(0) translateY(0) scaleX(1); }
    50% { transform: translateX(-25%) translateY(8px) scaleX(1.1); }
}

/* Specular highlights */
.specular-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 3;
}
.specular {
    position: absolute; height: 2px; border-radius: 1px;
    opacity: 0; animation: shimmerGlint 4s ease-in-out infinite;
}
@keyframes shimmerGlint {
    0%, 100% { opacity: 0; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

/* Horizon Glow */
.horizon-glow {
    position: absolute; bottom: 42%; left: 50%;
    transform: translateX(-50%); width: 60%; height: 80px;
    background: radial-gradient(ellipse, rgba(212, 168, 83, 0.25) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}

/* Yacht */
.yacht {
    position: absolute; width: 0; height: 0; z-index: 5;
    animation: sailAcross 40s linear infinite;
    will-change: transform;
}
.yacht::before {
    content: ''; position: absolute;
    width: 120px; height: 24px;
    margin-left: -60px; margin-top: -10px;
    background: linear-gradient(to bottom, var(--ice-white) 0%, #C0C8D4 40%, var(--slate) 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
}
.yacht::after {
    content: ''; position: absolute;
    width: 0; height: 0;
    margin-left: -20px; margin-top: -70px;
    border-left: 35px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 60px solid rgba(240, 245, 250, 0.95);
}
@keyframes sailAcross {
    0% { left: 15%; top: 52%; transform: rotate(-2deg) scale(0.85); }
    50% { left: 50%; top: 50%; transform: rotate(1deg) scale(1); }
    100% { left: 85%; top: 48%; transform: rotate(-1.5deg) scale(0.9); }
}

/* Wake */
.wake-container { position: absolute; inset: 0; pointer-events: none; z-index: 4; }
.wake-arm {
    position: absolute; width: 4px; height: 4px;
    border-radius: 50%; background: transparent; pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: absolute; left: var(--content-pad); top: 50%;
    transform: translateY(-50%); z-index: 10;
    max-width: 560px;
}
.hero-panel {
    background: rgba(11, 22, 40, 0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-lg); padding: 48px;
    box-shadow: inset 0 0 60px rgba(212, 168, 83, 0.05);
    animation: heroPanelIn 1s ease forwards;
    animation-delay: 0.3s; opacity: 0;
}
@keyframes heroPanelIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-label {
    display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.hero-line { width: 40px; height: 1px; background: var(--premium-gold); }
.hero-label-text {
    font-size: 12px; font-weight: 500; letter-spacing: 3px;
    color: var(--premium-gold);
}
.hero-headline {
    font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px);
    color: var(--ice-white); line-height: 1.15;
    margin-bottom: 20px; letter-spacing: -0.02em;
    animation: heroTextIn 0.8s ease forwards;
    animation-delay: 0.5s; opacity: 0;
}
@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.gold-text { color: var(--premium-gold); }
.hero-subtext {
    font-size: 16px; color: var(--slate-light);
    margin-bottom: 32px; line-height: 1.7;
    animation: heroTextIn 0.8s ease forwards;
    animation-delay: 0.7s; opacity: 0;
}
.hero-cta-row {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: heroTextIn 0.8s ease forwards;
    animation-delay: 0.9s; opacity: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 10;
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; color: var(--ice-white); opacity: 0.4;
    animation: scrollBounce 2s ease infinite;
}
.scroll-indicator span { font-size: 11px; letter-spacing: 2px; }
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* === Sections === */
.section { padding: var(--section-padding) var(--content-pad); }
.section-white { background: #ffffff; }
.section-dark { background: var(--deep-ocean); }
.section-ice { background: rgba(168, 208, 230, 0.08); }
.container { max-width: var(--content-max); margin: 0 auto; }

.section-header { margin-bottom: 60px; }
.section-header-center { text-align: center; }
.section-header-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
}
.section-label {
    display: inline-block; font-size: 12px; font-weight: 500;
    letter-spacing: 3px; color: var(--premium-gold);
    margin-bottom: 16px;
}
.section-label-gold { color: var(--premium-gold); }
.section-title {
    font-size: clamp(32px, 4vw, 56px); color: var(--deep-ocean);
    font-weight: 600; letter-spacing: -0.02em;
}
.section-title-white { color: var(--ice-white); }
.section-subtitle {
    font-size: 18px; color: var(--slate-light);
    margin-top: 16px; max-width: 600px;
}

/* === Destinations Grid === */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.destination-card {
    position: relative; aspect-ratio: 3/4;
    border-radius: var(--radius-md); overflow: hidden;
    cursor: pointer;
}
.destination-card:nth-child(1) { grid-row: span 2; grid-column: span 2; }
.destination-image {
    position: absolute; inset: 0;
    transition: transform 0.6s ease;
}
.destination-image img {
    width: 100%; height: 100%; object-fit: cover;
}
.destination-card:hover .destination-image { transform: scale(1.05); }
.destination-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11, 22, 40, 0.9) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px;
    transition: background 0.3s ease;
}
.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(11, 22, 40, 0.85) 0%, rgba(11, 22, 40, 0.2) 60%, transparent 100%);
}
.destination-flag {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--premium-gold); color: var(--deep-ocean);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; margin-bottom: 12px;
}
.destination-overlay h3 {
    color: var(--ice-white); font-size: 20px; font-weight: 600;
    margin-bottom: 4px;
}
.destination-positions {
    color: var(--ice-blue); font-size: 13px;
}

/* === Process Grid === */
.process-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(240, 245, 250, 0.06);
    border-radius: var(--radius-lg); padding: 48px 36px;
    text-align: center; transition: all 0.4s ease;
}
.process-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-8px);
}
.process-number {
    font-family: var(--font-display); font-size: 64px;
    color: rgba(212, 168, 83, 0.3); line-height: 1;
    margin-bottom: 20px;
}
.process-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(212, 168, 83, 0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; color: var(--premium-gold);
}
.process-card h3 {
    color: var(--ice-white); font-size: 22px;
    margin-bottom: 16px;
}
.process-card p {
    color: rgba(240, 245, 250, 0.6); font-size: 15px; line-height: 1.7;
}

/* === Jobs Grid === */
.jobs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md); padding: 28px;
    transition: all 0.4s ease;
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(11, 22, 40, 0.1);
    transform: translateY(-4px);
}
.job-card-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 16px;
}
.job-company-logo {
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    background: var(--deep-ocean); color: var(--premium-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700;
}
.job-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
    font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
    padding: 4px 10px; border-radius: 20px;
}
.badge-gold { background: var(--premium-gold); color: var(--deep-ocean); }
.badge-hot { background: var(--alert); color: white; }
.badge-new { background: var(--ice-blue); color: var(--deep-ocean); }
.job-title { font-size: 18px; font-weight: 600; color: var(--deep-ocean); margin-bottom: 4px; }
.job-company { font-size: 14px; color: var(--slate-light); margin-bottom: 12px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.job-location {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--slate-light);
}
.job-salary {
    font-size: 15px; font-weight: 600; color: var(--premium-gold);
    margin-bottom: 16px;
}
.job-footer { display: flex; align-items: center; justify-content: space-between; }
.job-type {
    font-size: 12px; color: var(--slate-light);
    text-transform: capitalize;
}

/* === Testimonials === */
.testimonials-carousel-wrapper {
    position: relative; overflow: hidden;
}
.testimonials-carousel-wrapper::before,
.testimonials-carousel-wrapper::after {
    content: ''; position: absolute; top: 0; bottom: 0;
    width: 120px; z-index: 2; pointer-events: none;
}
.testimonials-carousel-wrapper::before {
    left: 0; background: linear-gradient(to right, #ffffff, transparent);
}
.testimonials-carousel-wrapper::after {
    right: 0; background: linear-gradient(to left, #ffffff, transparent);
}
.testimonials-carousel {
    display: flex; gap: 24px;
    animation: scrollCarousel 40s linear infinite;
    width: max-content;
}
.testimonials-carousel:hover { animation-play-state: paused; }
@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.testimonial-card {
    width: 380px; flex-shrink: 0;
    background: rgba(168, 208, 230, 0.1);
    border: 1px solid rgba(168, 208, 230, 0.2);
    border-radius: var(--radius-lg); padding: 32px;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-quote {
    font-size: 16px; font-style: italic; color: var(--deep-ocean);
    line-height: 1.7; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--deep-ocean); }
.testimonial-role { font-size: 13px; color: var(--slate-light); }

/* === Stats Bar === */
.stats-bar {
    background: var(--deep-ocean); padding: 80px var(--content-pad);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px; text-align: center;
}
.stat-number {
    font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px);
    color: var(--premium-gold); margin-bottom: 8px;
}
.stat-label {
    font-size: 13px; color: rgba(240, 245, 250, 0.6);
    letter-spacing: 1px; text-transform: uppercase;
}

/* === Partners === */
.partners-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(168, 208, 230, 0.2);
    border-radius: var(--radius-md); overflow: hidden;
}
.partner-logo {
    background: #ffffff; padding: 40px 24px;
    text-align: center; font-size: 16px; font-weight: 600;
    color: var(--slate-light); letter-spacing: 1px;
    transition: all 0.3s ease;
}
.partner-logo:hover { background: var(--deep-ocean); color: var(--premium-gold); }

/* === Newsletter === */
.newsletter-section { padding: 0 var(--content-pad) var(--section-padding); }
.newsletter-card {
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--sky-light) 100%);
    border-radius: var(--radius-lg); padding: 80px;
    text-align: center;
}
.newsletter-content { max-width: 600px; margin: 0 auto; }
.newsletter-content h2 {
    font-family: var(--font-display); font-size: 36px;
    color: var(--ice-white); margin-bottom: 16px;
}
.newsletter-content > p {
    color: rgba(240, 245, 250, 0.7); font-size: 16px;
    margin-bottom: 32px;
}
.newsletter-form {
    display: flex; gap: 12px; margin-bottom: 16px;
}
.newsletter-input {
    flex: 1; padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm); color: var(--ice-white);
    font-size: 15px; outline: none;
    transition: border-color 0.3s ease;
}
.newsletter-input::placeholder { color: rgba(240, 245, 250, 0.4); }
.newsletter-input:focus { border-color: var(--premium-gold); }
.newsletter-note {
    font-size: 13px; color: rgba(240, 245, 250, 0.4);
}

/* === FAQ === */
.faq-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px; max-width: 900px; margin: 0 auto;
}
.faq-item {
    background: rgba(168, 208, 230, 0.06);
    border: 1px solid rgba(168, 208, 230, 0.15);
    border-radius: var(--radius-sm); overflow: hidden;
}
.faq-question {
    width: 100%; padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 15px; font-weight: 500; color: var(--deep-ocean);
    text-align: left; transition: background 0.3s ease;
}
.faq-question:hover { background: rgba(168, 208, 230, 0.1); }
.faq-icon { transition: transform 0.3s ease; flex-shrink: 0; margin-left: 12px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px; padding: 0 24px 20px;
}
.faq-answer p { font-size: 14px; color: var(--slate-light); line-height: 1.7; }
.faq-more { text-align: center; margin-top: 40px; }

/* === Links === */
.link-gold {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--premium-gold); font-size: 15px; font-weight: 600;
    transition: gap 0.3s ease;
}
.link-gold:hover { gap: 12px; }

/* === Footer === */
.site-footer {
    background: var(--deep-ocean);
    padding: 80px var(--content-pad) 30px;
}
.footer-container { max-width: var(--content-max); margin: 0 auto; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
}
.footer-logo {
    font-family: var(--font-display); font-size: 22px;
    letter-spacing: 3px; color: var(--premium-gold);
    margin-bottom: 16px;
}
.footer-tagline {
    color: rgba(240, 245, 250, 0.5); font-size: 14px;
    line-height: 1.7; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--ice-white); transition: all 0.3s ease;
}
.social-link:hover {
    background: var(--premium-gold); color: var(--deep-ocean);
    border-color: var(--premium-gold);
}
.footer-column h4 {
    color: var(--ice-white); font-size: 15px;
    margin-bottom: 20px;
}
.footer-column a {
    display: block; color: rgba(240, 245, 250, 0.5);
    font-size: 14px; margin-bottom: 12px;
    transition: color 0.3s ease;
}
.footer-column a:hover { color: var(--premium-gold); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(240, 245, 250, 0.3); font-size: 13px; }
.footer-crafted { font-style: italic; }

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* === Flash Messages === */
.flash-container {
    position: fixed; top: 90px; right: 24px; z-index: 1100;
    max-width: 400px;
}
.flash {
    padding: 16px 24px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 8px;
    animation: flashIn 0.4s ease;
}
@keyframes flashIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.flash-success { background: rgba(76, 175, 125, 0.1); border: 1px solid var(--success); color: var(--success); }
.flash-error { background: rgba(212, 83, 74, 0.1); border: 1px solid var(--alert); color: var(--alert); }
.flash-info { background: rgba(168, 208, 230, 0.15); border: 1px solid var(--ice-blue); color: var(--slate); }
.flash-close { background: none; border: none; font-size: 18px; cursor: pointer; opacity: 0.6; }

/* === Scroll Reveal Animation === */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === Responsive === */
@media (max-width: 1200px) {
    .destinations-grid { grid-template-columns: repeat(3, 1fr); }
    .destination-card:nth-child(1) { grid-row: span 1; grid-column: span 1; }
    .jobs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; gap: 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content { left: 24px; right: 24px; max-width: none; }
    .hero-panel { padding: 32px; }
    .newsletter-card { padding: 48px 32px; }
    .newsletter-form { flex-direction: column; }
}

@media (max-width: 768px) {
    .destinations-grid { grid-template-columns: 1fr; }
    .destination-card:nth-child(1) { aspect-ratio: 16/9; }
    .jobs-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .partners-grid { grid-template-columns: 1fr 1fr; }
    .hero-headline { font-size: 36px; }
    .yacht { animation-duration: 25s; }
    .testimonials-carousel { animation-duration: 25s; }
    .testimonial-card { width: 300px; }
    .custom-cursor { display: none; }
}

@media (max-width: 480px) {
    .hero-panel { padding: 24px; }
    .hero-headline { font-size: 28px; }
    .hero-cta-row { flex-direction: column; }
    .btn-gold, .btn-glass { width: 100%; justify-content: center; }
    .newsletter-card { padding: 32px 20px; }
    .newsletter-content h2 { font-size: 26px; }
    .section { padding: 60px 20px; }
    .section-title { font-size: 28px; }
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .testimonials-carousel { animation: none; }
    .yacht { animation: none; left: 50%; top: 50%; }
}

/* ============================================
   AUTH PAGES (Login / Register)
   ============================================ */
.auth-page {
    min-height: 100vh; display: flex;
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--sky-light) 100%);
}
.auth-container {
    display: flex; width: 100%; max-width: 1200px;
    margin: 0 auto; min-height: 100vh;
}
.auth-left {
    flex: 1; display: flex; flex-direction: column;
    justify-content: center; padding: 60px;
    color: var(--ice-white);
}
.auth-left .auth-brand {
    font-family: var(--font-display); font-size: 24px;
    letter-spacing: 4px; color: var(--premium-gold); margin-bottom: 40px;
}
.auth-left h1 {
    font-family: var(--font-display); font-size: 48px;
    margin-bottom: 20px; line-height: 1.2;
}
.auth-left p { color: rgba(240, 245, 250, 0.6); font-size: 16px; line-height: 1.7; }

.auth-right {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 60px;
}
.auth-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg); padding: 48px;
    width: 100%; max-width: 460px;
}
.auth-card h2 {
    color: var(--ice-white); font-size: 28px;
    margin-bottom: 8px;
}
.auth-card .auth-subtitle {
    color: rgba(240, 245, 250, 0.5); font-size: 14px;
    margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; color: rgba(240, 245, 250, 0.7);
    font-size: 13px; font-weight: 500; margin-bottom: 8px;
}
.form-input {
    width: 100%; padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm); color: var(--ice-white);
    font-size: 15px; outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.form-input::placeholder { color: rgba(240, 245, 250, 0.3); }
.form-input:focus {
    border-color: var(--premium-gold);
    background: rgba(255, 255, 255, 0.1);
}
.form-error {
    color: var(--alert); font-size: 12px; margin-top: 6px;
}
.form-general-error {
    background: rgba(212, 83, 74, 0.1);
    border: 1px solid var(--alert);
    color: var(--alert); padding: 12px 16px;
    border-radius: var(--radius-sm); margin-bottom: 20px;
    font-size: 13px;
}
.btn-full { width: 100%; }
.auth-footer {
    text-align: center; margin-top: 24px;
    color: rgba(240, 245, 250, 0.5); font-size: 14px;
}
.auth-footer a { color: var(--premium-gold); font-weight: 500; }
.auth-footer a:hover { text-decoration: underline; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-checkbox {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(240, 245, 250, 0.6); font-size: 13px;
}
.form-checkbox input { margin-top: 3px; }
.form-checkbox a { color: var(--premium-gold); }

@media (max-width: 1024px) {
    .auth-container { flex-direction: column; }
    .auth-left { padding: 40px 24px; text-align: center; }
    .auth-left h1 { font-size: 32px; }
    .auth-right { padding: 0 24px 40px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   JOBS PAGE
   ============================================ */
.jobs-page-header {
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--sky-light) 100%);
    padding: 140px var(--content-pad) 60px;
}
.jobs-page-header h1 {
    font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
    color: var(--ice-white); margin-bottom: 24px;
}
.search-bar {
    display: flex; gap: 12px; max-width: 800px;
}
.search-input {
    flex: 1; padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm); color: var(--ice-white);
    font-size: 15px; outline: none;
}
.search-input::placeholder { color: rgba(240, 245, 250, 0.4); }
.search-input:focus { border-color: var(--premium-gold); }

.jobs-layout {
    display: grid; grid-template-columns: 280px 1fr;
    gap: 40px; max-width: var(--content-max);
    margin: 0 auto; padding: 40px var(--content-pad);
}
.filter-sidebar h3 {
    font-size: 16px; color: var(--deep-ocean);
    margin-bottom: 20px;
}
.filter-group { margin-bottom: 28px; }
.filter-group h4 {
    font-size: 13px; color: var(--slate-light);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 12px;
}
.filter-select {
    width: 100%; padding: 12px 16px;
    background: #fff; border: 1px solid rgba(168, 208, 230, 0.4);
    border-radius: var(--radius-sm); color: var(--slate);
    font-size: 14px; outline: none;
    transition: border-color 0.3s ease;
}
.filter-select:focus { border-color: var(--premium-gold); }
.filter-checkbox {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; color: var(--slate); font-size: 14px;
    cursor: pointer;
}
.filter-checkbox input { accent-color: var(--premium-gold); }

.jobs-results-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
}
.jobs-results-header h2 { font-size: 20px; color: var(--deep-ocean); }
.results-count { color: var(--slate-light); font-size: 14px; }

.pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 40px;
}
.pagination a, .pagination span {
    padding: 10px 16px; border-radius: var(--radius-sm);
    font-size: 14px; color: var(--slate);
    transition: all 0.3s ease;
}
.pagination a:hover { background: rgba(168, 208, 230, 0.2); }
.pagination .active {
    background: var(--premium-gold); color: var(--deep-ocean);
    font-weight: 600;
}
.pagination .disabled { color: var(--slate-light); pointer-events: none; }

@media (max-width: 1024px) {
    .jobs-layout { grid-template-columns: 1fr; }
    .filter-sidebar { display: none; }
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-page {
    padding-top: 72px; min-height: 100vh;
    background: rgba(168, 208, 230, 0.04);
}
.dashboard-container {
    max-width: var(--content-max); margin: 0 auto;
    padding: 40px var(--content-pad);
}
.dashboard-header { margin-bottom: 40px; }
.dashboard-header h1 {
    font-size: 32px; color: var(--deep-ocean); margin-bottom: 8px;
}
.dashboard-header p { color: var(--slate-light); }

.stats-cards {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-bottom: 40px;
}
.stat-card {
    background: #fff; border: 1px solid rgba(168, 208, 230, 0.2);
    border-radius: var(--radius-md); padding: 28px;
    transition: all 0.3s ease;
}
.stat-card:hover {
    box-shadow: 0 4px 20px rgba(11, 22, 40, 0.06);
    transform: translateY(-2px);
}
.stat-card-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.stat-card-icon.blue { background: rgba(168, 208, 230, 0.2); color: var(--slate); }
.stat-card-icon.gold { background: rgba(212, 168, 83, 0.15); color: var(--premium-gold); }
.stat-card-icon.green { background: rgba(76, 175, 125, 0.15); color: var(--success); }
.stat-card-icon.purple { background: rgba(168, 130, 230, 0.15); color: #A882E6; }
.stat-card-value {
    font-size: 28px; font-weight: 700; color: var(--deep-ocean);
    margin-bottom: 4px;
}
.stat-card-label { font-size: 13px; color: var(--slate-light); }

.dashboard-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.dashboard-card {
    background: #fff; border: 1px solid rgba(168, 208, 230, 0.2);
    border-radius: var(--radius-md); padding: 28px;
}
.dashboard-card h3 {
    font-size: 18px; color: var(--deep-ocean); margin-bottom: 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.dashboard-card h3 a { font-size: 13px; color: var(--premium-gold); }

.application-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; border-bottom: 1px solid rgba(168, 208, 230, 0.15);
}
.application-item:last-child { border-bottom: none; }
.application-info h4 { font-size: 15px; color: var(--deep-ocean); margin-bottom: 4px; }
.application-info p { font-size: 13px; color: var(--slate-light); }
.application-status {
    padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 600; text-transform: uppercase;
}
.status-pending { background: rgba(212, 168, 83, 0.1); color: var(--premium-gold); }
.status-reviewing { background: rgba(168, 208, 230, 0.2); color: var(--slate); }
.status-shortlisted { background: rgba(76, 175, 125, 0.15); color: var(--success); }
.status-rejected { background: rgba(212, 83, 74, 0.1); color: var(--alert); }
.status-interview_scheduled { background: rgba(168, 130, 230, 0.15); color: #A882E6; }
.status-hired { background: rgba(76, 175, 125, 0.2); color: #2E8B5E; }

.empty-state {
    text-align: center; padding: 40px;
    color: var(--slate-light);
}
.empty-state svg { margin-bottom: 16px; opacity: 0.4; }

@media (max-width: 1024px) {
    .stats-cards { grid-template-columns: repeat(2, 1fr); }
    .dashboard-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .stats-cards { grid-template-columns: 1fr; }
}

/* ============================================
   JOB DETAIL PAGE
   ============================================ */
.job-detail-header {
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--sky-light) 100%);
    padding: 140px var(--content-pad) 60px;
}
.job-detail-company {
    display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.job-detail-logo {
    width: 56px; height: 56px; border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700; color: var(--premium-gold);
}
.job-detail-company-info h2 { color: var(--ice-white); font-size: 14px; opacity: 0.7; }
.job-detail-header h1 {
    font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px);
    color: var(--ice-white); margin-bottom: 20px;
}
.job-detail-meta {
    display: flex; flex-wrap: wrap; gap: 20px;
}
.job-detail-meta span {
    display: flex; align-items: center; gap: 8px;
    color: rgba(240, 245, 250, 0.7); font-size: 14px;
}
.job-detail-actions { display: flex; gap: 16px; margin-top: 32px; }

.job-detail-body {
    max-width: var(--content-max); margin: 0 auto;
    padding: 60px var(--content-pad);
    display: grid; grid-template-columns: 2fr 1fr; gap: 60px;
}
.job-detail-section { margin-bottom: 40px; }
.job-detail-section h3 {
    font-size: 20px; color: var(--deep-ocean); margin-bottom: 16px;
}
.job-detail-section p, .job-detail-section li {
    color: var(--slate); font-size: 15px; line-height: 1.8;
}
.job-detail-section ul { padding-left: 20px; }
.job-detail-section li { margin-bottom: 8px; list-style: disc; }

.job-detail-sidebar {}
.sidebar-card {
    background: #fff; border: 1px solid rgba(168, 208, 230, 0.2);
    border-radius: var(--radius-md); padding: 28px; margin-bottom: 24px;
}
.sidebar-card h4 { font-size: 16px; color: var(--deep-ocean); margin-bottom: 16px; }
.sidebar-row {
    display: flex; justify-content: space-between;
    padding: 10px 0; border-bottom: 1px solid rgba(168, 208, 230, 0.15);
    font-size: 14px;
}
.sidebar-row:last-child { border-bottom: none; }
.sidebar-label { color: var(--slate-light); }
.sidebar-value { color: var(--deep-ocean); font-weight: 500; }

.benefits-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.benefit-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--slate);
}
.benefit-item svg { color: var(--success); flex-shrink: 0; }

@media (max-width: 1024px) {
    .job-detail-body { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-page { display: flex; min-height: 100vh; background: #f5f7fa; }
.admin-sidebar {
    width: 260px; background: var(--deep-ocean);
    position: fixed; height: 100vh; overflow-y: auto;
    z-index: 100;
}
.admin-sidebar-header {
    padding: 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.admin-sidebar-header a {
    font-family: var(--font-display); font-size: 18px;
    letter-spacing: 2px; color: var(--premium-gold);
}
.admin-sidebar-user {
    padding: 16px 24px; display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.admin-sidebar-user .avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--premium-gold); color: var(--deep-ocean);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
}
.admin-sidebar-user .info { color: var(--ice-white); }
.admin-sidebar-user .info .name { font-size: 13px; font-weight: 600; }
.admin-sidebar-user .info .role { font-size: 11px; opacity: 0.5; }

.admin-nav { padding: 16px 0; }
.admin-nav-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 24px; color: rgba(240, 245, 250, 0.6);
    font-size: 14px; transition: all 0.2s ease;
}
.admin-nav-item:hover, .admin-nav-item.active {
    color: var(--ice-white); background: rgba(212, 168, 83, 0.1);
    border-right: 3px solid var(--premium-gold);
}
.admin-nav-item svg { flex-shrink: 0; }

.admin-main {
    flex: 1; margin-left: 260px;
    padding: 24px 32px;
}
.admin-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px;
}
.admin-header h1 { font-size: 24px; color: var(--deep-ocean); }

.admin-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin-bottom: 32px;
}
.admin-stat-card {
    background: #fff; border-radius: var(--radius-md);
    padding: 24px; border: 1px solid rgba(168, 208, 230, 0.2);
}
.admin-stat-value { font-size: 28px; font-weight: 700; color: var(--deep-ocean); }
.admin-stat-label { font-size: 13px; color: var(--slate-light); margin-top: 4px; }
.admin-stat-icon { float: right; opacity: 0.2; }

.admin-card {
    background: #fff; border-radius: var(--radius-md);
    border: 1px solid rgba(168, 208, 230, 0.2); margin-bottom: 24px;
}
.admin-card-header {
    padding: 20px 24px; border-bottom: 1px solid rgba(168, 208, 230, 0.15);
    display: flex; align-items: center; justify-content: space-between;
}
.admin-card-header h3 { font-size: 16px; color: var(--deep-ocean); }
.admin-card-body { padding: 24px; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
    text-align: left; padding: 12px 16px;
    font-size: 12px; font-weight: 600; color: var(--slate-light);
    text-transform: uppercase; letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(168, 208, 230, 0.2);
}
.admin-table td {
    padding: 14px 16px; font-size: 14px; color: var(--slate);
    border-bottom: 1px solid rgba(168, 208, 230, 0.1);
}
.admin-table tr:hover td { background: rgba(168, 208, 230, 0.04); }

.admin-badge {
    padding: 4px 10px; border-radius: 20px;
    font-size: 11px; font-weight: 600;
}
.admin-badge-success { background: rgba(76, 175, 125, 0.1); color: var(--success); }
.admin-badge-warning { background: rgba(212, 168, 83, 0.1); color: #B8860B; }
.admin-badge-danger { background: rgba(212, 83, 74, 0.1); color: var(--alert); }
.admin-badge-info { background: rgba(168, 208, 230, 0.2); color: var(--slate); }

.admin-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 500; transition: all 0.2s ease;
}
.admin-btn-primary { background: var(--premium-gold); color: var(--deep-ocean); }
.admin-btn-primary:hover { background: var(--warm-gold); }
.admin-btn-secondary { background: rgba(168, 208, 230, 0.2); color: var(--slate); }
.admin-btn-secondary:hover { background: rgba(168, 208, 230, 0.3); }
.admin-btn-danger { background: rgba(212, 83, 74, 0.1); color: var(--alert); }
.admin-btn-danger:hover { background: rgba(212, 83, 74, 0.2); }
.admin-btn-sm { padding: 6px 12px; font-size: 12px; }

.admin-form-group { margin-bottom: 20px; }
.admin-form-group label {
    display: block; font-size: 13px; font-weight: 500;
    color: var(--slate); margin-bottom: 8px;
}
.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid rgba(168, 208, 230, 0.4);
    border-radius: var(--radius-sm); font-size: 14px;
    color: var(--slate); outline: none;
    transition: border-color 0.3s ease;
}
.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus { border-color: var(--premium-gold); }
.admin-form-group textarea { resize: vertical; min-height: 120px; }
.admin-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form-check { display: flex; align-items: center; gap: 10px; }
.admin-form-check input { width: auto; }

.admin-tabs { display: flex; gap: 4px; margin-bottom: 24px; border-bottom: 1px solid rgba(168, 208, 230, 0.3); }
.admin-tab {
    padding: 12px 20px; font-size: 14px; color: var(--slate-light);
    border-bottom: 2px solid transparent; transition: all 0.2s ease;
}
.admin-tab:hover { color: var(--slate); }
.admin-tab.active { color: var(--premium-gold); border-bottom-color: var(--premium-gold); }

.admin-login-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--sky-light) 100%);
}
.admin-login-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg); padding: 48px;
    width: 100%; max-width: 400px;
}
.admin-login-card .brand {
    font-family: var(--font-display); font-size: 22px;
    letter-spacing: 3px; color: var(--premium-gold);
    text-align: center; margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
    .admin-sidebar.show { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .admin-stats-grid { grid-template-columns: 1fr; }
    .admin-main { padding: 16px; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-3 { margin-top: 24px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }


/* =========================================================
   GLOBAL JOBS ADMIN - RESPONSIVE MOBILE FIRST
========================================================= */

/* Base responsive */
*{
    box-sizing:border-box;
}

html,
body{
    overflow-x:hidden;
}

.admin-page{
    display:flex;
    min-height:100vh;
    width:100%;
}

/* =========================
   SIDEBAR
========================= */

.admin-sidebar{
    width:280px;
    flex-shrink:0;
    display:flex;
    flex-direction:column;
    transition:all .3s ease;
}

/* =========================
   MAIN
========================= */

.admin-main{
    flex:1;
    min-width:0;
    padding:24px;
}

/* =========================
   HEADER
========================= */

.admin-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:24px;
}

.admin-header h1{
    font-size:28px;
    line-height:1.2;
    margin:0;
}

/* =========================
   STATS GRID
========================= */

.admin-stats-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
    margin-bottom:24px;
}

.admin-stat-card{
    min-width:0;
}

/* =========================
   TABLE
========================= */

.admin-table{
    width:100%;
    border-collapse:collapse;
}

.admin-table th,
.admin-table td{
    padding:14px;
    text-align:left;
    vertical-align:middle;
}

.admin-card{
    overflow:hidden;
}

.admin-card-body{
    overflow-x:auto;
}

/* =========================
   TWO COLUMN SECTION
========================= */

.admin-main > div[style*="grid-template-columns: 1fr 1fr"]{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:24px !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px){

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

    .admin-main{
        padding:20px;
    }

    .admin-sidebar{
        width:240px;
    }
}

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

@media (max-width: 768px){

    .admin-page{
        flex-direction:column;
    }

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

    .admin-sidebar{
        width:100%;
        height:auto;
        position:relative;
        padding-bottom:12px;
    }

    .admin-sidebar-header{
        padding:18px 20px;
    }

    .admin-sidebar-user{
        padding:0 20px 20px;
    }

    .admin-nav{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
        padding:0 16px 16px;
    }

    .admin-nav-item{
        flex:1 1 calc(50% - 10px);
        min-width:140px;
        justify-content:flex-start;
        border-radius:12px;
    }

    /* =========================
       MAIN
    ========================= */

    .admin-main{
        padding:16px;
    }

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

    .admin-header h1{
        font-size:24px;
    }

    /* =========================
       STATS
    ========================= */

    .admin-stats-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .admin-stat-card{
        padding:18px;
    }

    .admin-stat-value{
        font-size:28px;
    }

    /* =========================
       TABLE RESPONSIVE
    ========================= */

    .admin-table{
        min-width:700px;
    }

    /* =========================
       GRID SECTION
    ========================= */

    .admin-main > div[style*="grid-template-columns: 1fr 1fr"]{
        grid-template-columns:1fr !important;
    }

    /* =========================
       CARD
    ========================= */

    .admin-card{
        border-radius:16px;
    }

    .admin-card-header{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .admin-btn{
        width:100%;
        justify-content:center;
    }

    .admin-btn-sm{
        width:auto;
    }

    /* =========================
       FLASH
    ========================= */

    .flash{
        left:16px !important;
        right:16px !important;
        width:auto !important;
        top:16px !important;
    }
}

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

@media (max-width: 480px){

    .admin-main{
        padding:12px;
    }

    .admin-header h1{
        font-size:22px;
    }

    .admin-nav{
        flex-direction:column;
    }

    .admin-nav-item{
        width:100%;
        flex:none;
    }

    .admin-stat-card{
        padding:16px;
    }

    .admin-card-header,
    .admin-card-body{
        padding:16px;
    }

    .admin-sidebar-user .info .name{
        font-size:14px;
    }

    .admin-sidebar-user .info .role{
        font-size:12px;
    }
}