:root {
    --gold: #d4952a;
    --gold-light: #f0b84a;
    --gold-dim: #8a5e15;
    --orange: #ff6b00;
    --bg-dark: #1a1a18;
    --bg-card: #222220;
    --bg-nav: rgba(18,18,16,0.97);
    --text: #e8e0d0;
    --text-muted: #9a9080;
    --border: rgba(212,149,42,0.2);
    --transition: 0.35s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg-dark);
    color: var(--text);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ---- NAVBAR ---- */
#navbar {
    position: fixed; top: 20px; left: 0; right: 0; z-index: 1000;
    background: none;
    text-transform: uppercase;
    border-bottom: 0px solid var(--border);
    padding: 0 6rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 100px;
    backdrop-filter: blur(12px);
    transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.5); }
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo img { height: 80px;}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text .name { font-family: 'Impacted'; text-transform: uppercase; font-weight: 300; font-size: 1.1rem; color: var(--gold); letter-spacing: .05em; }
.nav-logo-text .sub  { font-size: .7rem; color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; }
nav ul { list-style: none; display: flex; gap: .25rem; }
nav ul li a {
    display: block; padding: .5rem 1rem;
    font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 1rem;
    color: var(--text); text-decoration: none; letter-spacing: .06em;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
    position: relative;
}
nav ul li a::after {
    content: ''; position: absolute; bottom: 2px; left: 1rem; right: 1rem;
    height: 2px; background: var(--gold); transform: scaleX(0);
    transition: transform var(--transition); transform-origin: left;
}
nav ul li a:hover, nav ul li a.active { color: var(--gold); }
nav ul li a:hover::after, nav ul li a.active::after { transform: scaleX(1); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: var(--transition); }

/* ---- HERO / SLIDER ---- */
#home {
    height: 100vh; min-height: 600px;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.slider-wrap { position: absolute; inset: 0; }
.slide {
    position: absolute; inset: 0;
    background: #111;
    opacity: 0; transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide.fallback {
    background: linear-gradient(135deg, #1a1207, #2a1e08, #0f0f0d);
}
.slide-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(15,10,5,.85) 100%);
    z-index: 2;
}
.slide-caption {
    position: absolute;
    left: 50%; top: 20%;
    transform: translateX(-50%);
    z-index: 3;
    max-width: 920px;
    padding: 0.5rem 1rem;
    color: rgba(249, 249, 249, 0.4);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    letter-spacing: .06em;
    text-align: center;
    box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.hero-content {
    position: relative; z-index: 2;
    padding: 0 4rem 3rem;
    display: flex; flex-direction: column; align-items: center;
}
.hero-title {
    font-family: 'impact', sans-serif; font-weight: 700;
    font-size: clamp(0.5rem, 6vw, 5rem);
    color: var(--gold); letter-spacing: .18em; text-align: center;
    text-shadow: 0 2px 40px rgba(212,149,42,.4);
    animation: fadeUp .8s ease both;
}
.hero-sub {
    font-size: 1rem; color: var(--text-muted); letter-spacing: .3em;
    text-transform: uppercase; margin-top: .5rem; text-align: center;
    animation: fadeUp .8s .15s ease both;
}
.slider-dots {
    display: flex; gap: .5rem; margin-top: 1.5rem;
    animation: fadeUp .8s .3s ease both;
}
.slider-dots span {
    width: 28px; height: 3px; background: rgba(255,255,255,.3);
    border-radius: 2px; cursor: pointer; transition: background .3s;
}
.slider-dots span.active { background: var(--gold); }
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 3; background: rgba(0,0,0,.4); border: 1px solid var(--border);
    color: var(--gold); width: 44px; height: 44px; border-radius: 50%;
    cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.slider-btn:hover { background: rgba(212,149,42,.2); }
.slider-btn.prev { left: 1.5rem; }
.slider-btn.next { right: 1.5rem; }
.hero-bar {
    position: relative; z-index: 2;
    background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    padding: .75rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.hero-contact a { color: var(--text-muted); text-decoration: none; font-size: .9rem; margin-right: 1.5rem; }
.hero-contact a:hover { color: var(--gold); }
.hero-social a { color: var(--text-muted); margin-left: 1rem; font-size: 1.1rem; transition: color var(--transition); }
.hero-social a:hover { color: var(--gold); }

/* ---- SECTIONS ---- */
section { padding: 5rem 2rem; scroll-margin-top: 100px; }
.container { max-width: 1140px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-label {
    font-family: 'Rajdhani', sans-serif; font-size: .85rem;
    letter-spacing: .35em; text-transform: uppercase; color: var(--gold);
    display: block; margin-bottom: .5rem;
}
.section-title {
    font-family: 'Rajdhani', sans-serif; font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--text);
    line-height: 1.1;
}
.section-line {
    width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1rem auto 0;
}

/* ---- ABOUT ---- */
#about { background: var(--bg-dark); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-img {
    border-radius: 4px; overflow: hidden;
    position: relative;
}
.about-img img { width: 100%; display: block; }
.about-img::before {
    content: ''; position: absolute; inset: -8px; z-index: -1;
    border: 1px solid var(--border); border-radius: 6px;
}
.about-text h2 {
    font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700;
    color: var(--gold); margin-bottom: .5rem;
}
.about-text h3 { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 400; }
.about-text p { color: var(--text-muted); line-height: 1.9; }
.img-placeholder .placeholder-text { font-size: .9rem; color: var(--text-muted); }
.stat-row { display: flex; gap: 2rem; margin-top: 2rem; }
.stat { text-align: center; }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: .8rem; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; }

