* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #006c80;
  --secondary: #00b3a0;
  --bg-light: #f7f9fb;
  --text-dark: #333333;
  --accent: #7cd1e8;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* ========== HERO SECTION ========== */
.hero {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #006c80, #00b3a0);
}

/* Swiper Slider */
.swiper-hero {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.swiper-hero .swiper-wrapper {
  height: 100vh;
}

.swiper-slide {
  /* width: 100%;
  height: 100vh; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Slide Background */
.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  background: linear-gradient(135deg, #006c80, #00b3a0);
  margin: 0;
  padding: 0;
}

.slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  background: linear-gradient(135deg, #006c80, #00b3a0);
  opacity: 1;
  visibility: visible;
  margin: 0;
  padding: 0;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* background: linear-gradient(135deg, rgba(0, 108, 128, 0.3) 0%, rgba(0, 179, 160, 0.2) 50%, rgba(0, 108, 128, 0.3) 100%); */
  z-index: 2;
}

.hero-overlay.dark {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  width: 100%;
  padding: 2rem 4rem;
  animation: fadeInUp 1s ease forwards;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  margin: 0;
}

.hero-content.center {
  text-align: center;
  align-items: center;
}

.hero-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 15px rgba(0, 108, 128, 0.3);
  transition: all 0.3s ease;
}

.hero-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 108, 128, 0.4);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-top: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  color: var(--white);
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-cta {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 163, 184, 0.3);
  animation: fadeInUp 1s ease 0.5s forwards;
  opacity: 0;
  border: 2px solid var(--secondary);
}

.hero-cta:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 163, 184, 0.4);
}

/* Swiper Navigation - Hidden */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

/* Swiper Pagination */
.swiper-pagination {
  bottom: 30px !important;
  z-index: 10;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  width: 12px !important;
  height: 12px !important;
  transition: all 1s ease;
}

.swiper-pagination-bullet-active {
  background: var(--secondary) !important;
  width: 30px !important;
  border-radius: 10px !important;
}

/* Ensure images and videos load properly */
.slide-bg,
.slide-video {
  display: block;
  max-width: none;
  max-height: none;
}

/* Ensure proper z-index layering */
.slide-bg,
.slide-video {
  z-index: 1;
}

.hero-overlay {
  z-index: 2;
}

.hero-content {
  z-index: 3;
}

/* Force image and video to display */
.slide-bg {
  opacity: 1 !important;
  visibility: visible !important;
}

.slide-video {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about-section {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
  font-family: 'Poppins', sans-serif;
}

.about-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 2rem;
  max-width: 500px;
}

.about-description {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2rem;
}

.read-more-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary);
  font-family: 'Poppins', sans-serif;
}

.read-more-btn:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 179, 160, 0.2);
}

/* Main Content Grid */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-left {
  display: flex;
  flex-direction: column;
}

.about-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 968px) {
  .about-section {
    padding: 4rem 1.5rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-right {
    margin-top: 2rem;
  }

  .about-image {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 2rem 1rem;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-right {
    margin-top: 2rem;
  }

  .about-image {
    height: 300px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-left {
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-right {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}

.services-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.services-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.services-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary);
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 179, 160, 0.2);
}

.services-cta:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 179, 160, 0.3);
}

/* Services Gallery */
.services-gallery {
  margin-top: 2rem;
}

/* Gallery Swiper */
.gallery-swiper {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 100%;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Gallery Radio Button Navigation */
.gallery-radio-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
  align-items: center;
}

.gallery-radio-nav input[type='radio'] {
  display: none;
}

