/* ===== VARIABLES - WHITE THEME ===== */
:root {
  --primary: #000000;
  --primary-dark: #333333;
  --secondary: #25D366;
  --accent: #f0f0f0;
  --dark: #000000;
  --light: #ffffff;
  --white: #ffffff;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
  --border-radius: 28px;
  --border-radius-sm: 60px;
  --bubble-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  --card-bg: #ffffff;
  --text-primary: #000000;
  --text-secondary: #444444;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  opacity: 0;
  animation: pageFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow-x: hidden;
  width: 100%;
}

@keyframes pageFade {
  to { opacity: 1; }
}

/* ===== SMOOTH PAGE TRANSITIONS ===== */
.page-transition {
  animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.fade-up.appear {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  padding: 1rem 5%;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.logo img {
  height: 45px;
  width: auto;
  max-width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  background: var(--white);
  width: 250px;
  box-shadow: var(--shadow-hover);
  border-radius: 24px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  border: 1px solid var(--light-gray);
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  color: var(--dark);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--primary);
  padding-left: 2.5rem;
}

.dropdown-menu a::before {
  content: '→';
  position: absolute;
  left: 1rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover::before {
  opacity: 1;
  left: 1.5rem;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

/* ===== MOBILE RESPONSIVE - COMPLETELY FIXED ===== */
@media (max-width: 968px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
    box-shadow: var(--shadow-hover);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    margin: 0.25rem 0;
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    background: var(--light-gray);
    border: none;
    font-size: 1.1rem;
  }

  .nav-link:hover {
    background: var(--primary);
    color: var(--white);
  }

  .nav-link i {
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--light-gray);
    width: 100%;
    border-radius: 12px;
    margin-top: 0.5rem;
    display: none;
    padding: 0.5rem 0;
    border: none;
  }

  .nav-item.dropdown.open .dropdown-menu {
    display: block;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fa-chevron-down {
    transition: transform 0.3s ease;
    margin-left: auto;
  }

  .nav-item.dropdown.open .fa-chevron-down {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    padding: 1rem 2rem;
    color: var(--dark);
    background: var(--white);
    margin: 0.25rem 1rem;
    border-radius: 8px;
  }

  .dropdown-menu a:hover {
    background: var(--primary);
    color: var(--white);
  }

  /* Scrollable dropdown menu on mobile */
  .dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light-gray);
  }

  .dropdown-menu::-webkit-scrollbar {
    width: 4px;
  }

  .dropdown-menu::-webkit-scrollbar-track {
    background: var(--light-gray);
  }

  .dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
  }
}

/* ===== MAIN CONTAINER - FULLY RESPONSIVE ===== */
.main-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 5% 4rem;
  min-height: calc(100vh - 180px);
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  color: var(--dark);
  padding: 4rem 3.5rem;
  border-radius: 48px;
  margin: 2rem 0 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  width: 100%;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 3vw, 1.4rem);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.hero-badge {
  background: var(--light-gray);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 60px;
  display: inline-block;
  font-weight: 500;
  border: 1px solid var(--light-gray);
  color: var(--dark);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ===== CATEGORY PILLS - BUBBLE STYLE ===== */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
  width: 100%;
}

.category-pill {
  background: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 60px;
  font-weight: 500;
  text-decoration: none;
  color: var(--dark);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--light-gray);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.category-pill::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.category-pill:hover::before {
  width: 300px;
  height: 300px;
}

.category-pill:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

/* ===== JOBS GRID - FULLY RESPONSIVE ===== */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  width: 100%;
}

/* ===== JOB CARD - SMOOTH & BUBBLE STYLE ===== */
.job-card {
  background: var(--card-bg);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.job-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark);
  line-height: 1.3;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0.8rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.job-meta span i {
  width: 18px;
  color: var(--primary);
  font-size: 1rem;
}

.salary {
  font-weight: 700;
  color: var(--dark);
  background: var(--light-gray);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  display: inline-block;
  font-size: 0.95rem;
  border: 1px solid var(--light-gray);
  margin: 0.5rem 0;
}

/* ===== BUBBLE BUTTONS ===== */
.apply-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 60px;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: none;
}

.apply-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.apply-btn:hover::before {
  width: 300px;
  height: 300px;
}

.apply-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.3);
}

.detail-btn {
  flex: 1;
  padding: 0.8rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--dark);
  border-radius: 60px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  text-align: center;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.detail-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.detail-btn:hover::before {
  width: 300px;
  height: 300px;
}

.detail-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  border-color: var(--primary);
}

.apply-btn-small {
  flex: 1;
  padding: 0.8rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 60px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  text-align: center;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.2);
}

.apply-btn-small::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.apply-btn-small:hover::before {
  width: 300px;
  height: 300px;
}

.apply-btn-small:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.3);
}

/* ===== FLOATING BUTTONS - FULLY MOBILE RESPONSIVE ===== */
.float-call,
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: var(--bubble-shadow);
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 2px solid var(--white);
}

.float-call {
  left: 1.5rem;
  background: var(--primary);
}

.float-wa {
  right: 1.5rem;
  background: var(--secondary);
}

.float-call:hover,
.float-wa:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.3);
}