/* ---- SERVICES ---- */
#services { background: #161614; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; justify-items: center; align-items: start; }
.service-card {
    background: transparent; border: none;
    border-radius: 0; padding: 0.5rem 0.6rem;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: default; display: flex; flex-direction: column; align-items: center; gap: .25rem; text-align: center; width:100%; max-width:260px;
}
.service-card:hover {
    transform: translateY(-3px);
}
.service-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.service-card-link:hover {
    color: inherit;
}
.service-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .6rem;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.service-icon-link:hover {
    transform: translateY(-2px);
}
.service-icon-link:hover .service-icon {
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.service-icon {
    width: 76px; height: 76px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,149,42,0.14);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    overflow: hidden; font-size: 1.4rem; color: var(--gold);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45) inset;
}
.service-icon img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    border-radius: 50%;
}
.service-icon i {
    font-size: 2rem;
    line-height: 1;
}
.service-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin: .25rem 0 0; }
.service-url {
    display: inline-block; margin-top: .25rem; color: var(--gold);
    font-size: .82rem; text-decoration: none; word-break: break-word;
}
.service-url:hover { color: var(--gold-light); text-decoration: underline; }
.service-url.no-url { color: var(--text-muted); font-size: .85rem; margin: 0; }
.service-card p { font-size: .9rem; color: var(--text-muted); }

