/* ---------------------------------------------
   DiPStrategy -- Contact Us
   style/contact.css
   --------------------------------------------- */

.ct-page {
  background: #f0f0e6;
  min-height: 100vh;
  position: relative;
}

.ct-pattern {
  position: fixed; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.2; z-index: 0;
  pointer-events: none;
}

/* --- HERO NAVY (headline + 2-column: info kiri, form kanan) --- */
.ct-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 180px 56px 100px;
}

.ct-hero-pattern {
  position: absolute; inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.5; z-index: 0;
  pointer-events: none;
}

.ct-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.2) 60%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1; pointer-events: none;
}

.ct-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block; margin-bottom: 32px;
}

.ct-headline {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.0; margin-bottom: 24px;
}

.ct-headline .hl-light {
  display: block; font-weight: 200;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.5);
}

.ct-headline .hl-bold {
  display: block; font-weight: 900;
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: -0.04em;
  color: #fff;
}

.ct-subtext {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin-bottom: 48px;
}

/* --- HERO GRID: kiri (headline+info), kanan (form) sejajar dari atas --- */
.ct-hero-grid {
  position: relative; z-index: 2;
  /* max-width: 1100px;*/
  width: 98%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.ct-hero-left {
  /* max-width: 650px; */
}

/* --- INFO (di bawah headline, 2 kolom sejajar: Email | Alamat) --- */
.ct-info-section {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 32px;
}

.ct-info-block {
  margin-bottom: 0;
}

.ct-info-block-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block; margin-bottom: 10px;
}

.ct-info-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; font-size: 15px;
  color: rgba(255,255,255,0.85); text-decoration: none;
  display: block; line-height: 1.5;
  transition: color 0.2s;
}

.ct-info-value:hover { color: #DEFF2D; }

.ct-address-lines {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 13px;
  line-height: 1.85; color: rgba(255,255,255,0.55);
}

.ct-address-legal {
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 16px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: block; margin-bottom: 6px;
}

.ct-maps-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 12px;
  color: #DEFF2D; text-decoration: none;
  margin-top: 14px;
  transition: color 0.2s;
}

.ct-maps-link:hover { color: #f0ff50; }

.ct-maps-link svg { width: 13px; height: 13px; flex-shrink: 0; }

.ct-divider {
  width: 32px; height: 2px;
  background: rgba(255,255,255,0.12);
  margin: 24px 0;
}

/* --- FORM SIDE (kanan, ramping, sejajar headline) --- */
.ct-form-section {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  
}

.ct-form-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 900; font-size: 14px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #093564; opacity: 0.85;
  display: block; margin-bottom: 20px;
}

.ct-form {
  display: flex; flex-direction: column; gap: 12px;
}

.ct-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.ct-field { display: flex; flex-direction: column; gap: 6px; }

.ct-field-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(9,53,100,0.85);
}

.ct-input,
.ct-textarea {
  background: #f7f7f1;
  border: 1px solid rgba(9,53,100,0.1);
  border-radius: 8px; padding: 11px 14px;
  color: #093564;
  font-family: 'Barlow', sans-serif; font-size: 13px;
  outline: none; transition: border-color 0.2s; width: 100%;
  -webkit-appearance: none;
}

.ct-input::placeholder,
.ct-textarea::placeholder { color: rgba(9,53,100,0.3); }

.ct-input:focus,
.ct-textarea:focus { border-color: rgba(9,53,100,0.4); }

.ct-textarea { resize: none; height: 80px; line-height: 1.6; }

.ct-submit {
  background: #093564; border: none; border-radius: 8px;
  padding: 13px 24px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%; margin-top: 2px;
}

.ct-submit:hover { background: #0a4080; transform: translateY(-1px); }

.ct-microcopy {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 11px;
  color: rgba(9,53,100,0.35);
  text-align: center; margin-top: 2px;
  line-height: 1.5;
}

/* --- SCROLL HINT: foto DARA bouncing + badge WA, teks sejajar kanan --- */
.ct-scroll-hint {
  position: relative; z-index: 2;
  display: flex; flex-direction: row;
  align-items: center; gap: 16px;
  text-decoration: none;
  margin: 16px 0 0;
  padding: 14px 16px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  border: solid 1px rgba(9,53,100,0.1);
  background-color: #f7f7f1;
  border-radius: 10px;
  transition: background-color 0.2s, border-color 0.2s;
}

.ct-scroll-hint:hover {
  background-color: #efefe5;
  border-color: rgba(9,53,100,0.18);
}

.ct-scroll-hint-avatar {
  position: relative;
  width: 52px; height: 52px;
  flex-shrink: 0;
  animation: ctBounce 1.6s ease-in-out infinite;
}

.ct-scroll-hint-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #DEFF2D;
  display: block;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.ct-scroll-hint-badge {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  border: 2px solid #f7f7f1;
}

.ct-scroll-hint-badge svg { width: 11px; height: 11px; }

.ct-scroll-hint-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 400; font-size: 13px;
  color: rgba(9,53,100,0.65);
  text-align: left;
  /* max-width: 220px; */
  line-height: 1.5;
  transition: color 0.2s;
}

.ct-scroll-hint:hover .ct-scroll-hint-text { color: #093564; }

@keyframes ctBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* --- DARA SECTION (di bawah hero, cream) --- */
.ct-dara-section {
  position: relative; z-index: 1;
  background: #f0f0e6;
  padding: 96px 56px;
}

.ct-dara-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ct-dara-left {}

.ct-dara-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #093564; opacity: 0.5;
  display: block; margin-bottom: 20px;
}

.ct-dara-headline {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.05; margin-bottom: 20px;
}

.ct-dara-headline .hl-light {
  display: block; font-weight: 200;
  font-size: clamp(24px, 3vw, 40px);
  color: #093564; opacity: 0.55;
  letter-spacing: -0.02em;
}

.ct-dara-headline .hl-bold {
  display: block; font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  color: #093564;
  letter-spacing: -0.03em;
}

.ct-dara-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 15px; line-height: 1.8;
  color: rgba(9,53,100,0.6);
  max-width: 440px;
  margin-bottom: 32px;
}

.ct-dara-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #093564; background: #DEFF2D;
  border: none; border-radius: 999px;
  padding: 15px 30px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.ct-dara-cta:hover { background: #f0ff50; transform: translateY(-2px); }
.ct-dara-cta svg { width: 16px; height: 16px; }

/* --- DARA points (kanan) --- */
.ct-dara-right {
  display: flex; flex-direction: column; gap: 0;
}

.ct-dara-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(9,53,100,0.1);
  align-items: start;
}

.ct-dara-point:first-child { padding-top: 0; }
.ct-dara-point:last-child { border-bottom: none; padding-bottom: 0; }

.ct-dara-point-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 42px;
  color: rgba(2,49,102,0.5);
  -webkit-text-stroke: 1px rgba(9,53,100,0.3);
  line-height: 1;
}

.ct-dara-point-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 15px;
  color: #093564; margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.ct-dara-point-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300; font-size: 13px; line-height: 1.7;
  color: rgba(9,53,100,0.6);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .ct-hero         { padding: 140px 24px 64px; }
  .ct-hero-grid    { grid-template-columns: 1fr; gap: 40px; }
  .ct-hero-left    { max-width: 100%; }
  .ct-info-section { grid-template-columns: 1fr; gap: 28px; }
  .ct-row          { grid-template-columns: 1fr; }
  .ct-form-section { padding: 24px; }
  .ct-dara-section { padding: 64px 24px; }
  .ct-dara-inner   { grid-template-columns: 1fr; gap: 40px; }
}
