/* ===== GLOBALL ===== */

/* CONTAINER */
.container {
  max-width: 1400px;
  margin: auto;
}

/* ===== ABOUT HERO FINAL ===== */
/* SECTION */
.about-hero {
  padding: 120px 40px;
  background: #fff;
}

/* GRID */
.about-wrapper {
  padding-top: 150px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: stretch; /* 🔥 kunci utama */
}

/* IMAGE */
.about-image {
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%; /* 🔥 samain tinggi */
  object-fit: cover; /* 🔥 biar nggak gepeng */
  border-radius: 20px;
}

/* TEXT */
.about-text h1 {
  font-size: 50px;
  font-weight: 800;
  color: #555;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 20px;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}

/* QUOTE */
.quote {
  font-size: 18px;
  margin-top: 30px;
  padding-left: 20px;
  border-left: 4px solid #18b7a0;
  font-style: italic;
  color: #777;
}


/* ================= RESPONSIVE ================= */

/* ≤1440 */
@media (max-width: 1440px) {
  .about-hero {
    padding: 100px 50px;
  }
  .about-wrapper {
    padding-top: 80px;
    gap: 50px;
  }

  .about-text h1 {
    font-size: 44px;
  }
}

/* ≤1280 */
@media (max-width: 1280px) {
  .about-hero {
    padding: 100px 45px;
  }

  .about-wrapper {
    padding-top: 80px;
    gap: 40px;
  }

  .about-text h1 {
    font-size: 38px;
  }

  .about-text p {
    font-size: 18px;
  }
}

/* ≤1024 (MASIH 2 KOLOM) */
@media (max-width: 1024px) {
  .about-hero {
    padding: 100px 35px;
  }
  .about-wrapper {
    padding-top: 80px;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .about-text h1 {
    font-size: 32px;
  }

  .about-text p {
    font-size: 16px;
  }

  .quote {
    font-size: 16px;
  }
}

/* ≤768 (STACK, TEXT KIRI) */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 30px;
  }

  .about-wrapper {
    padding-top: 80px;
    grid-template-columns: 1fr;
    text-align: left; /* 🔥 ubah dari center */
  }

  /* gambar di atas */
  .about-image {
    order: -1;
    height: auto;
  }

  .about-image img {
    height: auto;
  }

  /* TEXT */
  .about-text h1 {
    font-size: 32px;
    text-align: left;
  }

  .about-text p {
    font-size: 16px;
    text-align: justify;
  }

  /* QUOTE balik ke style kiri */
  .quote {
    border-left: 4px solid #18b7a0;
    border-top: none;
    padding-left: 15px;
    padding-top: 0;
    font-size: 16px;
    text-align: left;
  }
}

/* ≤480 */
@media (max-width: 480px) {
  .about-hero {
    padding: 100px 25px;
  }
  .about-text h1 {
    font-size: 22px;
  }

  .about-text p {
    font-size: 14px;
  }

  .quote {
    font-size: 14px;
  }
}

/* ===== ABOUT SECTION FINAL ===== */

