/* contact.css — responsive contact page with light interactivity */

/* tokens */
:root{
  --accent:#0f766e;
  --accent-2:#14b8a6;
  --muted:#6b7280;
  --bg:#f0faf9;
  --card:#ffffff;
  --shadow-soft:0 10px 28px rgba(2,6,23,0.06);
  --shadow-strong:0 26px 60px rgba(2,6,23,0.10);
  --page-max:1200px;
}

/* base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  background:var(--bg);
  color:#071617;
  -webkit-font-smoothing:antialiased;
}

.contact-page main{display:block}
.wrap{max-width:var(--page-max);margin:0 auto;padding:0 20px}
.section{padding:40px 0}
.muted{color:var(--muted)}
.small{font-size:.9rem}

/* ================= HERO (enhanced styling) ================= */
.hero{
  background:linear-gradient(135deg,#e5f7f4,#ffffff);
  padding:60px 0 56px;                /* increased padding */
  box-shadow:0 18px 44px rgba(2,6,23,0.06);
}

.hero-inner{
  display:flex;
  align-items:flex-start;             /* smooth top alignment */
  justify-content:space-between;
  gap:40px;                           /* bigger space */
}

.hero-text{
  flex:1 1 0;
  display:flex;
  flex-direction:column;
  justify-content:center;             /* center block */
  gap:12px;                           /* even vertical spacing */
  line-height:1.55;
}

.hero-kicker{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.78rem;
  color:var(--accent);
  font-weight:700;
  margin:0;
}

.hero-text h1{
  margin:0;
  font-size:2.2rem;
  letter-spacing:-0.02em;
  color:#062b2a;
  line-height:1.3;
}

.hero-sub{
  margin:0;
  max-width:520px;
  font-size:1rem;
  line-height:1.6;
  text-align:justify;                 /* cleaner text alignment */
}

.hero-note{
  margin-top:6px;
  font-size:.94rem;
  line-height:1.5;
}

.hero-media{
  flex:0 0 360px;
  max-width:380px;
  display:flex;
  align-items:center;                 /* vertical centering */
}

.hero-media img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow-strong);
}

/* hero chips */
.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  border:none;
  border-radius:999px;
  padding:8px 14px;
  background:#ffffff;
  box-shadow:0 10px 24px rgba(2,6,23,0.06);
  display:inline-flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  font-weight:600;
  font-size:.92rem;
  color:#053131;
}
.chip span{white-space:nowrap}
.chip:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(2,6,23,0.10);
}

/* ========= INFO CARDS (alignment + line spacing tuned) ========= */
.info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:stretch;
}

.info-card{
  background:var(--card);
  border-radius:14px;
  padding:18px 20px;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(11,18,32,0.03);
  display:flex;
  flex-direction:column;
  gap:0;
  min-height:220px;
  line-height:1.45;
}

.info-card h2{
  margin:0;
  font-size:1.12rem;
}

/* consistent spacing */
.info-card > *{ margin-top:0; }
.info-card > * + *:not(.link-btn){ margin-top:6px; }

.contact-list{
  list-style:none;
  padding:0;
  margin:2px 0 0;
}
.contact-list li{
  margin:2px 0;
  font-size:.96rem;
  line-height:1.4;
}

.link-btn{
  margin-top:auto;
  padding:0;
  border:none;
  background:none;
  color:var(--accent);
  font-weight:700;
  font-size:.94rem;
  display:inline-flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
}
.link-btn::after{
  content:"→";
  font-size:.9rem;
}
.link-btn:hover{text-decoration:underline}

/* tiny note */
.tiny-note{
  text-align:center;
  max-width:760px;
}

/* toast */
.toast{
  position:fixed;
  left:50%;
  bottom:20px;
  transform:translateX(-50%) translateY(40px);
  background:#041f1f;
  color:#f9fafb;
  padding:10px 16px;
  border-radius:999px;
  font-size:.92rem;
  opacity:0;
  pointer-events:none;
  transition:transform .25s ease, opacity .25s ease;
  z-index:1600;
}
.toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* ---------- Sticky social logos ---------- */
.sticky-social{
  position:fixed;
  right:24px;
  bottom:120px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:1400;
}

.sticky-social .sticky-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  text-decoration:none;
  box-shadow:0 12px 26px rgba(0,0,0,0.35);
  border:2px solid #ffffff;
  transition:transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.sticky-social .sticky-wa{ background:#25D366; }
.sticky-social .sticky-ig{ background:#E1306C; }
.sticky-social .sticky-fb{ background:#1877F2; }

.sticky-social .sticky-icon:hover{
  transform:translateY(-3px) scale(1.03);
  opacity:0.96;
  box-shadow:0 16px 30px rgba(0,0,0,0.4);
}

/* ================= MOBILE ================= */
@media (max-width:640px){

  .sticky-social{
    right:16px;
    bottom:90px;
  }

  .info-grid{
    grid-template-columns:1fr;
  }

  /* HERO mobile layout */
  .hero-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:24px;
  }

  .hero-media{
    width:100%;
    max-width:none;
  }

  .hero-media img{
    height:220px;
  }
}

/* ================================================= */
/* 🎯 NEW CONTACT FORM SECTION */
/* ================================================= */

.contact-form-section{
  background:#ffffff;
  padding:60px 0;
}

.form-wrap{
  max-width:760px;
  margin:0 auto;
}

.form-wrap h2{
  margin:0 0 6px;
  font-size:1.6rem;
  color:#062b2a;
}

.form-wrap p{
  margin:0 0 24px;
  font-size:.95rem;
}

form{
  background:white;
  padding:24px 26px;
  border-radius:14px;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(11,18,32,0.05);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.form-full{
  grid-column:1 / -1;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

label{
  font-weight:600;
  font-size:.95rem;
}

input,
textarea{
  width:100%;
  padding:10px 12px;
  font-size:1rem;
  border-radius:8px;
  border:1px solid #cbd5e1;
  font-family:Inter,Arial;
  outline:none;
  transition:.2s;
}

input:focus,
textarea:focus{
  border-color:var(--accent);
}

.error{
  display:none;
  color:#d00;
  font-size:.8rem;
  margin:0;
}

input.invalid,
textarea.invalid{
  border-color:#d00;
  background:#ffecec;
}

.submit-btn{
  margin-top:20px;
  width:100%;
  padding:12px 0;
  font-size:1rem;
  border:none;
  border-radius:8px;
  background:var(--accent);
  color:white;
  font-weight:700;
  cursor:pointer;
  transition:.2s;
}

.submit-btn:hover{
  background:var(--accent-2);
}

/* MOBILE */
@media(max-width:640px){
  .form-grid{
    grid-template-columns:1fr;
  }
}
