/* ===================================================
   SHE N ME SALON — HIRING PAGE
   style.css
=================================================== */

:root {
  --black:      #0a0a0a;
  --deep:       #111111;
  --charcoal:   #1c1c1c;
  --gold:       #c9a84c;
  --gold-lt:    #e4c06e;
  --gold-pale:  #f0d898;
  --gold-glow:  rgba(201,168,76,.18);
  --white:      #ffffff;
  --off-white:  #faf8f5;
  --nude:       #f5e6d8;
  --nude-mid:   #e8c9b0;
  --text-muted: #888;
  --sh-gold:    0 8px 40px rgba(201,168,76,.25);
  --sh-dark:    0 8px 40px rgba(0,0,0,.5);
  --radius:     16px;
  --radius-lg:  24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  box-shadow: 0 0 12px var(--gold); z-index: 9999;
  transition: width .1s linear;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg,#25d366,#128c7e);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  animation: waPulse 2.5s infinite; transition: transform .3s;
}
.wa-float:hover { transform: scale(1.12) rotate(-6deg); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.75), 0 0 0 12px rgba(37,211,102,.08); }
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 38px; border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--black); font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer; transition: all .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 4px 24px rgba(201,168,76,.4); position: relative; overflow: hidden;
}
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,transparent,rgba(255,255,255,.18),transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.btn-gold:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 40px rgba(201,168,76,.55); }
.btn-gold:hover::after { transform: translateX(100%); }
.btn-gold:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px; border-radius: 50px;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold); font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all .3s;
}
.btn-outline:hover { background: var(--gold-glow); transform: translateY(-2px); }

/* ── TYPOGRAPHY HELPERS ── */
.s-label {
  font-size: .72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; display: block; margin-bottom: 10px;
}
.s-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 700; line-height: 1.2;
  background: linear-gradient(135deg,#fff 30%,var(--gold-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.s-body { font-size: 1rem; color: rgba(255,255,255,.62); line-height: 1.8; margin-top: 12px; max-width: 600px; }
.s-body.center { margin: 12px auto 0; text-align: center; }
.gold-line { width: 60px; height: 3px; margin: 18px 0; background: linear-gradient(90deg,var(--gold),transparent); border-radius: 3px; }
.gold-line.center { margin-left: auto; margin-right: auto; }
.center-label { text-align: center; }
.center-title { text-align: center; }
.divider { width: 100%; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); opacity: .25; }

/* ── CONTAINER ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 90px 0; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 14px; }

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
}
.reveal { transform: translateY(32px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── POPUPS ── */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.75);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); animation: fadeIn .4s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.popup-box {
  background: linear-gradient(145deg,#161616,#1e1710);
  border: 1.5px solid var(--gold); border-radius: 24px;
  padding: 48px 42px; max-width: 480px; width: 92%;
  text-align: center; position: relative;
  box-shadow: var(--sh-gold); animation: popSlide .45s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popSlide { from { transform: translateY(40px) scale(.92); opacity: 0; } to { transform: none; opacity: 1; } }
.popup-box h3 { font-family: 'Playfair Display',serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: var(--gold-pale); }
.popup-box p { color: rgba(255,255,255,.62); font-size: .9rem; margin-bottom: 20px; line-height: 1.7; }

.popup-close {
  position: absolute; top: 16px; right: 18px;
  background: rgba(255,255,255,.08); border: none; color: var(--text-muted);
  width: 30px; height: 30px; border-radius: 50%; font-size: .8rem;
  cursor: pointer; transition: all .3s;
}
.popup-close:hover { background: rgba(201,168,76,.2); color: var(--gold); }

.hire-popup-box .popup-badge {
  display: inline-block; padding: 5px 18px; border-radius: 30px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-pale); font-size: .75rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 14px;
}
.hire-popup-box .popup-title {
  font-family: 'Playfair Display',serif; font-size: 1.8rem; font-weight: 900;
  background: linear-gradient(135deg,var(--gold-pale),var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.hire-popup-box .popup-title span { font-style: italic; }
.hire-popup-box .popup-loc { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.popup-roles { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 14px; }
.popup-roles span {
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-pale); font-size: .75rem; padding: 4px 14px; border-radius: 30px;
}
.popup-perks { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 22px; }
.popup-perks span {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-size: .8rem; padding: 5px 14px; border-radius: 8px;
}
.popup-num { margin-top: 14px; font-size: .83rem; color: var(--text-muted); }
.popup-icon { font-size: 3.5rem; margin-bottom: 14px; display: block; }

/* ===========================
   HERO
=========================== */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px 80px;
  background:
    linear-gradient(160deg,rgba(10,10,10,.93) 0%,rgba(18,12,3,.9) 50%,rgba(10,10,10,.96) 100%),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80') center/cover no-repeat;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%,rgba(201,168,76,.08) 0%,transparent 60%),
    radial-gradient(ellipse at 80% 20%,rgba(201,168,76,.05) 0%,transparent 50%);
}
#particles { position: absolute; inset: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-badge {
  display: inline-block; padding: 6px 20px; border-radius: 30px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-pale); font-size: .78rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 11vw, 8rem); font-weight: 900; line-height: 1;
  background: linear-gradient(135deg,#fff 0%,var(--gold-pale) 50%,var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.hero-title em { font-style: italic; }
.hero-sub {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1rem, 3vw, 1.55rem); color: var(--nude-mid); margin-bottom: 20px;
}
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.62); line-height: 1.8; max-width: 580px; margin: 0 auto 20px; }
.hero-highlight { font-size: 1rem; color: var(--gold-pale); font-weight: 500; margin-bottom: 24px; font-style: italic; }
.hero-locs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 16px; }
.hero-locs span {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  padding: 7px 18px; border-radius: 30px; font-size: .84rem;
}
.hero-contact { font-size: 1rem; color: var(--gold-lt); font-weight: 600; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.glow-btn { animation: glowPulse 3s infinite; }
@keyframes glowPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(201,168,76,.4); }
  50% { box-shadow: 0 4px 48px rgba(201,168,76,.7), 0 0 0 8px rgba(201,168,76,.08); }
}