/* SECTION */
.about-section {
  padding: 120px 40px;
  background: #fff;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TAG */
.tag {
  color: #18b7a0;
  font-weight: 800;
  font-size: 21px;
  display: block;
  margin-bottom: 15px;
}

/* SUBTITLE */
.subtitle {
  color: #666;
  font-size: 20px;
  margin-bottom: 55px;
}

/* TITLE */
.about-content h1 {
  font-size: 50px;
  font-weight: 800;
  color: #555;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* DESCRIPTION */
.desc {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* IMAGE */
.about-image {
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}


/* ================= RESPONSIVE ================= */

/* ≤1440 */
@media (max-width: 1440px) {
  .about-section {
    padding: 100px 50px;
  }

  .about-content h1 {
    font-size: 44px;
  }
}

/* ≤1280 */
@media (max-width: 1280px) {
  .about-section {
    padding: 100px 45px;
  }

  .about-grid {
    gap: 40px;
  }

  .about-content h1 {
    font-size: 38px;
  }

  .subtitle {
    font-size: 18px;
  }

  .desc {
    font-size: 18px;
    text-align: justify;
  }
}

/* ≤1024 (MASIH 2 KOLOM) */
@media (max-width: 1024px) {
  .about-section {
    padding: 100px 35px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .about-content h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 16px;
  }

  .desc {
    font-size: 16px;
    text-align: justify;
  }
}

/* ≤768 (STACK, TEXT KIRI) */
@media (max-width: 768px) {
  .about-section {
    padding: 0 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: left; /* 🔥 tetap kiri */
  }

  .about-image {
    order: -1; /* 🔥 gambar naik */
    height: auto;
  }

  .about-image img {
    height: auto;
  }

  .about-content h1 {
    font-size: 26px;
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .desc {
    font-size: 15px;
    text-align: justify;
  }
}

/* ≤480 */
@media (max-width: 480px) {
  .about-section {
    padding: 100px 25px;
  }
  .about-content h1 {
    font-size: 22px;
  }

  .subtitle {
    font-size: 14px;
  }

  .desc {
    font-size: 14px;
    text-align: justify;
  }

  .tag {
    font-size: 16px;
  }
}

/* ===== BELIEF SECTION FINAL ===== */

.belief-section {
  padding: 120px 40px;
  background: #fff;
}

/* HEADER */
.belief-header {
  text-align: center;
  margin-bottom: 60px;
}

.belief-header h2 {
  font-size: 50px;
  font-weight: 800;
  color: #555;
  margin-bottom: 15px;
}

.belief-header p {
  font-size: 20px;
  color: #777;
  margin-bottom: 80px;
}

/* GRID */
.belief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.belief-card {
  background: #fff;
  padding: 40px 50px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
}

/* HOVER */
.belief-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* TITLE */
.belief-card h3 {
  color: #18b7a0;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* TEXT */
.belief-card p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}


/* ================= RESPONSIVE ================= */

/* ≤1440 */
@media (max-width: 1440px) {
  .belief-section {
    padding: 100px 50px;
  }

  .belief-header h2 {
    font-size: 44px;
  }
}

/* ≤1280 */
@media (max-width: 1280px) {
  .belief-section {
    padding: 100px 45px;
  }

  .belief-header h2 {
    font-size: 38px;
  }

  .belief-header p {
    font-size: 18px;
  }

  .belief-card {
    padding: 35px 40px;
  }
}

/* ≤1024 (MASIH 2 KOLOM) */
@media (max-width: 1024px) {
  .belief-section {
    padding: 100px 35px;
  } 
  .belief-grid {
    gap: 30px;
  }

  .belief-card {
    padding: 30px 30px;
  }

  .belief-card h3 {
    font-size: 20px;
  }

  .belief-card p {
    font-size: 16px;
  }
}

/* ≤768 (STACK) */
@media (max-width: 768px) {
  .belief-section {
    padding: 100px 30px;
  }

  .belief-grid {
    grid-template-columns: 1fr;
  }

  .belief-header h2 {
    font-size: 28px;
  }

  .belief-header p {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .belief-card {
    padding: 25px 20px;
  }
}

/* ≤480 */
@media (max-width: 480px) {
  .belief-section {
    padding: 100px 25px;
  }
  .belief-header h2 {
    font-size: 24px;
  }

  .belief-card h3 {
    font-size: 18px;
  }

  .belief-card p {
    font-size: 14px;
  }
}

/* ===== CTA FINAL ===== */
.cta-banner {
  padding: 100px 40px;
  background: #fff;
}

/* WRAPPER */
.cta-wrapper {
  background: #20b2a6;
  border-radius: 30px;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;

  padding: 40px 80px;
  gap: 30px;
  overflow: visible;
}

/* TEXT */
.cta-text p {
  color: white;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.8;
  max-width: 750px;
}

/* IMAGE */
.cta-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.cta-image img {
  width: 100%;
  max-width: 400px;
  display: block;

  transform: translateY(40px); /* 🔥 ganti margin negatif (lebih aman) */
}


/* ================= RESPONSIVE ================= */

/* ≤1440 */
@media (max-width: 1440px) {
  .cta-wrapper {
    padding: 35px 60px;
  }

  .cta-text p {
    font-size: 24px;
  }
}

/* ≤1280 */
@media (max-width: 1280px) {
  .cta-wrapper {
    padding: 30px 50px;
  }

  .cta-text p {
    font-size: 22px;
  }

  .cta-image img {
    max-width: 340px;
     transform: translateY(30px); 
  }
}

/* ≤1024 (MASIH 2 KOLOM, LEBIH NYATU) */
@media (max-width: 1024px) {
  .cta-wrapper {
    grid-template-columns: 1.3fr 0.7fr;
    padding: 30px 40px;
  }

  .cta-text p {
    font-size: 18px;
  }

  .cta-image {
    justify-content: center;
  }

  .cta-image img {
    max-width: 280px;
    transform: translateY(31px);
  }
}

/* ≤768 (STACK) */
@media (max-width: 768px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px;
  }

  .cta-text p {
    font-size: 16px;
  }

  .cta-image {
    justify-content: center;
    margin-top: 20px;
  }

  .cta-image img {
    max-width: 260px;
    transform: translateY(31px);
  }
}

/* ≤480 */
@media (max-width: 480px) {
  .cta-banner {
    padding: 100px 25px;
  }
  .cta-text p {
    font-size: 16px;
  }

  .cta-image img {
    max-width: 220px;
    transform: translateY(30px);
  }
}

/* ===== PROCESS SECTION FINAL ===== */

.process-section {
  padding: 120px 40px;
  background: #fff;
}

/* GRID */
.process-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch; /* 🔥 biar image ikut tinggi */
}

/* IMAGE */
.process-image {
  height: 100%;
}

.process-image img {
  width: 100%;
  height: 100%;            /* 🔥 kunci utama */
  object-fit: cover;       /* 🔥 biar nggak gepeng */
  border-radius: 20px;
}

/* CONTENT */
.process-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #555;
  line-height: 1.3;
  margin-bottom: 50px;
}

/* LABEL */
.label {
  font-size: 18px;
  color: #888;
  margin-bottom: 25px;
  display: block;
}

/* CARDS */
.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

/* CARD */
.process-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.process-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-color: #18b7a0;
}

/* ICON */
.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: rgba(24, 183, 160, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* HOVER ICON */
.process-card:hover .icon {
  background: #18b7a0;
}

.process-card:hover .icon img {
  filter: brightness(0) invert(1);
}

/* TEXT */
.process-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* DESC */
.process-desc {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  text-align: justify;
}


/* ================= RESPONSIVE ================= */

/* ≤1440 */
@media (max-width: 1440px) {
  .process-section {
    padding: 100px 50px;

  }

  .process-content h2 {
    font-size: 30px;
  }
}

/* ≤1280 */
@media (max-width: 1280px) {
  .process-section {
    padding: 100px 45px;

  }
  .process-wrapper {
    gap: 40px;
  }

  .process-content h2 {
    font-size: 26px;
  }

  .process-desc {
    font-size: 17px;
  }
}

/* ≤1024 (STACK, CARD TETAP 3) */
@media (max-width: 1024px) {
  .process-section {
    padding: 100px 35px;
  }

  .process-wrapper {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .process-image {
    order: -1;
    height: auto;
  }

  .process-image img {
    height: auto;
  }

  .process-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* ≤768 */
@media (max-width: 768px) {
  .process-section {
    padding: 0 30px;

  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .process-content h2 {
    font-size: 22px;
  }

  .process-desc {
    font-size: 15px;
    text-align: left;
  }
}

/* ≤480 */
@media (max-width: 480px) {
  .process-section {
    padding: 100px 25px;

  }
  .process-content h2 {
    font-size: 20px;
  }

  .process-card p {
    font-size: 14px;
  }
}

/* ===== TIMELINE SECTION FINAL ===== */

.timeline-section {
  padding: 120px 40px;
  background: #fff;
}

/* HEADER */
.timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #555;
  margin-bottom: 10px;
}

.timeline-header p {
  font-size: 20px;
  color: #777;
  margin-bottom: 80px;
}

/* TIMELINE WRAPPER */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* LINE */
.timeline-line {
  position: absolute;
  top: 35px;
  left: 15%;
  width: 70%;
  height: 3px;
  background: #18b7a0;
  z-index: 1;
  text-align: justify;
}

/* ITEM */
.timeline-item {
  position: relative;
  text-align: center;
  z-index: 2;
  width: 33.33%;
}

/* CIRCLE */
.circle {
  width: 70px;
  height: 70px;
  background: #18b7a0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 700;
}

/* TEXT */
.timeline-item p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* FOOTER */
.timeline-footer {
  text-align: center;
  margin-top: 80px;
}

.timeline-footer p {
  font-size: 20px;
  color: #666;
}


/* ================= RESPONSIVE ================= */

/* ≤1440 */
@media (max-width: 1440px) {
  .timeline-section {
    padding: 100px 50px;
  }

  .timeline-header h2 {
    font-size: 42px;
  }
}

/* ≤1280 */
@media (max-width: 1280px) {
  .timeline-section {
    padding: 100px 45px;
  }
  .timeline-header h2 {
    font-size: 36px;
  }

  .timeline-header p {
    font-size: 18px;
  }

  .timeline-item p {
    font-size: 16px;
  }
}

/* ≤1024 */
@media (max-width: 1024px) {
  .timeline-section {
    padding: 100px 35px;
  }
  .timeline-line {
    position: absolute;
    text-align: justify;
    left: 15%;
    width: 68%;
  }

  .circle {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

/* ≤768 (STACK VERSION 🔥) */
@media (max-width: 768px) {
  .timeline-section {
    padding: 100px 30px;
  }

  .timeline {
    text-align: justify;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    max-width: 300px;
    margin: 0 auto; /* 🔥 ini yang bikin tengah */
  }

  /* ganti jadi garis vertikal */
  .timeline-line {
    display: block;
    width: 3px;
    height: 90%;
    left: 30px;
    top: 0;
  }

  .timeline-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    max-width: 350px;
  }

  .circle {
    margin: 0;
    flex-shrink: 0;
  }

  .timeline-item p {
    margin-top: 12px;
  }
}

/* ≤480 */
@media (max-width: 480px) {
  .timeline-section {
    padding: 100px 25px;
  }
  .timeline-header h2 {
    font-size: 26px;
  }

  .timeline-header p {
    font-size: 16px;
  }

  .timeline-footer p {
    font-size: 16px;
  }
}

/* ===== CTA SECTION FINAL ===== */
.cta-section {
  padding: 120px 40px;
  background: #fff;
}

/* BOX */
.cta-box {
  margin: 0 auto;

  border: 2px solid #18b7a0;
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  background: #fff;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* TITLE */
.cta-box h2 {
  font-size: 40px;
  font-weight: 800;
  color: #555;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* BUTTON */
.cta-button {
  display: inline-block;
  background: #18b7a0;
  color: #fff;
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #139e8a;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

/* ≤1440 */
@media (max-width: 1440px) {
  .cta-box {
    padding: 100px 50px;
  }

  .cta-box h2 {
    font-size: 36px;
  }
}

/* ≤1280 */
@media (max-width: 1280px) {
  .cta-box {
    padding: 100px 45px;
  }

  .cta-box h2 {
    font-size: 32px;
  }
}

/* ≤1024 */
@media (max-width: 1024px) {
  .cta-section {
    padding: 100px 35px;
  }

  .cta-box {
    padding: 60px 30px;
  }

  .cta-box h2 {
    font-size: 28px;
  }
}

/* ≤768 */
@media (max-width: 768px) {
  .cta-section {
    padding: 0 30px;
  }

  .cta-box {
    padding: 50px 20px;
  }

  .cta-box h2 {
    font-size: 24px;
  }

  .cta-button {
    font-size: 16px;
    padding: 14px 28px;
  }
}

/* ≤480 */
@media (max-width: 480px) {
  .cta-section {
    padding: 0 25px;
  }

  .cta-box h2 {
    font-size: 20px;
    line-height: 1.5;
  }

  .cta-button {
    width: 300px;
    text-align: center;
    padding: 14px;
  }
}
