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

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}
.bg-glow.one { background: #f97316; top: -200px; left: -100px; animation: float1 8s ease-in-out infinite; }
.bg-glow.two { background: #3b82f6; bottom: -200px; right: -100px; animation: float2 10s ease-in-out infinite; }
.bg-glow.three { background: #8b5cf6; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: float3 12s ease-in-out infinite; }

@keyframes float1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(80px, 60px); } }
@keyframes float2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-60px, -80px); } }
@keyframes float3 { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.3); } }

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.navbar .nav-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 56px;
}
.navbar .logo {
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar .logo span { color: #f97316; }
.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
}
.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(148,163,184,0.1); color: #fff; }
.nav-links a.active { color: #f97316; background: rgba(249,115,22,0.1); }

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 16px 60px;
}

.urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626, #f97316);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: pulse-badge 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(249, 115, 22, 0); }
}
.urgent-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero {
    text-align: center;
    padding: 40px 0 30px;
}
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 28px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 50%);
    pointer-events: none;
}
.hero-image-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.hero h1 {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, #f97316 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero .subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: #94a3b8;
    font-weight: 500;
}
.hero .location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    color: #60a5fa;
    font-weight: 600;
}

.card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.2s, border-color 0.2s;
}
.card:hover {
    transform: translateY(-2px);
    border-color: rgba(148, 163, 184, 0.2);
}
.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-title .icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.detail-item {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: border-color 0.2s;
}
.detail-item:hover { border-color: rgba(249, 115, 22, 0.3); }
.detail-item .label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}
.detail-item .value {
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;
}
.detail-item .value.highlight {
    color: #f97316;
    font-size: 20px;
}

.salary-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.5;
}
.check-list li .check {
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    transition: border-color 0.2s;
}
.benefit-item:hover { border-color: rgba(34, 197, 94, 0.3); }
.benefit-item .emoji { font-size: 20px; flex-shrink: 0; }

.cta-section {
    text-align: center;
    padding: 30px 0 10px;
}
.cta-section h2 {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}
.cta-section p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 36px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}
.btn-whatsapp:hover { box-shadow: 0 6px 30px rgba(34, 197, 94, 0.4); }

.btn-call {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}
.btn-call:hover { box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4); }

.btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.form-section { margin-top: 10px; }
.form-section h2 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #f8fafc;
}

.footer {
    text-align: center;
    padding: 40px 0 20px;
    color: #94a3b8;
    font-size: 13px;
}
.footer .divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f97316, transparent);
    margin: 0 auto 16px;
    border-radius: 2px;
}
.footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}
.footer .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}
.footer .footer-links a:hover { color: #f97316; }

.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 12px 16px;
    z-index: 100;
    gap: 10px;
}
.floating-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 12px;
}

@media (max-width: 640px) {
    .floating-cta { display: flex; }
    .container { padding-bottom: 100px; }
    .details-grid { grid-template-columns: 1fr 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .hero-image-wrapper img { height: 200px; }
    .image-banner img { height: 160px; }
    .image-strip { grid-template-columns: 1fr; }
    .image-strip .strip-item img { height: 160px; }
    .why-image-row { grid-template-columns: 1fr; }
    .why-image-row .why-item img { height: 160px; }
    .mobile-nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 8px 16px 16px;
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 14px; font-size: 14px; }
}

.image-banner {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.image-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.image-banner:hover img { transform: scale(1.03); }
.image-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(15,23,42,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    text-align: center;
}
.image-banner .banner-overlay h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}
.image-banner .banner-overlay p {
    font-size: 14px;
    color: #94a3b8;
}

.image-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}
.image-strip .strip-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}
.image-strip .strip-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.image-strip .strip-item:hover img { transform: scale(1.05); }
.image-strip .strip-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    padding: 20px 14px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
}

.why-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}
.why-image-row .why-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}
.why-image-row .why-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.why-image-row .why-item:hover img { transform: scale(1.05); }
.why-image-row .why-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    padding: 16px 10px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
    text-align: center;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page heading (for subpages) */
.page-heading {
    text-align: center;
    padding: 30px 0 24px;
}
.page-heading h1 {
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #f97316 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-heading p {
    color: #94a3b8;
    font-size: 16px;
    margin-top: 8px;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    font-weight: 700;
    font-size: 16px;
    color: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
    font-family: inherit;
    line-height: 1.5;
}
.faq-question::after {
    content: '+';
    font-size: 22px;
    color: #f97316;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
    content: '−';
}
.faq-answer {
    margin-top: 12px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
    display: none;
}
.faq-item.open .faq-answer { display: block; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: border-color 0.2s;
}
.contact-card:hover { border-color: rgba(249, 115, 22, 0.3); }
.contact-card .icon-big {
    font-size: 28px;
    margin-bottom: 8px;
}
.contact-card h3 {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-card a {
    color: #f8fafc;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-card a:hover { color: #f97316; }

@media (max-width: 640px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* Privacy policy */
.privacy-content {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.8;
}
.privacy-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #f8fafc;
    margin: 28px 0 12px;
}
.privacy-content h3:first-child { margin-top: 0; }
.privacy-content p { margin-bottom: 12px; }
.privacy-content ul {
    margin: 8px 0 16px 20px;
}
.privacy-content ul li { margin-bottom: 6px; }

/* ===== SEMANTIC SEO ADDITIONS ===== */

/* Screen-reader only (for a11y keyword spans) */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Enhanced description text */
.job-description-text {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
}
.job-description-text p { margin-bottom: 12px; }
.job-description-text strong { color: #f8fafc; }

/* Locations page */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}
.location-chip {
    display: block;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s, color 0.2s;
}
.location-chip:hover {
    border-color: rgba(249, 115, 22, 0.3);
    color: #f97316;
}
.faq-inline-link {
    color: #f97316;
    text-decoration: underline;
}
.faq-inline-link:hover {
    color: #fb923c;
}
.location-chip .city-icon { font-size: 20px; display: block; margin-bottom: 4px; }

/* Job type tags */
.job-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.job-type-tag {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: #f97316;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.icon-orange { background: rgba(249,115,22,0.15); color: #f97316; }
.icon-green { background: rgba(34,197,94,0.15); color: #22c55e; }
.icon-blue { background: rgba(59,130,246,0.15); color: #3b82f6; }

/* Job meta bar */
.job-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
    margin-top: 20px;
}
.job-meta-bar span {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

/* Eligible locations callout */
.locations-callout {
    text-align: center;
    padding: 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
}
.locations-callout p {
    color: #94a3b8;
    font-size: 14px;
}
.locations-callout a {
    color: #60a5fa;
    font-weight: 600;
    text-decoration: none;
}
.locations-callout a:hover { color: #f97316; }

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .bg-glow { animation: none !important; }
    .urgent-badge { animation: none !important; }
    .urgent-badge::before { animation: none !important; }
}
