/* Careers Page Styles */

/* Shared Label Style */
.careers-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--lightgreen);
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Hero Section */
.careers-hero {
  background: linear-gradient(135deg, rgba(52, 78, 65, 0.9), rgba(58, 90, 64, 0.85)),
    url('../assets/images/VAs.webp');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin: 10px;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.careers-hero-overlay {
  text-align: center;
  padding: 200px 60px 100px 60px;
  max-width: 800px;
}

.careers-hero-label {
  color: var(--pastelgreen);
}

.careers-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: careersFadeUp 1s ease;
}

.careers-hero p {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.85);
  line-height: 1.7;
  margin-bottom: 30px;
  animation: careersFadeUp 1.3s ease;
}

.careers-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 28px;
  background: var(--lightgreen);
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  animation: careersFadeUp 1.6s ease;
}

.careers-hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(88, 129, 87, 0.4);
}

@keyframes careersFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Why Join Us / Benefits Section */
.careers-benefits-section {
  padding: 80px;
}

.careers-benefits-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.careers-benefits-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  margin-bottom: 10px;
}

.careers-benefits-header p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #666;
}

.careers-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.careers-benefit-card {
  background: white;
  border-radius: 10px;
  padding: 35px 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--lightgreen);
}

.careers-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.careers-benefit-card svg {
  width: 32px;
  height: 32px;
  color: var(--lightgreen);
  margin-bottom: 15px;
}

.careers-benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.careers-benefit-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
}

/* Open Positions Section */
.careers-positions-section {
  padding: 0 0 80px 0;
}

.careers-positions-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 1rem;
  border-radius: 10px;
  overflow: hidden;
  max-height: 350px;
}

.careers-positions-banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.careers-positions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 80px 0 80px;
}

.careers-positions-header {
  text-align: center;
  margin-bottom: 50px;
}

.careers-positions-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  margin-bottom: 10px;
}

.careers-positions-header p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #666;
}

.careers-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.careers-role-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.careers-role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.careers-role-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.careers-role-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
}

.careers-role-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--lightgreen);
  background: rgba(88, 129, 87, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.careers-role-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
}

.careers-role-apply {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--lightgreen);
  text-decoration: none;
  transition: gap 0.3s ease;
  margin-top: auto;
}

.careers-role-apply:hover {
  gap: 10px;
}

/* Team Testimonials Section */
.careers-testimonials-section {
  background: linear-gradient(130deg, var(--black), var(--darkgreen));
  padding: 80px;
  margin: 0 1rem;
  border-radius: 10px;
}

.careers-testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.careers-testimonials-header .careers-label {
  color: var(--pastelgreen);
}

.careers-testimonials-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
}

.careers-testimonials-header p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

.careers-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.careers-testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 35px 25px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.careers-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-5px);
}

.careers-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
  flex-shrink: 0;
}

.careers-testimonial-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease;
}

.careers-testimonial-card:hover .careers-testimonial-name {
  color: var(--darkgreen);
}

.careers-testimonial-title {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--pastelgreen);
  transition: color 0.3s ease;
}

.careers-testimonial-card:hover .careers-testimonial-title {
  color: var(--lightgreen);
}

.careers-testimonial-quote {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.7;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.careers-testimonial-card:hover .careers-testimonial-quote {
  color: #555;
}

/* CTA Section */
.careers-cta-section {
  padding: 80px;
  text-align: center;
}

.careers-cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.careers-cta-container h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  margin-bottom: 15px;
}

.careers-cta-container p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.careers-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.careers-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 28px;
  background: var(--lightgreen);
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.careers-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(88, 129, 87, 0.4);
}

.careers-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 28px;
  background: transparent;
  color: var(--black);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid var(--black);
  transition: all 0.3s ease;
}

.careers-cta-secondary:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 1135px) {
  .careers-hero-overlay {
    padding: 180px 40px 80px 40px;
  }

  .careers-hero h1 {
    font-size: 2.8rem;
  }

  .careers-benefits-section {
    padding: 60px 40px;
  }

  .careers-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .careers-positions-container {
    padding: 60px 40px 0 40px;
  }

  .careers-testimonials-section {
    padding: 60px 40px;
  }

  .careers-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .careers-cta-section {
    padding: 60px 40px;
  }
}

@media screen and (max-width: 850px) {
  .careers-hero h1 {
    font-size: 2.2rem;
  }

  .careers-hero p {
    font-size: 1rem;
  }

  .careers-benefits-header h2 {
    font-size: 2rem;
  }

  .careers-positions-banner {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .careers-positions-banner img {
    height: 250px;
  }

  .careers-positions-header h2 {
    font-size: 2rem;
  }

  .careers-roles-grid {
    grid-template-columns: 1fr;
  }

  .careers-testimonials-header h2 {
    font-size: 2rem;
  }

  .careers-cta-container h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 560px) {
  .careers-hero-overlay {
    padding: 150px 20px 60px 20px;
  }

  .careers-hero h1 {
    font-size: 1.8rem;
  }

  .careers-benefits-section {
    padding: 40px 20px;
  }

  .careers-benefits-grid {
    grid-template-columns: 1fr;
  }

  .careers-positions-container {
    padding: 40px 20px 0 20px;
  }

  .careers-testimonials-section {
    padding: 40px 20px;
  }

  .careers-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .careers-cta-section {
    padding: 40px 20px;
  }

  .careers-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 400px) {
  .careers-hero h1 {
    font-size: 1.5rem;
  }

  .careers-hero-overlay {
    padding: 130px 15px 50px 15px;
  }
}