.hero-scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.3); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  animation: bounceHint 2.5s infinite;
}
.scroll-arrow {
  width: 16px; height: 16px; border-right: 2px solid rgba(201,168,76,.4);
  border-bottom: 2px solid rgba(201,168,76,.4); transform: rotate(45deg); margin-top: -4px;
}
@keyframes bounceHint { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* hero animations */
.animate-down { animation: heroDown .9s both; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .3s; }
.d4 { animation-delay: .35s; }
.d5 { animation-delay: .4s; }
.d6 { animation-delay: .45s; }
.d7 { animation-delay: .55s; }
@keyframes heroDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }

/* particles */
.particle {
  position: absolute; border-radius: 50%; background: var(--gold); opacity: 0;
  animation: floatUp linear infinite; pointer-events: none;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: .4; }
  90% { opacity: .15; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* ===========================
   ABOUT
=========================== */
#about { background: linear-gradient(160deg,#0e0c09,#110e08); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.about-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius-lg); filter: brightness(.9) saturate(1.1);
  transition: transform .5s;
}
.about-img:hover img { transform: scale(1.04); }
.about-img::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  border: 1.5px solid rgba(201,168,76,.3); pointer-events: none;
}
.about-badge, .about-badge2 {
  position: absolute; background: rgba(10,10,10,.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,.3); border-radius: 14px; padding: 14px 18px;
}
.about-badge { bottom: 24px; left: 24px; }
.about-badge2 { bottom: 24px; right: 24px; }
.badge-num { font-family: 'Playfair Display',serif; font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.badge-lbl { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.about-text .s-body { max-width: 100%; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.about-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(201,168,76,.14);
  border-radius: 14px; padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start;
  transition: all .3s;
}
.about-card:hover { background: rgba(201,168,76,.07); border-color: rgba(201,168,76,.38); transform: translateY(-3px); }
.about-card > span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.about-card h4 { font-size: .86rem; font-weight: 600; color: var(--white); }
.about-card p { font-size: .74rem; color: var(--text-muted); margin-top: 2px; }

/* ===========================
   WHY JOIN
=========================== */
#why { background: var(--black); }
.why-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 46px;
}
.why-card {
  background: linear-gradient(145deg,rgba(255,255,255,.04),rgba(201,168,76,.02));
  border: 1px solid rgba(201,168,76,.14); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; cursor: default;
  transition: all .4s cubic-bezier(.34,1.56,.64,1); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(135deg,rgba(201,168,76,.1),transparent); opacity: 0; transition: opacity .4s;
}
.why-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,.5); box-shadow: var(--sh-gold); }
.why-card:hover::before { opacity: 1; }
.w-icon { font-size: 1.9rem; display: block; margin-bottom: 10px; }
.w-check {
  display: inline-block; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg,var(--gold),var(--gold-lt));
  color: var(--black); font-size: .65rem; font-weight: 700;
  line-height: 22px; text-align: center; margin-bottom: 10px;
}
.why-card h4 { font-size: .88rem; font-weight: 600; color: var(--white); }
.why-card p { font-size: .76rem; color: var(--text-muted); margin-top: 5px; }