.gallery-radio-nav label {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 108, 128, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-radio-nav input[type='radio']:checked + label {
  background: var(--secondary);
  transform: scale(1.2);
  border-color: var(--primary);
  box-shadow: 0 0 6px rgba(0, 179, 160, 0.4);
}

.gallery-radio-nav label:hover {
  background: rgba(0, 108, 128, 0.5);
  transform: scale(1.1);
}

/* Responsive Gallery Swiper */
@media (max-width: 768px) {
  .gallery-swiper {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .gallery-swiper {
    height: 140px;
  }
}

.swiper-services-main {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
}

.swiper-services-main .swiper-slide {
  width: 100%;
  height: 100%;
}

.slide-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  border-radius: 15px;
}

.swiper-slide-active .slide-image-main {
  transform: scale(1.05);
}

.slider-nav-top {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 30;
  display: flex;
  gap: 10px;
}

.nav-btn-main {
  width: 50px;
  height: 50px;
  background: rgba(0, 179, 160, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 179, 160, 0.4);
}

.nav-btn-main:hover {
  background: rgba(0, 108, 128, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 179, 160, 0.5);
}

.services-info h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.services-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .swiper-services-main {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 4rem 0;
  }

  .swiper-services-main {
    height: 300px;
  }

  .slider-nav-top {
    top: 15px;
    right: 15px;
    gap: 8px;
  }

  .nav-btn-main {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .services-section {
    padding: 2rem 0;
  }

  .swiper-services-main {
    height: 250px;
  }

  .slider-nav-top {
    top: 10px;
    right: 10px;
    gap: 6px;
  }

  .nav-btn-main {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .services-info h3 {
    font-size: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  /* Fix: pastikan gambar mengisi kartu pada layar kecil */
  .gallery-img {
    height: 100%;
    object-fit: cover;
  }
}

/* Partners Section */
.partners-section {
  padding: 6rem 0;
  background: var(--white);
}

.partners-header {
  text-align: center;
  margin-bottom: 4rem;
}

.partners-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.partners-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.partners-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Partners Slider */
.partners-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  overflow: hidden;
}

.partners-swiper {
  padding: 2rem 0;
  overflow: hidden;
}

.partners-swiper .swiper-wrapper {
  align-items: center;
}

.partners-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.partner-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  /* background: transparent; */
  transition: all 0.3s ease;
  height: auto;
  justify-content: center;
}

/* .partner-slide:hover {
  transform: translateY(-5px);
} */

.partner-logo-img {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
}

.partner-logo-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  transition: none;
}

.partner-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.partner-desc {
  display: none;
}

/* Navigation */
.partners-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  left: 0;
  right: 0;
}

.partners-prev,
.partners-next {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  color: var(--secondary);
  font-size: 1.2rem;
  border: 2px solid rgba(0, 179, 160, 0.2);
  z-index: 10;
}

.partners-prev:hover,
.partners-next:hover {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1);
  border-color: var(--secondary);
}

.partners-prev.swiper-button-disabled,
.partners-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.partners-prev {
  left: 10px;
}

.partners-next {
  right: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .partners-slider-container {
    padding: 0 50px;
  }

  .partner-logo-img {
    height: 100px;
    margin-bottom: 0.8rem;
  }

  .partner-name {
    font-size: 0.85rem;
  }

  .partners-prev,
  .partners-next {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .partners-prev {
    left: 10px;
  }

  .partners-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .hero-label {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }

  .partners-section {
    padding: 3rem 0;
  }

  .partners-title {
    font-size: 2rem;
  }

  .partners-description {
    font-size: 1rem;
  }

  .partners-slider-container {
    padding: 0 45px;
  }

  .partner-logo-img {
    height: 80px;
    margin-bottom: 0.8rem;
  }

  .partner-name {
    font-size: 0.8rem;
  }

  .partners-prev,
  .partners-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .partners-prev {
    left: 5px;
  }

  .partners-next {
    right: 5px;
  }
}

@media (max-width: 640px) {
  .partners-slider-container {
    padding: 0 40px;
  }

  .partner-logo-img {
    height: 70px;
    margin-bottom: 0.5rem;
  }

  .partner-name {
    font-size: 0.75rem;
  }

  .partners-prev,
  .partners-next {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .partners-prev {
    left: 5px;
  }

  .partners-next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .partners-slider-container {
    padding: 0 35px;
  }

  .partner-logo-img {
    height: 60px;
    margin-bottom: 0.5rem;
  }

  .partner-name {
    font-size: 0.7rem;
  }

  .partners-prev,
  .partners-next {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .partners-prev {
    left: 5px;
  }

  .partners-next {
    right: 5px;
  }
}

/* ========== FAQ ========== */
#faq {
  background: var(--primary);
  position: relative;
  max-width: 100%;
  padding: 6rem 2rem;
}

.faq-title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title h2 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.faq-title h2::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--white);
  border-radius: 2px;
}

