/* ═══════════════════════════════════════════════
   PATEL EVENTS — CAREERS PAGE CSS
   ═══════════════════════════════════════════════ */

/* ── CAREERS HERO ── */
.careers-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 9rem 5% 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.careers-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

/* Decorative gold grid pattern */
.careers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black, transparent);
}

.careers-hero-content {
  max-width: 760px;
  animation: fadeUp 1s ease both;
}

.careers-hero-tag {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.careers-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.careers-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.careers-hero-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  letter-spacing: 0.02em;
}

/* ── VALUES STRIP ── */
.careers-values {
  padding: 5rem 5%;
  position: relative;
  z-index: 10;
}

.careers-values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.careers-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.careers-value-card {
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.careers-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.careers-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.1);
}

.careers-value-card:hover::before {
  opacity: 1;
}

.careers-value-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.careers-value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.careers-value-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ── VACANCIES SECTION ── */
.careers-vacancies {
  padding: 5rem 5% 6rem;
  position: relative;
  z-index: 10;
}

.careers-vacancies-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.careers-section-header {
  margin-bottom: 4rem;
}

/* ── JOB CARDS ── */
.job-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.job-card {
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s, background 0.35s;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.job-card:hover {
  transform: translateY(-4px) translateX(4px);
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(25, 25, 25, 0.95);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

.job-card:hover::before {
  opacity: 1;
}

.job-card-left {
  flex: 1;
  min-width: 0;
}

.job-card-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.job-badge {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}

.job-badge-type {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

.job-badge-location {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-dim);
}

.job-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
  line-height: 1.2;
}

.job-card:hover .job-card-title {
  color: var(--gold);
}

.job-card-salary {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.job-card-salary strong {
  color: var(--white-dim);
  font-weight: 500;
}

.job-card-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}

.job-card:hover .job-card-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: rotate(-45deg);
}

/* ── NO VACANCIES STATE ── */
.careers-no-vacancies {
  background: rgba(18, 18, 18, 0.6);
  border: 1px dashed rgba(201, 168, 76, 0.25);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
}

.careers-no-vacancies p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
  font-weight: 300;
  font-style: italic;
}

.careers-no-vacancies span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ── CTA / SPECULATIVE SECTION ── */
.careers-cta {
  padding: 5rem 5% 6rem;
  position: relative;
  z-index: 10;
}

.careers-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(14, 14, 14, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 32px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.careers-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201, 168, 76, 0.06), transparent);
  pointer-events: none;
}

.careers-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.careers-cta-title em {
  color: var(--gold);
  font-style: italic;
}

.careers-cta-sub {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.careers-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   JOB DETAIL PAGE
   ═══════════════════════════════════════════════ */

/* ── JOB DETAIL HERO ── */
.job-detail-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 9rem 5% 4.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.job-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.job-detail-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.97) 0%,
    rgba(10, 10, 10, 0.75) 60%,
    rgba(10, 10, 10, 0.92) 100%
  );
}

.job-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: gap 0.3s;
}

.job-detail-back:hover {
  gap: 0.85rem;
}

.job-detail-back::before {
  content: '←';
  font-size: 1rem;
}

.job-detail-hero-content {
  max-width: 800px;
  animation: fadeUp 0.9s ease both;
}

.job-detail-tag {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.job-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.job-detail-title em {
  font-style: italic;
  color: var(--gold);
}

.job-detail-meta-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── JOB DETAIL BODY ── */
.job-detail-body {
  padding: 5rem 5%;
  position: relative;
  z-index: 10;
}

.job-detail-body-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

/* Main Content Column */
.job-detail-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.job-detail-block {
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
}

.job-detail-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.job-detail-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.job-detail-block-title span {
  color: var(--gold);
}

.job-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.job-detail-list li {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.job-detail-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
  opacity: 0.7;
}

.job-detail-intro-text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.95;
  letter-spacing: 0.02em;
}

.job-detail-intro-text p + p {
  margin-top: 1rem;
}

/* Sidebar Column */
.job-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 7rem;
}

.job-sidebar-card {
  background: rgba(14, 14, 14, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.job-sidebar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, 0.05), transparent);
  pointer-events: none;
}

.job-sidebar-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.job-sidebar-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.job-sidebar-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.job-sidebar-item-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.job-sidebar-item-value {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.5;
}

.job-sidebar-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
  margin: 1.5rem 0;
}

.job-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.35s;
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.3);
  width: 100%;
  margin-bottom: 0.75rem;
}

.job-apply-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}

.job-apply-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  transition: all 0.35s;
  width: 100%;
}

.job-apply-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .job-detail-body-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .job-detail-sidebar {
    position: static;
    order: -1;
  }

  .job-sidebar-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .careers-hero,
  .job-detail-hero {
    padding: 8rem 5% 4rem;
    min-height: auto;
  }

  .job-card {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .job-card-arrow {
    align-self: flex-end;
  }

  .careers-cta-inner {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .careers-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .careers-value-card {
    padding: 1.75rem 1.25rem;
  }

  .job-detail-block {
    padding: 2rem 1.5rem;
  }

  .job-sidebar-row {
    grid-template-columns: 1fr;
  }

  .careers-hero-title,
  .job-detail-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
}
