html {
  max-width: 100%;
  overflow-x: hidden;
}

.about-img {
  position: relative;
  z-index: 10;
  border-radius: 25px;
  margin-bottom: -700px; /* default untuk layar besar */
  max-width: 100%;
  width: 620px;
  height: auto;
}

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .about-img {
     margin-bottom: 0; /* hapus margin negatif */
    width: 100%; 
  }
}

/* HP (≤ 768px) */
/* @media (max-width: 768px) {
  .about-img {
    margin-bottom: -650px;
  }
}


@media (max-width: 576px) {
  .about-img {
    margin-bottom: -630px;
  }
} */

.hero-about {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    margin-bottom: 2rem;
    color: #000;
    font-size: clamp(24px, 5vw, 40px);
     /* position: relative; tetap relatif untuk layout */
    overflow: visible;   /* biarkan dropdown terlihat */

}

@media (max-width: 768px) {
  .hero-about {
    margin-top: 4rem; /* Atau nilai lain sesuai kebutuhan */
  }
}

@media (max-width: 768px) {
 .about-section {
    border-radius: 24px !important;
    padding: 20px 20px;
  }
}

#next-section2 {
				/* margin-top: -80px; tarik ke atas agar menyambung */
				background: linear-gradient(180deg, #20419A 61.19%, rgba(11, 22, 52, 0) 100%);
				padding: 150px 20px;
				color: white;
				position: relative;
				z-index: 1;
			}
			


            @media (max-width: 768px) {
				#next-section2 .row.align-items-center {
					text-align: center;
				}
			}

@media (max-width: 768px) {
  #next-section2 {
    padding: 60px 16px !important;
  }
}
/* Desktop: border kanan */
.border-custom-responsive {
  border-right: 4px solid white;
}

/* Mobile: hilangkan border kanan, ganti border bawah */
@media (max-width: 768px) {
  .border-custom-responsive {
    border-right: none !important; /* hilangkan border kanan */
    border-bottom: 2px solid white; /* border bawah yang baru */
    padding-bottom: 1.5rem; /* beri jarak bawah supaya rapi */
    margin-bottom: 1.5rem;
  }

  /* Last child yang punya border-custom-responsive di mobile hilangkan border bawah */
  .border-custom-responsive:last-child {
    border-bottom: none !important;
    margin-bottom: 0;
  }
}


/*  */

.about-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.0; /* mendekati 100% tapi tetap enak dibaca */
    letter-spacing: 0;
    color: #000000;
}

/* Responsiveness */
@media (min-width: 768px) {
    .about-text {
        font-size: 15px; /* sedikit lebih besar di tablet */
        line-height: 1.3;
    }
}

@media (min-width: 1200px) {
    .about-text {
        font-size: 16px; /* lebih besar di desktop */
        line-height: 1.4;
    }
}


.image-wrapper-about {
    flex: 1 1 100%;
    width: 100vw;
    margin-left: calc(-1 * ((100vw - 100%) / 2));
    aspect-ratio: 745 / 255;
    overflow: hidden;
    position: relative;
    max-width: none;
}


.image-wrapper-about img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* Tablet & laptop (dari 768px sampai <1440px) */
@media (min-width: 768px) and (max-width: 1439.98px) {
    .image-wrapper-about {
        flex: 1 1 10%;
    }
}

/* Desktop besar (1440px ke atas) */
@media (min-width: 1440px) {
    .image-wrapper-about {
        flex: 1 1 35%;
        width: 100vw;
        margin-left: calc(-1 * ((100vw - 1140px) / 2)); /* sesuaikan container tengah */
    }
}

.heading-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;   /* default desktop */
  line-height: 100%;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #FFFFFF; /* sesuai figma */
}

/* Tablet */
@media (max-width: 992px) {
  .heading-title {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .heading-title {
    font-size: 24px;
  }
}

.paragraph-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.5;
  letter-spacing: 0;
  color: #FFFFFF;
  margin: 0;
}

.about-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(24px, 4vw, 40px); /* min 24px, max 40px, fleksibel */
  line-height: 100%;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #FFFFFF;
}


.advantage-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(16px, 2.5vw, 24px); /* min 16px, max 24px */
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
  text-align: center;
}


/* Gradasi biru */
.footer-gradient {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(7, 31, 97, 0.0) 8%,
        rgba(7, 31, 97, 0.4) 18%,
        rgba(7, 31, 97, 0.6) 27%,
        rgba(20, 40, 120, 0.8) 33%,
        rgba(28, 52, 135, 0.9) 37%,
        rgba(32, 65, 154, 1) 42%,
        rgba(32, 65, 154, 1) 100%
    );
    color: #ffffff;
    width: 100%;
    padding-top: 15rem;   /* tambah tinggi ke bawah */
    padding-bottom: 8rem; /* tambahin jarak bawah */
    min-height: 400px;    /* pastikan area footer cukup tinggi */
}