.faq-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 179, 160, 0.1);
}

.faq-question {
  padding: 2rem;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdfc 100%);
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 179, 160, 0.1);
}

.faq-question h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-question i {
  font-size: 1.3rem;
  transition: all 0.3s ease;
  color: var(--primary);
}

.faq-question.active i {
  transform: rotate(180deg);
  color: var(--primary-dark);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--white);
}

.faq-answer.show {
  padding: 2rem;
  max-height: 300px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  #faq {
    padding: 4rem 1rem;
  }

  .faq-title h2 {
    font-size: 2rem;
  }

  .faq-title p {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-question h4 {
    font-size: 1.1rem;
  }

  .faq-answer.show {
    padding: 1.5rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  #faq {
    padding: 3rem 1rem;
  }

  .faq-title h2 {
    font-size: 1.8rem;
  }

  .faq-title p {
    font-size: 0.95rem;
  }

  .faq-question {
    padding: 1.2rem;
  }

  .faq-question h4 {
    font-size: 1rem;
  }

  .faq-answer.show {
    padding: 1.2rem;
  }
}

/* Career Section */
.career-section {
  position: relative;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%), url('assets/gallery/contact.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  width: 100%;
}

.career-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 179, 160, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 179, 160, 0.1) 0%, transparent 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.career-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

.career-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 4rem 2rem;
  width: 100%;
  margin: 0;
}

/* Full Width Content */
.career-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.career-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.career-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  max-width: 700px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.career-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 3rem;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.career-btn {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  background: var(--secondary);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 179, 160, 0.3);
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.career-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 179, 160, 0.4);
  background: var(--primary-dark);
}

/* Subtle Background Pattern */
.career-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background: linear-gradient(45deg, transparent 48%, var(--primary) 49%, var(--primary) 51%, transparent 52%), linear-gradient(-45deg, transparent 48%, var(--primary) 49%, var(--primary) 51%, transparent 52%);
  background-size: 30px 30px;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
  .career-section {
    width: 100%;
    margin: 0;
  }

  .career-content {
    min-height: 500px;
    padding: 3rem 1.5rem;
    width: 100%;
    margin: 0;
  }

  .career-title {
    font-size: 2.5rem;
  }

  .career-description {
    font-size: 1rem;
  }

  .career-btn {
    padding: 1rem 3rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .career-section {
    background-attachment: scroll;
    width: 100%;
    margin: 0;
  }

  .career-content {
    min-height: 450px;
    padding: 2.5rem 1rem;
    width: 100%;
    margin: 0;
  }

  .career-text {
    max-width: 100%;
  }

  .career-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .career-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .career-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .career-section {
    width: 100%;
    margin: 0;
  }

  .career-content {
    min-height: 400px;
    padding: 2rem 1rem;
    width: 100%;
    margin: 0;
  }

  .career-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }

  .career-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .career-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .career-btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }
}

/* Reset whitespace for all sections */
section {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

/* ========== SEPARATOR SECTION ========== */
.separator-section {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%), url('assets/gallery/img3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.separator-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 179, 160, 0.1) 0%, rgba(0, 108, 128, 0.1) 100%);
  z-index: 1;
}

.separator-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 2rem;
}

.separator-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}

.separator-content p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-family: 'Open Sans', sans-serif;
  opacity: 0.95;
}

/* Separator Responsive */
@media (max-width: 768px) {
  .separator-section {
    height: 40vh;
    min-height: 350px;
    background-attachment: scroll;
  }

  .separator-content {
    padding: 0 1.5rem;
  }

  .separator-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .separator-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .separator-section {
    height: 35vh;
    min-height: 300px;
  }

  .separator-content {
    padding: 0 1rem;
  }

  .separator-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .separator-content p {
    font-size: 1rem;
  }
}
