:root {
    --primary-text: rgba(17, 63, 103, 0.7);
    --secondary-text: #59738c;
    --primary-blue: #113f67;
    --accent-blue: #60a5fa;
    --light-bg: rgba(244, 244, 244, 0.1);
    --input-bg: rgba(209, 209, 209, 0.55);
    --white: #ffffff;
    --black: #000000;
}

.header {
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--secondary-text);
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Footer */
.footer {
  background-color: #0e2e47;
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  height: 100px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 18px;
  margin-bottom: 15px;
}

.sosmed img {
  width: 30px;
  margin-right: 10px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-column p,
.footer-column ul {
  font-size: 18px;
  color: #ddd;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.btn-footer {
  display: inline-block;
  background-color: #4dabf7;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 10px;
}

.btn-footer:hover {
  background-color: #339af0;
}

.copyright {
  text-align: center;
  font-size: 13px;
  color: #ccc;
  margin-top: 30px;
}

.consultation-section {
    min-height: 100vh; /* penuh layar */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar .menu a {
    margin: 10px 10px 0 0;
    display: inline-block;
  }

  .cta-flex {
    align-items: center;
    text-align: center;
  }

  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
  }

    .consultation-form-box {
    width: 100%;
    max-width: 100%;
  }
}



.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  margin-top:-80px;
  
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  margin: 10px auto 0;
  border-radius: 4px;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;   /* bold */
  color: #001f54;     /* biru dongker/navy */
  text-align: center;
  line-height: 1.6;
  margin: 30px auto 40px;
  max-width: 600px;   /* biar teks tidak terlalu panjang */
  letter-spacing: 0.5px;
  margin-top:50px;


  
  /* Tambahan agar halus */
  background: linear-gradient(90deg, #0d6efd, #00c9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




@media (max-width: 768px){
.section-title{
  margin-top:60px;
}

}