@media (max-width: 768px) {
  .footer-gradient {
    background: linear-gradient(
      to bottom,
      rgba(7, 31, 97, 0.0) 4%,
      rgba(7, 31, 97, 0.4) 10%,
      rgba(7, 31, 97, 0.6) 18%,
      rgba(20, 40, 120, 0.8) 24%,
      rgba(28, 52, 135, 0.9) 30%,
      rgba(32, 65, 154, 1) 36%,
      rgba(32, 65, 154, 1) 100%
    );
    padding-top: 10rem;
    padding-bottom: 6rem;
    min-height: 300px;
  }
}
@media (max-width: 767.98px) {
  .remove-mobile-padding {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}


/* Supaya teks jelas */
.footer-gradient .company-name,
.footer-gradient .company-address,
.footer-gradient .follow-title {
    color: #ffffff;
}

#footer1 {
  margin-top: 200px; /* default desktop */
}

@media (max-width: 768px) {
  #footer1 {
    margin-top: 10px !important; /* hilangkan margin top di mobile */
  }
}


.visa-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;        /* Bold */
    font-size: clamp(20px, 5vw, 36px);
    line-height: 100%;
    letter-spacing: 0;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1rem;
}

.visa-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;              /* Regular */
    font-size: clamp(12px, 2vw, 14px);
    line-height: 1.4; /* 100% */
    letter-spacing: 1;
    color: #ffffff;                /* Putih */
    text-align: left;
    margin-top: 1rem;              /* Sama seperti mt-3 Bootstrap */
}

.btn-learn-more {
    
    height: 40px;
    border-radius: 8px;
    padding: 8px;
    background: #FFFFFF;
    /* Text */
    font-family: 'Inter', sans-serif;
    font-weight: 700;       /* Bold */
    font-size: clamp(12px, 3vw, 16px);
    line-height: 100%;
    letter-spacing: 0;
    color: #20419A !important;
    text-align: center;

    /* Flexbox center */
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-learn-more:hover,
.btn-learn-more:focus,
.btn-learn-more:active {
    background: #20419A !important;  /* tetap putih */
    color: #FFFFFF !important;       /* tetap biru */
    
     border: 2px solid #FFFFFF;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px); /* min 28px, skala sesuai layar, max 40px */
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  color: #20419A;
}

.phone-number {
  text-align: center; /* rata tengah */
  margin-bottom: 1.25rem; /* sama dengan mb-5 */
}

.phone-number a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 24px); /* responsif: min 18px, prefer 2.5vw, max 24px */
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
  text-decoration: none; /* biar ga underline */
  transition: color 0.3s ease;
}

.phone-number a:hover {
  color: #20419A; /* warna hover sesuai theme */
}


.custom-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* jarak logo dan teks */
    background: #20419A !important;
    width: 286px;
    height: 40px;
    border-radius: 8px;
    padding: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF !important;
    text-transform: none;
    text-decoration: none;
}

.custom-wa-btn:hover {
    background: #1a337a !important;
    color: #FFFFFF !important;
}
.custom-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* jarak logo dan teks */
    background: #ffffff !important;
    width: 286px;
    height: 40px;
    border-radius: 8px;
    padding: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000000 !important;
    text-transform: none;
    text-decoration: none;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* 👉 shadow ditambahkan */
    transition: all 0.3s ease; /* biar smooth waktu hover */
}

.custom-email-btn:hover {
    background: #1a337a !important;
    color: #ffffff !important; /* biar kontras saat hover */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25); /* shadow lebih tebal saat hover */
}


.custom-or-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(16px, 2vw, 24px); /* min 16px, ideal 2vw, max 24px */
    line-height: 100%;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
}

.custom-email {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(16px, 2vw, 24px); /* min 16px, ideal 2vw, max 24px */
    line-height: 100%;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
}

.service-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 5vw, 40px); /* responsif dari 24px s/d 40px */
  line-height: 1; 
  letter-spacing: 0;
  text-transform: capitalize;
  color: #20419A;
  margin-bottom: 1.25rem; /* sesuai mb-5 */
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(12px, 1.4vw, 14px); /* Responsive font */
    line-height: 1.4; /* lebih nyaman dibaca */
    color: #000000;
    margin-bottom: 1rem;
}

.child-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(20px, 2vw, 24px); /* responsive */
    line-height: 1.2;
    letter-spacing: 0;
    color: #000000;
    margin-bottom: 0.5rem;
}

.grandchild-name {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* override bold bawaan <strong> */
    font-style: normal;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #000000;
}



.map-iframe {
    width: 100%;
    max-width: 772px;
    aspect-ratio: 16/16;   /* selalu proporsional */
    border: 1px solid #ddd; /* border tipis */
    border-radius: 5px;   /* rounded biar lembut */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* shadow ringan */
}