/* Ultra mobile responsive for floating buttons */
@media (max-width: 768px) {
  .float-call,
  .float-wa {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 1rem;
  }

  .float-call {
    left: 1rem;
  }

  .float-wa {
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .float-call,
  .float-wa {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    bottom: 0.8rem;
  }

  .float-call {
    left: 0.8rem;
  }

  .float-wa {
    right: 0.8rem;
  }
}

/* ===== CONTACT CARDS ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  width: 100%;
}

.contact-item {
  background: var(--card-bg);
  padding: 2rem 1.5rem;
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--light-gray);
}

.contact-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ===== APPLICATION FORM - FULLY RESPONSIVE ===== */
.job-application-form {
  background: var(--card-bg);
  border-radius: 32px;
  padding: 2rem;
  max-width: 700px;
  margin: 2rem auto;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 60px;
  border: 2px solid var(--light-gray);
  font-size: 1rem;
  background: var(--white);
  color: var(--dark);
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

textarea {
  border-radius: 25px;
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* ===== BENEFITS SECTION ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  width: 100%;
}

.benefit-item {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--light-gray);
}

.benefit-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.benefit-item i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.benefit-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

/* ===== FOOTER - FULLY RESPONSIVE ===== */
.footer {
  background: var(--white);
  padding: 2.5rem 5% 1.5rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--light-gray);
  margin-top: 3rem;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.footer-logo img {
  height: 45px;
  margin-bottom: 0.8rem;
  max-width: 100%;
}

.footer-logo p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-column h4 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-contact i {
  width: 18px;
  color: var(--primary);
  margin-right: 6px;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== GENDER TAGS ===== */
.gender-tag-small {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  margin-left: 0.3rem;
  font-weight: 600;
}

.gender-female {
  background: #fce4e4;
  color: #d53f8c;
}

.gender-male {
  background: #e3f2fd;
  color: #1976d2;
}

.gender-mixed {
  background: #e8f5e9;
  color: #2e7d32;
}

/* ===== PAGE TITLES ===== */
.page-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 1.5rem 0;
  color: var(--dark);
  position: relative;
  padding-bottom: 0.8rem;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark);
  position: relative;
  padding-bottom: 0.5rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.view-all-btn {
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--dark);
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
}

.view-all-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.view-all-btn:hover::before {
  width: 300px;
  height: 300px;
}

.view-all-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(3px) scale(1.02);
  border-color: var(--primary);
}

