/* ==========================================================================
   TAPEX GLOBAL SERVICES - PREMIUM CSS
   ========================================================================== */
:root {
    --navy: #020B2D;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --dark: #0A0A0A;
    --light-bg: #F8FAFC;
    --text-muted: #64748B;
    --green: #25D366;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --shadow: 0 10px 30px rgba(2, 11, 45, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6, .btn, .nav-menu a { font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; } .text-left { text-align: left; }
.text-gold { color: var(--gold); } .text-navy { color: var(--navy); } .text-white { color: var(--white); } .text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.9rem; } .text-xs { font-size: 0.8rem; } .text-xl { font-size: 1.5rem; }
.font-bold { font-weight: 700; } .text-uppercase { text-transform: uppercase; }
.mt-10 { margin-top: 10px; } .mt-15 { margin-top: 15px; } .mt-20 { margin-top: 20px; } .mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; } .mb-15 { margin-bottom: 15px; } .mb-20 { margin-bottom: 20px; } .mb-30 { margin-bottom: 30px; } .mb-40 { margin-bottom: 40px; }
.p-10 { padding: 10px; } .p-15 { padding: 15px; } .p-20 { padding: 20px; } .p-30 { padding: 30px; } .p-40 { padding: 40px; }
.pt-20 { padding-top: 20px; } .pb-20 { padding-bottom: 20px; }
.w-100 { width: 100%; } .w-20 { width: 20px; display: inline-block; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-1 { flex: 1; } .gap-10 { gap: 10px; } .gap-15 { gap: 15px; } .gap-30 { gap: 30px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.bg-light { background-color: var(--light-bg); } .bg-navy { background-color: var(--navy); } .bg-transparent { background-color: transparent !important; }
.border-top { border-top: 1px solid #eee; } .border-light { border-color: rgba(255,255,255,0.1); } .border-gold { border: 1px solid var(--gold); }
.border-none { border: none; }
.radius-8 { border-radius: 8px; } .radius-50 { border-radius: 50%; }
.opacity-80 { opacity: 0.8; }
.cursor-pointer { cursor: pointer; }
.relative { position: relative; } .absolute { position: absolute; } .top-15 { top: 15px; } .right-20 { right: 20px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.overflow-x { overflow-x: auto; white-space: nowrap; padding-bottom: 10px; }
.line-height-1-6 { line-height: 1.6; }

/* LOGO FIX */
.logo { max-height: 48px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
footer .logo, .modal .logo { mix-blend-mode: normal; background: var(--white); padding: 5px; border-radius: 6px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 6px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; transition: var(--transition); border: 2px solid transparent; font-size: 14px; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #b8952b; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212,175,55,0.3); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37,211,102,0.3); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

/* GLASSMORPHISM */
.glass-nav { position: fixed; top: 0; width: 100%; z-index: 1000; background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: var(--glass-border); padding: 15px 0; transition: var(--transition); box-shadow: var(--shadow); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-menu { display: flex; gap: 25px; align-items: center; }
.nav-menu a { color: var(--navy); font-weight: 700; font-size: 13px; text-transform: uppercase; transition: var(--transition); position: relative; }
.nav-menu a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--gold); transition: var(--transition); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.hamburger { display: none; font-size: 24px; color: var(--navy); cursor: pointer; }
.mobile-only { display: none; }

.glass-card { background: var(--white); border-radius: 12px; padding: 30px; box-shadow: var(--shadow); border: 1px solid #eaeaea; transition: var(--transition); }
.glass-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(2, 11, 45, 0.12); border-color: var(--gold); }

/* SECTIONS */
.section { padding: 90px 0; }
.section-title { font-size: 2.8rem; color: var(--navy); font-weight: 900; margin-bottom: 15px; letter-spacing: -1px; }

/* HERO */
.hero { position: relative; padding: 180px 0 100px; background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=2000') center/cover; color: var(--white); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(2,11,45,0.95) 0%, rgba(2,11,45,0.8) 100%); }
.hero-content { position: relative; z-index: 2; }
.badge-gold { display: inline-block; background: rgba(212, 175, 55, 0.15); border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px; border-radius: 30px; font-weight: 800; font-size: 13px; margin-bottom: 25px; text-transform: uppercase; }
.hero-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; font-weight: 900; letter-spacing: -1.5px; }
.hero-desc { font-size: 1.2rem; max-width: 750px; margin: 0 auto 40px; opacity: 0.9; line-height: 1.6; }

.check-list { list-style: none; }
.check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); }

/* EVALUATOR / SMART CONSULTATION FLOW */
.evaluator-card { max-width: 750px; margin: 0 auto; text-align: left; }
.eval-steps { border-bottom: 2px solid #eee; padding-bottom: 15px; margin-bottom: 30px; }
.eval-step { font-weight: 800; color: var(--text-muted); font-size: 13px; text-transform: uppercase; }
.eval-step.active { color: var(--gold); border-bottom: 3px solid var(--gold); margin-bottom: -18px; padding-bottom: 15px; }
.eval-panel { display: none; animation: fadeIn 0.4s ease; }
.eval-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.eval-btn { flex: 1; padding: 15px; border: 2px solid #eee; border-radius: 8px; background: #fff; cursor: pointer; font-weight: 800; color: var(--navy); font-family: inherit; transition: var(--transition); }
.eval-btn.active { border-color: var(--gold); background: rgba(212, 175, 55, 0.05); }
.form-group label { display: block; font-weight: 800; font-size: 13px; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; }
.form-input { width: 100%; padding: 14px 18px; border: 2px solid #eee; border-radius: 6px; font-family: inherit; font-size: 15px; outline: none; transition: var(--transition); background: #fdfdfd; }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); background: #fff; }

.country-card { display: block; text-decoration: none; color: inherit; }
.country-icon { font-size: 3rem; margin-bottom: 15px; }
.country-card h3 { color: var(--navy); margin-bottom: 10px; }
.read-more { font-weight: 700; color: var(--gold); font-size: 14px; text-transform: uppercase; display: inline-block; margin-top: 15px; }

/* CAREER HUB JOBS */
.job-filter-bar { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 30px; }
.job-card { background: var(--white); border-radius: 8px; padding: 25px; border: 1px solid #eee; border-left: 4px solid var(--navy); transition: var(--transition); display: flex; flex-direction: column; justify-content: space-between; }
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-left-color: var(--gold); }
.job-title { font-size: 18px; color: var(--navy); margin-bottom: 5px; line-height: 1.3; }
.job-company { font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.job-salary { color: var(--gold); font-weight: 800; margin: 15px 0; }
.job-badge { background: #e8f5e9; color: #1b5e20; padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 800; display: inline-block; }
.skeleton { background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%); border-radius: 5px; background-size: 200% 100%; animation: 1.5s shine linear infinite; height: 20px; margin-bottom: 10px; }
@keyframes shine { to { background-position-x: -200%; } }

/* FOOTER */
.footer { background: var(--navy); color: var(--white); padding: 80px 0 20px; border-top: 5px solid var(--gold); }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--gold); margin-right: 10px; transition: var(--transition); }
.social-links a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-list li { margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.8); }
.footer-list a { transition: var(--transition); }
.footer-list a:hover { color: var(--gold); padding-left: 5px; }

/* FLOATING WIDGETS */
.floating-wa { position: fixed; bottom: 25px; left: 25px; width: 60px; height: 60px; background: var(--green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 10px 20px rgba(37,211,102,0.4); z-index: 999; animation: pulse 2s infinite; text-decoration: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); } }

/* MODAL */
.modal { display: none; position: fixed; inset: 0; background: rgba(2,11,45,0.8); z-index: 10000; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.modal.active { display: flex; animation: fadeIn 0.3s; }
.modal-content { max-width: 500px; width: 90%; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-bottom: 3px solid var(--gold); }
    .nav-menu.active { display: flex; }
    .nav-menu a { display: block; width: 100%; padding: 10px 0; border-bottom: 1px solid #eee; }
    .nav-menu a::after { display: none; }
    .hamburger { display: block; } .desktop-cta { display: none; } .mobile-only { display: block; width: 100%; border-bottom: none !important; }
    .hero-title { font-size: 3rem; } .hero-stats { flex-direction: column; gap: 15px; } .hero-buttons { flex-direction: column; }
    .lead-grid { grid-template-columns: 1fr; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .eval-steps { flex-direction: column; gap: 10px; align-items: center; border-bottom: none; }
    .eval-step.active { border-bottom: none; color: var(--gold); font-size: 16px; }
}
