:root {
  --bg: #f7f8ff;
  --surface: #f6f1ea;
  --card: #fffaf3;
  --ink: #15110d;
  --muted: #6f675f;
  --accent: #e5b567;
  --accent-dark: #e5b567;
  --line: rgba(50, 38, 28, 0.12);
  --shadow: 0 18px 48px rgba(37, 25, 17, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background: #f7f8ff;
  /* padding-top: 40px; */
}

html {
  scroll-behavior: smooth;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.career-hero {
  width: 100%;
  min-height: 100vh;
  background-image: url("../image/heroig.png");
  background-size: cover;
  background-position: center -300%;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 30%,
    rgba(0, 0, 0, 0.65) 55%,
    rgba(0, 0, 0, 0.2)
  );
}

/* ========================= */
/* LEFT CONTENT */
/* ========================= */

.hero-content {
  width: 52%;
  padding: 40px 20px 40px 0;
  z-index: 5;
  box-sizing: border-box;
}

.hero-tag {
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.6px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 18px;
  word-break: break-word;
}

.hero-content h1 span {
  color: #e5b567;
}

.hero-content p {
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-btn {
  background: #e5b567;
  color: #111;
}

.primary-btn:hover {
  background: #f3c87a;
  /* transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(229, 181, 103, 0.4); */
}

.secondary-btn {
  border: 1px solid #f3c87a;
  color: #fff;
}

.secondary-btn:hover {
  background: #f3c87a;
  color: #111;
  /* transform: translateY(-3px); */
  /* box-shadow: 0 10px 25px rgba(229, 181, 103, 0.4); */
}

/* ========================= */
/* IMAGE SECTION */
/* ========================= */

.hero-image {
  width: 48%;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  box-sizing: border-box;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ========================= */
/* LARGE TABLET */
/* ========================= */

@media (max-width: 1200px) {
  .career-hero {
    padding: 40px;
    gap: 30px;
  }

  .hero-content {
    width: 55%;
    padding: 20px 0;
  }

  .hero-image {
    width: 45%;
  }

  .hero-content h1 {
    font-size: 48px;
  }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {
  .career-hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;

    min-height: auto;
    padding: 80px 30px 40px;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-content {
    padding: 0;
  }

  .hero-content p {
    margin: 0 auto 28px;
    max-width: 650px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 20px;
  }

  .hero-image img {
    max-width: 650px;
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {
  .career-hero {
    padding: 90px 20px 35px;

    /* mobile/tablet me bg remove */
    /* background-image: none; */
    /* background-color: #0f0f0f; */
    height: 80vh;
  }
  .overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.92),
      rgba(0, 0, 0, 0.7)
    );
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-image img {
    max-width: 100%;
  }
}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media (max-width: 480px) {
  .career-hero {
    min-height: auto;

    /* navbar overlap fix */
    padding: 110px 15px 30px;

    gap: 20px;

    /* background-image: none;
    background-color: #0f0f0f; */
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-image {
    width: 100%;
    margin-top: 10px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* ========================= */
/* CAREER SECTION */
/* ========================= */

.career-section {
  padding: 60px;
  max-width: 1400px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 30px;

  box-sizing: border-box;
  overflow-x: hidden;
}

/* ========================= */
/* LEFT CONTENT */
/* ========================= */

.career-left {
  width: 320px;
  flex-shrink: 0;
}

.career-left span {
  color: #e5b567;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.career-left h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 15px 0;
  color: #111;
}

.career-left h2 .highlight {
  color: #e5b567;
  font-size: 32px;
  font-weight: 700;
  display: block;
  line-height: 1.1;
  text-transform: none;
}

.career-left p {
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}

/* ========================= */
/* CARDS */
/* ========================= */

.career-cards {
  flex: 1;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 20px;
  width: 100%;
}

/* CARD */

.career-card {
  background: #fff;

  border-radius: 16px;
  padding: 35px 20px;

  text-align: center;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
  transition: 0.3s ease;

  width: 100%; /* FIXED */
  height: 100%; /* FIXED */

  box-sizing: border-box;
}

.career-card:hover {
  transform: translateY(-5px);
  border: 1px solid #e5b567;
  box-shadow: 0 0 18px rgba(229, 181, 103, 0.5);
}

/* ========================= */
/* ICON */
/* ========================= */

.icon-box {
  width: 70px;
  height: 70px;

  margin: 0 auto 20px;

  border-radius: 50%;

  background: #fff4ef;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow:
    0 0 8px rgba(229, 181, 103, 0.6),
    inset 0 0 10px rgba(229, 181, 103, 0.3);
}

.icon-box i {
  color: #e5b567;
  font-size: 28px;
}

/* ========================= */
/* CARD CONTENT */
/* ========================= */

.career-card h3 {
  font-size: 15px;
  margin-bottom: 12px;
  color: #111;
  line-height: 1.5;
}

.career-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* ========================= */
/* LARGE TABLET */
/* ========================= */

@media (max-width: 1200px) {
  .career-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 40px;
  }

  .career-left {
    width: 100%;
  }

  .career-cards {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 768px) {
  .career-section {
    padding: 40px 20px;
    text-align: center;
  }

  .career-left {
    width: 100%;
  }

  .career-left h2 {
    font-size: 34px;
  }

  .career-left h2 .highlight {
    font-size: 34px;
  }

  .career-left p {
    max-width: 650px;
    margin: auto;
  }

  .career-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .career-card {
    padding: 28px 18px;
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 480px) {
  .career-section {
    padding: 35px 15px;
  }

  .career-left span {
    font-size: 11px;
  }

  .career-left h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .career-left h2 .highlight {
    font-size: 28px;
  }

  .career-left p {
    font-size: 14px;
  }

  .career-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .career-card {
    padding: 25px 16px;
  }

  .icon-box {
    width: 60px;
    height: 60px;
  }

  .icon-box i {
    font-size: 24px;
  }

  .career-card h3 {
    font-size: 15px;
  }

  .career-card p {
    font-size: 13px;
  }
}
/* ============================= */
/* JOB SECTION */
/* ============================= */

.job-x a {
  text-decoration: none;
  color: #000;
}

/* MAIN SECTION */
.jobs-section-x {
  width: 100%;
  padding: 40px 60px;
  margin: auto;
  background: linear-gradient(90deg, #0b0b0b, #111111);
  box-sizing: border-box;
  overflow-x: hidden;
}

/* ============================= */
/* TOP SECTION */
/* ============================= */

.section-top-x {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0 50px;
  flex-wrap: wrap;
}

.small-title-x {
  color: #999;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-top-x h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.section-top-x h2 span {
  color: #e5b567;
}

/* ============================= */
/* RESUME BOX */
/* ============================= */

.resume-box-x {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.resume-box-x p {
  color: #fff;
  font-size: 17px;
  margin: 0;
}

.resume-btn-x {
  border: 2px solid #e4b394;
  color: #c96f3d;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.resume-btn-x:hover {
  background: #e5b567;
  color: #111;
}

/* ============================= */
/* CAREER SECTION */
/* ============================= */

.career-section-x {
  padding: 0;
}

.career-section-x h2 {
  color: #fff;
}

.section-title-x {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

/* ============================= */
/* FEATURE CARDS */
/* ============================= */

.features-x {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.card-x {
  background-color: #111111;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #e5b567;
  box-shadow: 0 0 18px rgba(229, 181, 103, 0.25);
  box-sizing: border-box;
}

.card-x:hover {
  transform: translateY(-5px);
}

.card-x h3 {
  color: #f4b860;
  margin-bottom: 10px;
}

.card-x p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

/* ============================= */
/* JOB SECTION */
/* ============================= */

.jobs-container-x {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}

.jobs-x {
  flex: 1 1 500px;
}

.image-box-x {
  flex: 1 1 350px;
}

.image-box-x img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* ============================= */
/* JOB CARD */
/* ============================= */

.job-x {
  background:
    radial-gradient(circle at right, #2b1409 0%, transparent 35%), #050505;

  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;

  box-sizing: border-box;
}

.jobs-container-x h3 {
  color: #fff;
}

.job-content-x {
  flex: 1;
  min-width: 220px;
}

.job-x h3 {
  margin: 0;
}

.job-x p {
  font-size: 13px;
  color: #f4b860;
  margin: 6px 0;
}

.job-x span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  color: #fff;
  line-height: 1.5;
}

.job-x button {
  background: #f4b860;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s ease;
}

.job-x button:hover {
  background: #f3c87a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(229, 181, 103, 0.4);
}

/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width: 992px) {
  .jobs-section-x {
    padding: 40px 30px;
  }

  .section-top-x {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section-top-x h2 {
    font-size: 34px;
  }

  .jobs-container-x {
    flex-direction: column;
  }

  .image-box-x img {
    max-height: 500px;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {
  .jobs-section-x {
    padding: 35px 20px;
    text-align: center;
  }

  .section-top-x {
    align-items: center;
    text-align: center;
    padding-bottom: 35px;
  }

  .section-top-x h2 {
    font-size: 30px;
  }

  .resume-box-x {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .career-section-x {
    text-align: center;
  }

  .features-x {
    grid-template-columns: 1fr;
  }

  .job-x {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .job-content-x {
    min-width: 100%;
  }

  .job-x button {
    width: 100%;
    max-width: 250px;
  }

  .image-box-x {
    width: 100%;
  }

  .image-box-x img {
    width: 100%;
    height: auto;
    margin: 0;
  }
}

/* ============================= */
/* SMALL MOBILE */
/* ============================= */

@media (max-width: 480px) {
  .jobs-section-x {
    padding: 30px 15px;
  }

  .section-top-x h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  .small-title-x {
    font-size: 12px;
  }

  .resume-box-x p {
    font-size: 14px;
  }

  .resume-btn-x {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    font-size: 14px;
  }

  .section-title-x {
    font-size: 22px;
  }

  .card-x {
    padding: 18px;
  }

  .job-x {
    padding: 18px;
    margin-left: 0; /* FIXED */
  }

  .job-x h3 {
    font-size: 18px;
  }

  .job-x span {
    font-size: 13px;
  }

  .job-x button {
    width: 100%;
    max-width: 100%;
  }

  .image-box-x img {
    margin-left: 0; /* FIXED */
  }
}
/* ===================================== */
/* HIRING SECTION */
/* ===================================== */

.hiring-section {
  padding: 60px 80px;
  margin: auto;

  background: linear-gradient(90deg, #0b0b0b, #111111);

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  overflow: hidden;
  box-sizing: border-box;
}

/* ===================================== */
/* LEFT SIDE */
/* ===================================== */

.hiring-left {
  min-width: 300px;
  max-width: 360px;
}

.hiring-tag {
  color: #d0d0d0;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hiring-left h2 {
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
}

.hiring-left h2 span {
  color: #e5b567;
}

/* ===================================== */
/* PROCESS WRAPPER */
/* ===================================== */

.process-wrapper {
  flex: 1;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 20px;

  width: 100%;
}

/* ===================================== */
/* STEP */
/* ===================================== */

.step {
  flex: 1;
  text-align: center;
  position: relative;

  min-width: 180px;
}

/* ===================================== */
/* ICON */
/* ===================================== */

.step-icon {
  width: 75px;
  height: 75px;

  margin: 0 auto 14px;

  border: 1px solid #e5b567;
  box-shadow: 0 0 18px rgba(229, 181, 103, 0.4);

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;
  font-size: 28px;

  transition: 0.3s ease;
}

.step-icon:hover {
  transform: translateY(-5px);
}

/* ===================================== */
/* ARROW */
/* ===================================== */

.step:not(:last-child)::after {
  content: "→";

  position: absolute;

  right: -18px;
  top: 18px;

  color: #fff;

  font-size: 28px;
  font-weight: 300;
}

/* ===================================== */
/* TEXT */
/* ===================================== */

.step-number {
  color: #e5b567;

  font-size: 22px;
  font-weight: 700;

  margin-bottom: 5px;
}

.step h3 {
  color: #fff;

  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  color: #ddd;

  font-size: 14px;
  line-height: 1.6;

  max-width: 240px;
  margin: auto;
}

/* ===================================== */
/* LARGE TABLET */
/* ===================================== */

@media (max-width: 1200px) {
  .hiring-section {
    flex-direction: column;
    align-items: flex-start;

    padding: 50px 40px;
  }

  .hiring-left {
    max-width: 100%;
  }

  .process-wrapper {
    width: 100%;

    flex-wrap: wrap;
    justify-content: center;
  }

  .step {
    min-width: 45%;
  }

  .step::after {
    display: none;
  }
}

/* ===================================== */
/* TABLET */
/* ===================================== */

@media (max-width: 768px) {
  .hiring-section {
    padding: 40px 20px;
    text-align: center;

    align-items: center;
  }

  .hiring-left {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .hiring-left h2 {
    font-size: 34px;
  }

  .process-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .step {
    width: 100%;
    min-width: 100%;
  }

  .step::after {
    display: none;
  }

  .step p {
    max-width: 100%;
  }
}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media (max-width: 480px) {
  .hiring-section {
    padding: 35px 15px;
    gap: 30px;
  }

  .hiring-tag {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .hiring-left h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .step-icon {
    width: 65px;
    height: 65px;

    font-size: 24px;
  }

  .step-number {
    font-size: 20px;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 13px;
    line-height: 1.6;
  }
}
/* ===================================== */
/* CTA SECTION */
/* ===================================== */

.cta-section {
  padding: 60px;
  max-width: 1500px;
  margin: auto;

  background: #f8f5f3;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  overflow: hidden;

  min-height: 145px;

  box-sizing: border-box;
}

/* ===================================== */
/* IMAGE */
/* ===================================== */

.cta-image {
  width: 360px;
  height: 220px;

  flex-shrink: 0;

  padding: 0;

  box-sizing: border-box;
}

.cta-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 18px;

  display: block;
}

/* ===================================== */
/* CONTENT */
/* ===================================== */

.cta-content {
  flex: 1;
  padding: 0 10px;
}

.cta-tag {
  color: #e5b567;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 8px;

  text-transform: uppercase;
}

.cta-content h2 {
  color: #111;

  font-size: 34px;
  font-weight: 700;

  line-height: 1.3;

  margin-bottom: 12px;
}

.cta-content p {
  color: #444;

  font-size: 15px;
  line-height: 1.7;

  max-width: 650px;
}

/* ===================================== */
/* BUTTON */
/* ===================================== */

.cta-btn {
  background: #e5b567;
  color: #111;

  text-decoration: none;

  padding: 15px 28px;

  border-radius: 8px;

  font-size: 16px;
  font-weight: 600;

  white-space: nowrap;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;

  flex-shrink: 0;
}

.cta-btn:hover {
  background: #f3c87a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(229, 181, 103, 0.4);
}

.cta-btn i {
  margin-left: 8px;
}

/* ===================================== */
/* LARGE TABLET */
/* ===================================== */

@media (max-width: 1200px) {
  .cta-section {
    flex-direction: column;
    align-items: flex-start;

    padding: 50px 40px;
  }

  .cta-image {
    width: 100%;
    height: auto;
  }

  .cta-image img {
    height: auto;
    max-height: 420px;
  }

  .cta-content {
    padding: 0;
    width: 100%;
  }

  .cta-btn {
    margin-top: 10px;
  }
}

/* ===================================== */
/* TABLET */
/* ===================================== */

@media (max-width: 768px) {
  .cta-section {
    padding: 40px 20px;
    text-align: center;

    align-items: center;
    gap: 25px;
  }

  .cta-image {
    width: 100%;
  }

  .cta-content {
    width: 100%;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    max-width: 100%;
    margin: auto;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media (max-width: 480px) {
  .cta-section {
    padding: 30px 15px;

    border-radius: 16px;

    gap: 20px;
  }

  .cta-tag {
    font-size: 11px;
  }

  .cta-content h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .cta-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .cta-image {
    width: 100%;
    height: auto;
  }

  .cta-image img {
    border-radius: 14px;
  }

  .cta-btn {
    width: 100%;
    max-width: 100%;

    padding: 13px 20px;

    font-size: 14px;
  }
}

/* /////////////// FORM ////////// */

/* MAIN SECTION */
.apply-section {
  background: #f7f5f3;
  padding: 40px 60px;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* GRID */
.apply-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.apply-left {
  flex: 1 1 450px;
  padding: 0 0 0 30px;
  box-sizing: border-box;
}

.apply-tag {
  color: #e5b567;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.apply-left h2 {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.2;
}

.apply-left p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 100%;
}

/* POINTS */
.apply-points {
  margin-top: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.apply-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #222;
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.apply-points li:hover {
  transform: translateX(5px);
}

/* CONTACT */
.apply-contact {
  margin-top: 25px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.apply-contact p {
  margin-bottom: 6px;
  font-size: 14px;
  color: #444;
}

/* RIGHT FORM */
.apply-form {
  flex: 1 1 450px;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-top: 80px;
  box-sizing: border-box;
  width: 100%;
}

/* FORM ROW */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

/* INPUTS */
.form-row input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

/* TEXTAREA */
.apply-form textarea {
  resize: none;
  height: 120px;
}

/* FILE INPUT */
.file-input {
  padding: 10px;
  background: #fafafa;
}

.file-upload input {
  width: 100%;
}

/* BUTTON */
.submit-btn {
  margin-top: 10px;
  width: 100%;
  background: #e5b567;
  border: none;
  padding: 14px;
  border-radius: 10px;
  color: #111;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #f3c87a;
  transform: translateY(-3px);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .apply-section {
    padding: 40px 30px;
  }

  .apply-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .apply-left {
    padding-left: 0;
  }

  .apply-form {
    margin-top: 0;
  }

  .apply-left h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .apply-section {
    padding: 30px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .apply-left h2 {
    font-size: 30px;
  }

  .apply-left p {
    font-size: 15px;
  }

  .apply-form {
    padding: 20px;
    border-radius: 14px;
  }

  .apply-points li {
    font-size: 14px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .apply-section {
    padding: 25px 15px;
  }

  .apply-left h2 {
    font-size: 26px;
  }

  .apply-left p {
    font-size: 14px;
  }

  .apply-form {
    padding: 16px;
    border-radius: 12px;
  }

  .form-row input,
  .apply-form select,
  .apply-form textarea {
    font-size: 13px;
    padding: 11px 12px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 14px;
  }

  .apply-points li {
    align-items: flex-start;
    line-height: 1.5;
  }
}