/* ===========================
   POSITIONS
=========================== */
#positions { background: linear-gradient(160deg,#0e0c09,#0a0a0a); }
.pos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 46px; }
.pos-card {
  background: rgba(255,255,255,.025); border: 1px solid rgba(201,168,76,.12);
  border-radius: 20px; padding: 30px 26px; position: relative; overflow: hidden;
  transition: all .4s;
}
.pos-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold-pale),var(--gold));
  opacity: 0; transition: opacity .4s;
}
.pos-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.4); box-shadow: var(--sh-gold); }
.pos-card:hover::after { opacity: 1; }
.pos-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg,rgba(201,168,76,.2),rgba(201,168,76,.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px; border: 1px solid rgba(201,168,76,.2);
}
.pos-card h3 { font-family: 'Playfair Display',serif; font-size: 1.2rem; font-weight: 700; color: var(--gold-pale); margin-bottom: 14px; }
.pos-duties { list-style: none; margin-bottom: 12px; }
.pos-duties li, .pos-reqs li {
  font-size: .8rem; color: rgba(255,255,255,.62); padding: 3px 0;
  display: flex; align-items: center; gap: 8px;
}
.pos-duties li::before { content: '✦'; color: var(--gold); font-size: .5rem; min-width: 10px; }
.pos-req-lbl { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 10px 0 6px; }
.pos-reqs { list-style: none; margin-bottom: 14px; }
.pos-reqs li::before { content: '→'; color: rgba(201,168,76,.6); min-width: 18px; }
.pos-apply {
  display: inline-block; padding: 7px 18px;
  background: linear-gradient(135deg,rgba(201,168,76,.15),rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.3); border-radius: 30px;
  font-size: .76rem; color: var(--gold-lt); font-weight: 500; transition: all .3s;
}
.pos-apply:hover { background: rgba(201,168,76,.25); }
.pos-cta { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(145deg,rgba(201,168,76,.1),rgba(201,168,76,.03)); border-color: rgba(201,168,76,.28); }
.pos-cta h3 { color: var(--gold-pale); margin-bottom: 10px; }
.pos-cta p { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ===========================
   FRESHERS
=========================== */
#freshers {
  background: linear-gradient(135deg,#1a1308,#0e0c09,#14100a); position: relative;
}
#freshers::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center,rgba(201,168,76,.07),transparent 65%);
}
.freshers-box {
  max-width: 880px; margin: 0 auto; position: relative; z-index: 1;
  background: rgba(255,255,255,.03); border: 1.5px solid rgba(201,168,76,.24);
  border-radius: 28px; padding: 58px 48px; text-align: center;
  backdrop-filter: blur(10px);
}
.fresh-emoji { font-size: 3.8rem; display: block; margin-bottom: 14px; }
.fresh-desc { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 580px; margin: 14px auto 28px; }
.fresh-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 32px;
}
.fresh-list li {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.18);
  border-radius: 10px; padding: 10px 20px; font-size: .86rem;
  display: flex; gap: 8px; align-items: center;
}
.fresh-list li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ===========================
   BENEFITS
=========================== */
#benefits { background: var(--black); }
.ben-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 46px; }
.ben-card {
  background: linear-gradient(145deg,rgba(255,255,255,.03),transparent);
  border: 1px solid rgba(201,168,76,.12); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; transition: all .35s;
}
.ben-card:hover { border-color: rgba(201,168,76,.45); transform: translateY(-6px); background: rgba(201,168,76,.06); box-shadow: var(--sh-gold); }
.ben-card > span { font-size: 2.1rem; display: block; margin-bottom: 12px; }
.ben-card h4 { font-size: .88rem; font-weight: 600; color: var(--gold-pale); margin-bottom: 5px; }
.ben-card p { font-size: .76rem; color: var(--text-muted); }