/* ===== ULTRA MOBILE RESPONSIVE (under 600px) ===== */
@media (max-width: 600px) {
  .main-content {
    padding: 1rem 4% 3rem;
  }

  .hero {
    padding: 2rem 1.2rem;
    border-radius: 32px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-badge {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .category-pill {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .job-card {
    padding: 1.2rem;
  }

  .job-title {
    font-size: 1.2rem;
  }

  .job-meta {
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .salary {
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
  }

  .apply-btn, .detail-btn, .apply-btn-small {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .benefit-item {
    padding: 1.5rem 0.8rem;
  }

  .benefit-item i {
    font-size: 1.8rem;
  }

  .benefit-item h4 {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .footer-column h4 {
    font-size: 0.95rem;
  }

  .footer-column a {
    font-size: 0.85rem;
  }

  .page-title {
    font-size: 1.6rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .view-all-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== VERY SMALL MOBILE (under 400px) ===== */
@media (max-width: 400px) {
  .hero {
    padding: 1.5rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .category-pill {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .card-actions {
    flex-direction: column;
  }

  .float-call, .float-wa {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ===== CARD ACTIONS RESPONSIVE ===== */
.card-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .card-actions {
    flex-direction: column;
  }
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  background: var(--white);
  border-radius: 32px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--light-gray);
}

.about-image {
  width: 100%;
  border-radius: 24px;
  height: auto;
  max-width: 100%;
}

.about-preview h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  color: var(--dark);
}

.about-preview p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.about-preview .highlight {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  width: 100%;
}

.contact-card {
  background: var(--white);
  padding: 1.8rem 1rem;
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--dark);
  border: 1px solid var(--light-gray);
}

.contact-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  color: white;
  font-size: 1.5rem;
}

.contact-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--white);
  border-radius: 32px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== HERO SLIDER STYLES ===== */
.hero-slider {
    width: 100%;
    margin: 2rem 0 3rem;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 3;
    color: white;
    max-width: 600px;
    animation: slideContentIn 1s ease forwards;
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(30px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.slide-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.slide-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.slide-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.slide-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.slide-stats i {
    color: var(--secondary);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slide-btn {
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.slide-btn.primary {
    background: var(--secondary);
    color: var(--light);
}

.slide-btn.primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.slide-btn.primary:hover::before {
    width: 300px;
    height: 300px;
}

.slide-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 30px -8px rgba(0,0,0,0.4);
}

.slide-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.slide-btn.secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px) scale(1.02);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
}

.slider-control:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.dot:hover {
    background: white;
}

/* Responsive Slider */
@media (max-width: 968px) {
    .slider-container {
        height: 500px;
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 450px;
    }
    
    .slide-content {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 0.95rem;
    }
    
    .slide-stats {
        gap: 0.8rem;
    }
    
    .slide-stats span {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }
    
    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 400px;
    }
    
    .slide-category {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .slide-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .slide-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
    }
    
    .slider-control {
        width: 35px;
        height: 35px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* ===== BENEFITS SECTION STYLES ===== */

/* Benefits Grid Container */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
}

/* Benefit Card */
.benefit-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

/* Benefit Icon Container */
.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    color: white;
    font-size: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Icon Hover Effect */
.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #333333, #000000);
}

/* Icon Ripple Effect */
.benefit-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.benefit-card:hover .benefit-icon::before {
    width: 150px;
    height: 150px;
}

/* Benefit Title */
.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #000000;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: #000000;
}

/* Benefit Description */
.benefit-card p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.benefit-card:hover p {
    color: #333333;
}

/* Responsive Design - Tablet */
@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive Design - Mobile Large */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .benefit-card {
        padding: 2rem 1rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }
}

/* Responsive Design - Mobile Small */
@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .benefit-card h3 {
        font-size: 1.3rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }
}

/* Animation for benefits cards */
.benefit-card {
    animation: benefitAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes benefitAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for multiple cards */
.benefits-grid .benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefits-grid .benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* Section Header Styles (if not already in your CSS) */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #000000;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #000000;
    border-radius: 2px;
}

.view-all-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid #000000;
    color: #000000;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.view-all-btn:hover::before {
    width: 300px;
    height: 300px;
}

.view-all-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateX(5px) scale(1.02);
}

/* Responsive for Section Header */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .view-all-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* ===== TESTIMONIALS SECTION STYLES ===== */

.testimonials-section {
    margin: 4rem 0;
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

/* Quote Icon */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 8rem;
    color: #000000;
    opacity: 0.05;
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

/* Rating Stars */
.testimonial-rating {
    margin-bottom: 1.2rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
}

/* Testimonial Content */
.testimonial-content {
    color: #444444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #eef2f6;
    padding-top: 1.5rem;
}

/* Author Image */
.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-image {
    transform: scale(1.1);
}

/* Author Info */
.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #000000;
}

.author-info p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.testimonial-location {
    color: #999999;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial-location i {
    color: #000000;
    font-size: 0.7rem;
}

/* Animation for testimonials */
.testimonial-card {
    animation: testimonialAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes testimonialAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation */
.testimonials-grid .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Design */

/* Tablet Landscape */
@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .testimonial-card {
        padding: 1.8rem;
    }

    .testimonial-content {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }
}

/* Mobile Large */
@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .testimonial-card {
        padding: 1.8rem;
    }

    .testimonial-content {
        font-size: 0.95rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .testimonials-section {
        margin: 3rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card::before {
        font-size: 6rem;
        right: 10px;
    }

    .testimonial-rating {
        margin-bottom: 1rem;
    }

    .testimonial-rating i {
        font-size: 0.9rem;
    }

    .testimonial-content {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .testimonial-author {
        padding-top: 1.2rem;
        gap: 0.8rem;
    }

    .author-image {
        width: 45px;
        height: 45px;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    .testimonial-location {
        font-size: 0.75rem;
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    .testimonial-card {
        background: #1a1a1a;
        border-color: #333333;
    }

    .testimonial-card::before {
        color: #ffffff;
        opacity: 0.1;
    }

    .testimonial-content {
        color: #cccccc;
    }

    .author-info h4 {
        color: #ffffff;
    }

    .author-info p {
        color: #999999;
    }

    .testimonial-location {
        color: #777777;
    }

    .testimonial-author {
        border-top-color: #333333;
    }
}

/* Print styles */
@media print {
    .testimonials-section {
        page-break-inside: avoid;
    }

    .testimonial-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
/* ===== BEAUTY SALON PAGE STYLES - WHITE & BLACK THEME ===== */

/* Category Hero Section - Beauty Salon */
.category-hero.beauty {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    color: #000000;
    padding: 3rem;
    border-radius: 48px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Hero Icon */
.category-hero.beauty::before {
    content: "💇";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 8rem;
    opacity: 0.1;
    color: #000000;
}

/* Hero Title */
.category-hero.beauty h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

/* Hero Description */
.category-hero.beauty p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #444444;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Hero Stats Badges */
.category-hero.beauty .category-stats-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.category-hero.beauty .category-stat-badge {
    background: #f0f0f0;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    border: 1px solid #d0d0d0;
    backdrop-filter: blur(5px);
}

/* Category Description - Beauty Salon */
.category-description.beauty {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 28px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #000000;
    border: 1px solid #e0e0e0;
}

.category-description.beauty h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-description.beauty p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

/* Benefits Box - Beauty Salon */
.benefits-box.beauty {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.benefits-box.beauty h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.3rem;
}

.benefits-box.beauty .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefits-box.beauty .benefits-grid div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #444444;
}

.benefits-box.beauty .benefits-grid i {
    color: #000000;
    font-size: 1.2rem;
}

/* Category Images Grid */
.category-images {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.category-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    border: 1px solid #e0e0e0;
}

.category-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Jobs Grid for Beauty Salon */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Job Card for Beauty Salon */
.job-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

/* Job Image */
.job-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.job-card:hover .job-image {
    transform: scale(1.05);
}

/* Job Content */
.job-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Job Title */
.job-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #000000;
}

/* Job Meta Info */
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0.8rem 0;
    color: #444444;
    font-size: 0.95rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-meta i {
    color: #000000;
    width: 18px;
}

/* Job Description */
.job-description {
    color: #444444;
    margin: 0.5rem 0 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

/* Salary */
.salary {
    font-weight: 700;
    color: #000000;
    background: #f0f0f0;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    display: inline-block;
    font-size: 1rem;
    margin: 0.5rem 0;
    border: 1px solid #d0d0d0;
}

.salary i {
    margin-right: 5px;
    color: #000000;
}

/* Apply Button */
.apply-btn {
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.apply-btn:hover::before {
    width: 300px;
    height: 300px;
}

.apply-btn:hover {
    background: #333333;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Gender Badge */
.gender-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.gender-badge.female {
    background: #f0f0f0;
    color: #000000;
    border: 1px solid #d0d0d0;
}

/* Page Title */
.page-title {
    font-size: 2.2rem;
    margin: 2rem 0 1.5rem;
    color: #000000;
    position: relative;
    padding-bottom: 0.8rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #000000;
    border-radius: 2px;
}

/* Category CTA Section */
.category-cta {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 48px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.category-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444444;
}

.category-cta .apply-btn {
    width: auto;
    padding: 1rem 3rem;
    display: inline-flex;
    background: #000000;
}

.category-cta .apply-btn:hover {
    background: #333333;
}

/* Responsive Design */
@media (max-width: 968px) {
    .category-hero.beauty {
        padding: 2.5rem;
    }
    
    .category-hero.beauty h1 {
        font-size: 2.2rem;
    }
    
    .category-images {
        justify-content: center;
    }
    
    .category-image {
        width: 150px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .category-hero.beauty {
        padding: 2rem;
    }
    
    .category-hero.beauty h1 {
        font-size: 1.8rem;
    }
    
    .category-hero.beauty p {
        font-size: 1rem;
    }
    
    .category-hero.beauty .category-stat-badge {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .category-description.beauty {
        padding: 1.5rem;
    }
    
    .category-description.beauty h2 {
        font-size: 1.5rem;
    }
    
    .category-description.beauty p {
        font-size: 1rem;
    }
    
    .benefits-box.beauty .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .category-hero.beauty {
        padding: 1.5rem;
    }
    
    .category-hero.beauty h1 {
        font-size: 1.5rem;
    }
    
    .category-hero.beauty .category-stat-badge {
        width: 100%;
        text-align: center;
    }
    
    .category-hero.beauty .category-stats-badges {
        flex-direction: column;
    }
    
    .category-image {
        width: 100%;
        height: 100px;
    }
    
    .benefits-box.beauty .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .job-content {
        padding: 1.2rem;
    }
    
    .job-title {
        font-size: 1.2rem;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
}

/* Dark mode preference (if needed) */
@media (prefers-color-scheme: dark) {
    .category-hero.beauty {
        background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
        border-color: #333333;
        color: #ffffff;
    }
    
    .category-hero.beauty h1,
    .category-hero.beauty p {
        color: #ffffff;
    }
    
    .category-hero.beauty .category-stat-badge {
        background: #333333;
        color: #ffffff;
        border-color: #444444;
    }
    
    .category-description.beauty {
        background: #1a1a1a;
        border-color: #333333;
    }
    
    .category-description.beauty h2 {
        color: #ffffff;
    }
    
    .category-description.beauty p {
        color: #cccccc;
    }
    
    .job-card {
        background: #1a1a1a;
        border-color: #333333;
    }
    
    .job-title {
        color: #ffffff;
    }
    
    .job-meta {
        color: #cccccc;
    }
    
    .job-description {
        color: #cccccc;
    }
    
    .salary {
        background: #333333;
        color: #ffffff;
        border-color: #444444;
    }
    
    .benefits-box.beauty {
        background: #1a1a1a;
        border-color: #333333;
    }
    
    .benefits-box.beauty h3 {
        color: #ffffff;
    }
    
    .benefits-box.beauty .benefits-grid div {
        color: #cccccc;
    }
    
    .category-cta {
        background: #1a1a1a;
        border-color: #333333;
    }
    
    .category-cta h2 {
        color: #ffffff;
    }
    
    .category-cta p {
        color: #cccccc;
    }
}

/* ===== AIRPORT PAGE STYLES ===== */

/* Category Hero - Airport */
.category-hero.airport {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    color: #000000;
    padding: 3rem;
    border-radius: 48px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-hero.airport::before {
    content: "✈️";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 8rem;
    opacity: 0.1;
    color: #000000;
}

.category-hero.airport h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.category-hero.airport p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #444444;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Category Description - Airport */
.category-description.airport {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 28px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #000000;
    border: 1px solid #e0e0e0;
}

.category-description.airport h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-description.airport p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

/* Benefits Box - Airport */
.benefits-box.airport {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.benefits-box.airport h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.3rem;
}

.benefits-box.airport .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefits-box.airport .benefits-grid div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #444444;
}

.benefits-box.airport .benefits-grid i {
    color: #000000;
    font-size: 1.2rem;
}

/* Category Images - Airport */
.category-images {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.category-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    border: 1px solid #e0e0e0;
}

.category-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Jobs Grid - Airport */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Job Card - Airport */
.job-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

/* Job Image - Airport */
.job-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.job-card:hover .job-image {
    transform: scale(1.05);
}

/* Job Content - Airport */
.job-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Job Title - Airport */
.job-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #000000;
}

/* Job Meta - Airport */
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0.8rem 0;
    color: #444444;
    font-size: 0.95rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-meta i {
    color: #000000;
    width: 18px;
}

/* Job Description - Airport */
.job-description {
    color: #444444;
    margin: 0.5rem 0 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

/* Salary - Airport */
.salary {
    font-weight: 700;
    color: #000000;
    background: #f0f0f0;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    display: inline-block;
    font-size: 1rem;
    margin: 0.5rem 0;
    border: 1px solid #d0d0d0;
}

.salary i {
    margin-right: 5px;
    color: #000000;
}

/* Apply Button - Airport */
.apply-btn {
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.apply-btn:hover::before {
    width: 300px;
    height: 300px;
}

.apply-btn:hover {
    background: #333333;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Page Title - Airport */
.page-title {
    font-size: 2.2rem;
    margin: 2rem 0 1.5rem;
    color: #000000;
    position: relative;
    padding-bottom: 0.8rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #000000;
    border-radius: 2px;
}

/* Category CTA - Airport */
.category-cta.airport {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 48px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.category-cta.airport h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-cta.airport p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444444;
}

.category-cta.airport .apply-btn {
    width: auto;
    padding: 1rem 3rem;
    display: inline-flex;
    background: #000000;
}

.category-cta.airport .apply-btn:hover {
    background: #333333;
}

/* Category Stats Badges - Airport */
.category-stats-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.category-stat-badge {
    background: #f0f0f0;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    border: 1px solid #d0d0d0;
    backdrop-filter: blur(5px);
}

/* Responsive Design - Airport */
@media (max-width: 968px) {
    .category-hero.airport {
        padding: 2.5rem;
    }
    
    .category-hero.airport h1 {
        font-size: 2.2rem;
    }
    
    .category-images {
        justify-content: center;
    }
    
    .category-image {
        width: 150px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .category-hero.airport {
        padding: 2rem;
    }
    
    .category-hero.airport h1 {
        font-size: 1.8rem;
    }
    
    .category-hero.airport p {
        font-size: 1rem;
    }
    
    .category-stat-badge {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .category-description.airport {
        padding: 1.5rem;
    }
    
    .category-description.airport h2 {
        font-size: 1.5rem;
    }
    
    .category-description.airport p {
        font-size: 1rem;
    }
    
    .benefits-box.airport .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .category-hero.airport {
        padding: 1.5rem;
    }
    
    .category-hero.airport h1 {
        font-size: 1.5rem;
    }
    
    .category-stat-badge {
        width: 100%;
        text-align: center;
    }
    
    .category-stats-badges {
        flex-direction: column;
    }
    
    .category-image {
        width: 100%;
        height: 100px;
    }
    
    .benefits-box.airport .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .job-content {
        padding: 1.2rem;
    }
    
    .job-title {
        font-size: 1.2rem;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .category-cta.airport {
        padding: 2rem;
    }
    
    .category-cta.airport h2 {
        font-size: 1.5rem;
    }
    
    .category-cta.airport p {
        font-size: 1rem;
    }
    
    .category-cta.airport .apply-btn {
        width: 100%;
    }
}
/* ===== CONSTRUCTION PAGE STYLES ===== */

/* Category Hero - Construction */
.category-hero.construction {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    color: #000000;
    padding: 3rem;
    border-radius: 48px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-hero.construction::before {
    content: "🏗️";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 8rem;
    opacity: 0.1;
    color: #000000;
}

.category-hero.construction h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.category-hero.construction p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #444444;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Category Description - Construction */
.category-description.construction {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 28px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #000000;
    border: 1px solid #e0e0e0;
}

.category-description.construction h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-description.construction p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

/* Benefits Box - Construction */
.benefits-box.construction {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.benefits-box.construction h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.3rem;
}

.benefits-box.construction .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefits-box.construction .benefits-grid div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #444444;
}

.benefits-box.construction .benefits-grid i {
    color: #000000;
    font-size: 1.2rem;
}

/* Category CTA - Construction */
.category-cta.construction {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 48px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.category-cta.construction h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-cta.construction p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444444;
}

.category-cta.construction .apply-btn {
    width: auto;
    padding: 1rem 3rem;
    display: inline-flex;
    background: #000000;
}

.category-cta.construction .apply-btn:hover {
    background: #333333;
}
/* ===== DRIVER PAGE STYLES ===== */

/* Category Hero - Driver */
.category-hero.driver {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    color: #000000;
    padding: 3rem;
    border-radius: 48px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-hero.driver::before {
    content: "🚛";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 8rem;
    opacity: 0.1;
    color: #000000;
}

.category-hero.driver h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.category-hero.driver p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #444444;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Category Description - Driver */
.category-description.driver {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 28px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #000000;
    border: 1px solid #e0e0e0;
}

.category-description.driver h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-description.driver p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

/* Benefits Box - Driver */
.benefits-box.driver {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.benefits-box.driver h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.3rem;
}

.benefits-box.driver .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefits-box.driver .benefits-grid div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #444444;
}

.benefits-box.driver .benefits-grid i {
    color: #000000;
    font-size: 1.2rem;
}

/* Category CTA - Driver */
.category-cta.driver {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 48px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.category-cta.driver h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-cta.driver p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444444;
}

.category-cta.driver .apply-btn {
    width: auto;
    padding: 1rem 3rem;
    display: inline-flex;
    background: #000000;
}

.category-cta.driver .apply-btn:hover {
    background: #333333;
}
/* ===== FACTORY PAGE STYLES ===== */

/* Category Hero - Factory */
.category-hero.factory {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    color: #000000;
    padding: 3rem;
    border-radius: 48px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-hero.factory::before {
    content: "🧵";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 8rem;
    opacity: 0.1;
    color: #000000;
}

.category-hero.factory h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.category-hero.factory p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #444444;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Category Description - Factory */
.category-description.factory {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 28px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #000000;
    border: 1px solid #e0e0e0;
}

.category-description.factory h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-description.factory p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

/* Benefits Box - Factory */
.benefits-box.factory {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.benefits-box.factory h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.3rem;
}

.benefits-box.factory .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefits-box.factory .benefits-grid div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #444444;
}

.benefits-box.factory .benefits-grid i {
    color: #000000;
    font-size: 1.2rem;
}

/* Category CTA - Factory */
.category-cta.factory {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 48px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.category-cta.factory h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-cta.factory p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444444;
}

.category-cta.factory .apply-btn {
    width: auto;
    padding: 1rem 3rem;
    display: inline-flex;
    background: #000000;
}

.category-cta.factory .apply-btn:hover {
    background: #333333;
}
/* ===== MEDICAL PAGE STYLES ===== */

/* Category Hero - Medical */
.category-hero.medical {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    color: #000000;
    padding: 3rem;
    border-radius: 48px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-hero.medical::before {
    content: "⚕️";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 8rem;
    opacity: 0.1;
    color: #000000;
}

.category-hero.medical h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.category-hero.medical p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #444444;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Category Description - Medical */
.category-description.medical {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 28px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #000000;
    border: 1px solid #e0e0e0;
}

.category-description.medical h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-description.medical p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

/* Benefits Box - Medical */
.benefits-box.medical {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.benefits-box.medical h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.3rem;
}

.benefits-box.medical .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefits-box.medical .benefits-grid div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #444444;
}

.benefits-box.medical .benefits-grid i {
    color: #000000;
    font-size: 1.2rem;
}

/* Category CTA - Medical */
.category-cta.medical {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 48px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.category-cta.medical h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-cta.medical p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444444;
}

.category-cta.medical .apply-btn {
    width: auto;
    padding: 1rem 3rem;
    display: inline-flex;
    background: #000000;
}

.category-cta.medical .apply-btn:hover {
    background: #333333;
}
/* ===== OFFICE PAGE STYLES ===== */

/* Category Hero - Office */
.category-hero.office {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    color: #000000;
    padding: 3rem;
    border-radius: 48px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-hero.office::before {
    content: "💼";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 8rem;
    opacity: 0.1;
    color: #000000;
}

.category-hero.office h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.category-hero.office p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #444444;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Category Description - Office */
.category-description.office {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 28px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #000000;
    border: 1px solid #e0e0e0;
}

.category-description.office h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-description.office p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

/* Benefits Box - Office */
.benefits-box.office {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.benefits-box.office h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.3rem;
}

.benefits-box.office .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefits-box.office .benefits-grid div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #444444;
}

.benefits-box.office .benefits-grid i {
    color: #000000;
    font-size: 1.2rem;
}

/* Category CTA - Office */
.category-cta.office {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 48px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.category-cta.office h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-cta.office p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444444;
}

.category-cta.office .apply-btn {
    width: auto;
    padding: 1rem 3rem;
    display: inline-flex;
    background: #000000;
}

.category-cta.office .apply-btn:hover {
    background: #333333;
}
/* ===== OTHER LABOUR PAGE STYLES ===== */

/* Category Hero - Labour */
.category-hero.labour {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    color: #000000;
    padding: 3rem;
    border-radius: 48px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-hero.labour::before {
    content: "🔧";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 8rem;
    opacity: 0.1;
    color: #000000;
}

.category-hero.labour h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.category-hero.labour p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #444444;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Category Description - Labour */
.category-description.labour {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 28px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #000000;
    border: 1px solid #e0e0e0;
}

.category-description.labour h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-description.labour p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

/* Benefits Box - Labour */
.benefits-box.labour {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.benefits-box.labour h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.3rem;
}

.benefits-box.labour .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefits-box.labour .benefits-grid div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #444444;
}

.benefits-box.labour .benefits-grid i {
    color: #000000;
    font-size: 1.2rem;
}

/* Category CTA - Labour */
.category-cta.labour {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 48px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.category-cta.labour h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-cta.labour p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444444;
}

.category-cta.labour .apply-btn {
    width: auto;
    padding: 1rem 3rem;
    display: inline-flex;
    background: #000000;
}

.category-cta.labour .apply-btn:hover {
    background: #333333;
}
/* ===== RESTAURANT PAGE STYLES ===== */

/* Category Hero - Restaurant */
.category-hero.restaurant {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    color: #000000;
    padding: 3rem;
    border-radius: 48px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-hero.restaurant::before {
    content: "🍳";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 8rem;
    opacity: 0.1;
    color: #000000;
}

.category-hero.restaurant h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.category-hero.restaurant p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #444444;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Category Description - Restaurant */
.category-description.restaurant {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 28px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #000000;
    border: 1px solid #e0e0e0;
}

.category-description.restaurant h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-description.restaurant p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

/* Benefits Box - Restaurant */
.benefits-box.restaurant {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
}

.benefits-box.restaurant h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.3rem;
}

.benefits-box.restaurant .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefits-box.restaurant .benefits-grid div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #444444;
}

.benefits-box.restaurant .benefits-grid i {
    color: #000000;
    font-size: 1.2rem;
}

/* Category CTA - Restaurant */
.category-cta.restaurant {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 48px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.category-cta.restaurant h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.category-cta.restaurant p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444444;
}

.category-cta.restaurant .apply-btn {
    width: auto;
    padding: 1rem 3rem;
    display: inline-flex;
    background: #000000;
}

.category-cta.restaurant .apply-btn:hover {
    background: #333333;
}
/* ===== SIMPLER VERSION - JUST CORNER FIX AND GENTLE GLOW ===== */

/* Fix image corners */
.job-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 24px 24px 0 0 !important;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Gentle glow on hover */
.job-card:hover .job-image {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Remove any white edges */
img {
    image-rendering: crisp-edges;
}

/* Category images fix */
.category-image {
    border-radius: 20px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .job-image {
        height: 180px;
    }
}
/* ===== CALL TO ACTION SECTION STYLES ===== */

.cta-section {
    background: linear-gradient(135deg, #000000, #333333);
    color: #ffffff;
    border-radius: 48px;
    padding: 4rem 3rem;
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #444444;
}

/* Background Pattern */
.cta-section::before {
    content: "🇸🇦";
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-size: 10rem;
    opacity: 0.05;
    color: #ffffff;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-section p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Primary Button */
.cta-btn-primary {
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #000000;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Primary Button Hover Effect */
.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.cta-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.3);
}

.cta-btn-primary:hover i {
    transform: translateX(5px);
}

/* Secondary Button */
.cta-btn-secondary {
    padding: 1.2rem 3rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Secondary Button Hover Effect */
.cta-btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.cta-btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary:hover i {
    transform: translateX(5px);
}

/* Button Text and Icon positioning */
.cta-btn-primary span,
.cta-btn-secondary span {
    position: relative;
    z-index: 2;
}

.cta-btn-primary i,
.cta-btn-secondary i {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1.5rem;
        border-radius: 36px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2rem 1.2rem;
        border-radius: 28px;
        margin: 2rem 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
}

/* Animation for CTA section */
.cta-section {
    animation: ctaPulse 3s infinite ease-in-out;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
}

/* Hover effect for the whole section */
.cta-section:hover {
    background: linear-gradient(135deg, #1a1a1a, #404040);
}

/* Optional: Add floating animation to buttons */
@keyframes floatButton {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(0);
    }
}

.cta-btn-primary,
.cta-btn-secondary {
    animation: floatButton 3s infinite ease-in-out;
}

.cta-btn-primary {
    animation-delay: 0s;
}

.cta-btn-secondary {
    animation-delay: 0.2s;
}
/* ===== HOME PAGE & CONTACT PAGE - WHITE BACKGROUND WITH BLACK ELEMENTS ===== */

/* Force white backgrounds */
.main-content,
.category-hero,
.hero,
.contact-cards,
.contact-item,
.job-application-form,
.benefits-grid .benefit-item,
.contact-grid .contact-card,
.about-preview,
.stats-section,
.section-header h2,
.page-title {
    background: #ffffff !important;
}

/* Category hero sections - white background with black text */
.category-hero.beauty,
.category-hero.medical,
.category-hero.restaurant,
.category-hero.office,
.category-hero.driver,
.category-hero.airport,
.category-hero.construction,
.category-hero.factory,
.category-hero.labour,
.category-hero.school,
.category-hero.about,
.hero {
    background: linear-gradient(135deg, #ffffff, #f8f8f8) !important;
    border: 1px solid #e0e0e0 !important;
    color: #000000 !important;
}

.category-hero h1,
.category-hero p,
.hero h1,
.hero p {
    color: #000000 !important;
}

.category-stat-badge,
.hero-badge {
    background: #f0f0f0 !important;
    color: #000000 !important;
    border: 1px solid #d0d0d0 !important;
}

/* Job cards - white with black text */
.job-card,
.contact-item,
.benefit-item,
.contact-card,
.testimonial-card,
.value-card,
.mission-card,
.vision-card,
.timeline-item {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    color: #000000 !important;
}

.job-title,
.contact-item h3,
.benefit-item h4,
.contact-card h3,
.testimonial-card h4,
.value-card h3,
.mission-card h3,
.vision-card h3,
.timeline-item .timeline-title,
.page-title {
    color: #000000 !important;
}

.job-meta,
.job-description,
.contact-item p,
.benefit-item p,
.contact-card p,
.testimonial-content,
.value-card p,
.mission-card p,
.vision-card p,
.timeline-desc {
    color: #444444 !important;
}

/* Salary badges - gray background with black text */
.salary {
    background: #f0f0f0 !important;
    color: #000000 !important;
    border: 1px solid #d0d0d0 !important;
}

/* Buttons - black background with white text */
.apply-btn,
.apply-btn-small,
.submit-btn,
.cta-btn-primary,
.slide-btn.primary,
.category-cta .apply-btn {
    background: #000000 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}

.apply-btn:hover,
.apply-btn-small:hover,
.submit-btn:hover,
.cta-btn-primary:hover,
.slide-btn.primary:hover,
.category-cta .apply-btn:hover {
    background: #333333 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2) !important;
}

/* Secondary buttons - white border with black text */
.detail-btn,
.cta-btn-secondary,
.slide-btn.secondary,
.view-all-btn {
    background: transparent !important;
    border: 2px solid #000000 !important;
    color: #000000 !important;
}

.detail-btn:hover,
.cta-btn-secondary:hover,
.slide-btn.secondary:hover,
.view-all-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
}

/* CTA section - black gradient */
.cta-section {
    background: linear-gradient(135deg, #000000, #333333) !important;
    color: #ffffff !important;
    border: 1px solid #444444 !important;
}

.cta-section h2,
.cta-section p {
    color: #ffffff !important;
}

/* Stats section */
.stat-item h3 {
    color: #000000 !important;
}

.stat-item p {
    color: #444444 !important;
}

/* Footer */
.footer {
    background: #ffffff !important;
    border-top: 1px solid #e0e0e0 !important;
}

.footer h4 {
    color: #000000 !important;
}

.footer a,
.footer p {
    color: #444444 !important;
}

.footer a:hover {
    color: #000000 !important;
}

/* Form elements */
input,
select,
textarea {
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    color: #000000 !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #000000 !important;
}

/* Gender badges */
.gender-female {
    background: #fce4e4 !important;
    color: #000000 !important;
    border: 1px solid #d0d0d0 !important;
}

.gender-male {
    background: #e3f2fd !important;
    color: #000000 !important;
    border: 1px solid #d0d0d0 !important;
}

.gender-mixed {
    background: #e8f5e9 !important;
    color: #000000 !important;
    border: 1px solid #d0d0d0 !important;
}

/* Navbar */
.navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.nav-link {
    color: #000000 !important;
}

.nav-link:hover,
.nav-link.active {
    color: #000000 !important;
    border-bottom-color: #000000 !important;
}

.dropdown-menu {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
}

.dropdown-menu a {
    color: #000000 !important;
}

.dropdown-menu a:hover {
    background: #f0f0f0 !important;
    color: #000000 !important;
}

/* Mobile menu */
@media (max-width: 968px) {
    .nav-menu {
        background: #ffffff !important;
    }
    
    .nav-link {
        background: #f0f0f0 !important;
        color: #000000 !important;
    }
    
    .nav-link:hover {
        background: #000000 !important;
        color: #ffffff !important;
    }
    
    .dropdown-menu a {
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    .dropdown-menu a:hover {
        background: #000000 !important;
        color: #ffffff !important;
    }
}

/* Floating buttons */
.float-call {
    background: #000000 !important;
}

.float-wa {
    background: #25D366 !important; /* Keep WhatsApp green */
}

/* Hero slider slides - keep gradient overlay but text white */
.slide::after {
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%) !important;
}

.slide-content,
.slide-category,
.slide-title,
.slide-description,
.slide-stats span {
    color: #ffffff !important;
}

.slide-btn.secondary {
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.slide-btn.secondary:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Benefit icons */
.benefit-icon {
    background: linear-gradient(135deg, #000000, #333333) !important;
    color: #ffffff !important;
}

/* Contact icons */
.contact-icon {
    background: #000000 !important;
    color: #ffffff !important;
}

/* Page title underline */
.page-title::after,
.section-header h2::after {
    background: #000000 !important;
}

/* Value card icons */
.value-icon {
    background: linear-gradient(135deg, #000000, #333333) !important;
    color: #ffffff !important;
}

/* Timeline */
.timeline-year {
    color: #000000 !important;
}

/* Testimonials */
.testimonial-card::before {
    color: #000000 !important;
    opacity: 0.05 !important;
}

.testimonial-rating i {
    color: #ffc107 !important; /* Keep stars yellow */
}

/* Category CTA */
.category-cta {
    background: #f8f8f8 !important;
    border: 1px solid #e0e0e0 !important;
}

.category-cta h2 {
    color: #000000 !important;
}

.category-cta p {
    color: #444444 !important;
}