/* ---- NEWS ---- */
#news { background: #161614; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
a.news-card {
    display: block;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 4px; overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    color: inherit;
}
a.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.news-img { height: 180px; background: #2a2a28; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--gold-dim); }
.news-body { padding: 1.25rem 1.5rem; }
.news-date { font-size: .8rem; color: var(--gold); letter-spacing: .1em; margin-bottom: .5rem; }
.news-body h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.news-body p { font-size: .9rem; color: var(--text-muted); }
.empty-state { text-align: center; color: var(--text-muted); }

/* ---- APPLY NOW ---- */
#apply { background: var(--bg-dark); }
.apply-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.jobs-list {
    display: flex; flex-direction: column; gap: .75rem;
    max-height: 640px;
    overflow-y: auto;
    padding-right: 8px;
}
.job-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 4px; padding: 1.25rem 1.5rem;
    cursor: pointer; transition: border-color var(--transition), box-shadow var(--transition);
    position: relative;
}
.job-summary { cursor: pointer; }
.job-details {
    display: none;
    margin-top: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.job-details-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.job-details-text {
    white-space: normal;
    margin-bottom: 1rem;
    line-height: 1.6;
    max-height: 420px;
    overflow: auto;
    padding-right: .25rem;
}
.job-details-text p { margin: 0 0 .75rem; }
.job-details-actions { margin-top: .75rem; }
.job-item.expanded { box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.job-item.expanded .job-details { display: block; }
.job-item:hover, .job-item.selected { border-color: var(--gold); background: rgba(212,149,42,.06); }
.jobs-list::-webkit-scrollbar { width: 7px; }
.jobs-list::-webkit-scrollbar-track { background: rgba(255,255,255,.03); }
.jobs-list::-webkit-scrollbar-thumb { background: rgba(212,149,42,.3); border-radius: 999px; }
.job-item h4 { font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.job-item .job-meta { font-size: .85rem; color: var(--gold); margin-top: .25rem; }
.job-item p { font-size: .85rem; color: var(--text-muted); margin-top: .5rem; }
.apply-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; padding: 2rem; }
.apply-form h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 1.5rem; }
.jobs-title { font-family:'Rajdhani',sans-serif; font-size:1.1rem; color:var(--text-muted); margin-bottom:1rem; text-transform:uppercase; letter-spacing:.1em; }
.empty-jobs { color: var(--text-muted); }
.selected-pos {
    display:none; padding:.5rem .75rem; background:rgba(212,149,42,.1);
    border:1px solid var(--border); border-radius:3px;
    margin-bottom:1rem; font-size:.9rem; color:var(--gold);
}
.selected-pos.visible { display:block; }

/* ---- CONTACT ---- */
#contact { background: #161614; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-item i { color: var(--gold); font-size: 1.1rem; margin-top: .25rem; }
.contact-item div { font-size: .95rem; color: var(--text-muted); }
.contact-item strong { color: var(--text); display: block; margin-bottom: .15rem; }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-dark); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1rem; text-decoration: none;
    transition: border-color var(--transition), color var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ---- FORM ---- */
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .8rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .4rem; }
input, textarea, select {
    width: 100%; background: rgba(255,255,255,.04);
    border: 1px solid var(--border); border-radius: 3px;
    color: var(--text); padding: .65rem .9rem; font-size: .95rem;
    font-family: inherit; outline: none;
    transition: border-color var(--transition);
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); background: rgba(212,149,42,.05); }
textarea { min-height: 120px; resize: vertical; }
select option { background: var(--bg-card); }
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 2rem; border-radius: 3px; cursor: pointer;
    font-family: 'Rajdhani', sans-serif; font-weight: 700;
    font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
    border: none; transition: all var(--transition);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    color: #000;
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,149,42,.3); }
.btn-outline {
    background: transparent; color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline:hover { background: rgba(212,149,42,.1); }
.alert {
    padding: .8rem 1rem; border-radius: 3px; margin-bottom: 1rem; font-size: .9rem;
}
.alert-success { background: rgba(50,200,100,.1); border: 1px solid rgba(50,200,100,.3); color: #5fda8a; }
.alert-error { background: rgba(255,100,50,.1); border: 1px solid rgba(255,100,50,.3); color: #ff8060; }

/* ---- FOOTER ---- */
footer {
    background: #0e0e0c; border-top: 1px solid var(--border);
    padding: 2.5rem 2rem; text-align: center;
    color: var(--text-muted); font-size: .85rem;
}
footer .footer-logo { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; color: var(--gold); margin-bottom: .5rem; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---- MOBILE ---- */
@media (max-width: 1170px) {
    nav ul { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
        background: var(--bg-nav); padding: 1rem; border-bottom: 1px solid var(--border); }
    nav ul.open { display: flex; }
    .hamburger { display: flex; }
    .about-grid, .apply-grid, .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-content { padding: 0 1.5rem 2rem; }
    .hero-bar { padding: .75rem 1.5rem; }
    section { padding: 3.5rem 1.25rem; }
}
@media (max-width: 600px) {
    .stat-row { gap: 1rem; }
    .hero-title { letter-spacing: .08em; }
}

/* ---- PLACEHOLDER IMAGE ---- */
.img-placeholder {
    width: 100%; height: 280px; background: linear-gradient(135deg, #2a2820, #1a1a18);
    border-radius: 4px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: .5rem;
    font-size: 3rem; color: var(--gold-dim);
}