/* ===========================
   LOCATIONS
=========================== */
#locations { background: linear-gradient(160deg,#0e0c09,#111); }
.loc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 46px; }
.loc-card {
  background: linear-gradient(145deg,rgba(255,255,255,.04),rgba(201,168,76,.02));
  border: 1px solid rgba(201,168,76,.14); border-radius: 20px;
  padding: 34px 26px; text-align: center; transition: all .4s; position: relative; overflow: hidden;
}
.loc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  transform: scaleX(0); transition: transform .4s;
}
.loc-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,.5); box-shadow: var(--sh-gold); }
.loc-card:hover::before { transform: scaleX(1); }
.loc-icon { font-size: 2.7rem; display: block; margin-bottom: 14px; }
.loc-card h3 { font-family: 'Playfair Display',serif; font-size: 1.25rem; font-weight: 700; color: var(--gold-pale); margin-bottom: 10px; }
.loc-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.loc-tag {
  display: inline-block; padding: 4px 16px; border-radius: 30px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2);
  font-size: .74rem; color: var(--gold-lt);
}
.loc-note { text-align: center; margin-top: 28px; font-size: .88rem; color: rgba(255,255,255,.38); font-style: italic; }

/* ===========================
   FORM
=========================== */
#apply { background: linear-gradient(160deg,#0a0a0a,#0e0c09); }
.form-wrap {
  max-width: 740px; margin: 0 auto;
  background: rgba(255,255,255,.03); border: 1.5px solid rgba(201,168,76,.2);
  border-radius: 28px; padding: 52px 46px; backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.52); letter-spacing: 1px; text-transform: uppercase; }
.req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,168,76,.18);
  border-radius: 12px; padding: 13px 17px;
  color: var(--white); font-family: 'Poppins',sans-serif; font-size: .9rem;
  outline: none; transition: all .3s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(201,168,76,.7); background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group select option { background: #111; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* file drop */
.file-drop {
  border: 1.5px dashed rgba(201,168,76,.3); border-radius: 12px;
  transition: all .3s; position: relative; cursor: pointer; overflow: hidden;
}
.file-drop:hover, .file-drop.drag-over { border-color: var(--gold); background: rgba(201,168,76,.05); }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; }
.file-drop-inner { padding: 28px; text-align: center; }
.file-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.file-drop-inner p { font-size: .84rem; color: rgba(255,255,255,.5); }
.file-drop-inner p strong { color: var(--gold-lt); }
.file-hint { font-size: .74rem !important; color: rgba(255,255,255,.3) !important; margin-top: 4px; }
.file-label { padding: 12px 16px; font-size: .84rem; color: var(--gold-pale); text-align: center; }

.form-submit { text-align: center; margin-top: 8px; }
.submit-btn { font-size: 1rem; padding: 16px 50px; min-width: 220px; justify-content: center; }
.spin { animation: spinAnim 1s linear infinite; }
@keyframes spinAnim { to { transform: rotate(360deg); } }

.form-error {
  background: rgba(220,50,50,.1); border: 1px solid rgba(220,50,50,.3);
  color: #f87171; border-radius: 10px; padding: 12px 16px;
  font-size: .85rem; margin-bottom: 16px;
}

/* ===========================
   FINAL CTA
=========================== */
#final-cta {
  padding: 120px 0;
  background:
    linear-gradient(160deg,rgba(10,8,3,.97),rgba(20,15,5,.97)),
    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1600&q=80') center/cover no-repeat;
}
#final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center,rgba(201,168,76,.09),transparent 60%);
}
.final-inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.ornament { display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 22px; font-size: 1.1rem; }
.ornament span { height: 1px; width: 80px; background: linear-gradient(90deg,transparent,rgba(201,168,76,.4)); }
.ornament span:last-child { background: linear-gradient(270deg,transparent,rgba(201,168,76,.4)); }
.final-title {
  font-family: 'Playfair Display',serif;
  font-size: clamp(2rem,6vw,3.8rem); font-weight: 900;
  background: linear-gradient(135deg,#fff,var(--gold-pale),var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1.2; margin-bottom: 18px;
}
.final-desc { font-size: 1.05rem; color: rgba(255,255,255,.62); line-height: 1.8; margin-bottom: 18px; }
.final-limited {
  display: inline-block; padding: 7px 22px; border-radius: 30px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.34);
  color: var(--gold-pale); font-size: .84rem; font-weight: 600; margin-bottom: 24px; letter-spacing: 1px;
}
.final-contact { font-size: 1.05rem; color: var(--gold-lt); font-weight: 600; margin-bottom: 30px; }
.final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-copy { margin-top: 50px; font-size: .76rem; color: rgba(255,255,255,.18); letter-spacing: 2px; text-transform: uppercase; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .ben-grid { grid-template-columns: repeat(2,1fr); }
  .pos-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img img { height: 340px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .loc-grid { grid-template-columns: 1fr; }
  .pos-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 30px 20px; }
  .freshers-box { padding: 36px 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .ben-grid { grid-template-columns: 1fr 1fr; }
  .about-cards { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .why-grid, .ben-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3.2rem; }
}
