:root {
  --dark-1: #111827;
  --dark-2: #1F2937;
  --card: #ffffff;
  --ink: #111827;
  --muted: #6B7280;
  --soft: #E5E7EB;
  --border: #D1D5DB;
  --accent: #1F2937;
  --radius: 14px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Page heading */
.cu-hero {
  background: #fff;
  padding: 28px 0 8px;
  text-align: center;
}

.cu-hero h1 {
  margin: 0;
  font-size: clamp(22px, 3.6vw, 28px);
  letter-spacing: .03em;
}

.cu-hero .bar {
  display: inline-block;
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: #D1D5DB;
  margin-top: 8px;
}

/* Top section (left intro + right form) with subtle wave bg */
.contact-top {
  position: relative;
  background: #F9FAFB;
  overflow: hidden;
}

.contact-top::before {
  content: "";
  position: absolute;
  left: -20%;
  top: -10%;
  width: 120%;
  height: 140%;
  background:
    radial-gradient(1200px 400px at 10% 50%, rgba(209, 213, 219, .35), transparent 60%),
    radial-gradient(900px 280px at 30% 70%, rgba(209, 213, 219, .35), transparent 60%);
  pointer-events: none;
}

.contact-top .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: start;
  padding: 28px 0 32px;
}

/* Intro text */
.intro h2 {
  font-size: clamp(22px, 3.2vw, 28px);
  color: var(--ink);
  margin: 0 0 8px;
}

.intro p {
  color: #4B5563;
  max-width: 520px;
}

/* Info cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.info-box {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  background: #F3F4F6;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 22px;
  height: 22px;
}

.info-text h3 {
  margin: 0 0 2px;
  font-size: 14px;
  color: var(--ink);
}

.info-text a {
  color: #374151;
  text-decoration: none;
  font-size: 14px;
}

.info-text a:hover {
  text-decoration: underline;
}

/* Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.contact-form .row {
  margin-bottom: 12px;
}

.contact-form .row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 12px;
  color: #6B7280;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 14px;
  color: #111827;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input::placeholder,
textarea::placeholder {
  color: #9CA3AF;
}

input:focus,
textarea:focus {
  border-color: #93C5FD;
  box-shadow: 0 0 0 3px rgba(147, 197, 253, .35);
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #F9FAFB;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}

.btn-submit:hover {
  transform: translateY(-1px);
  background: #111827;
}

.btn-submit:active {
  transform: translateY(0) scale(.98);
}

.small-hint {
  margin-top: 6px;
  color: #6B7280;
  font-size: 12px;
  text-align: center;
}

/* Divider */
.cu-divider {
  background: #fff;
  padding: 16px 0;
  display: flex;
  justify-content: center;
}

.cu-divider span {
  width: 2px;
  height: 70px;
  display: block;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(107, 114, 128, .7),
    rgba(107, 114, 128, .7) 6px,
    transparent 6px,
    transparent 12px
  );
  border-radius: 2px;
}

/* Social banner */
.social-banner {
  position: relative;
  background: #1F2937;
  color: #F9FAFB;
  padding: 0;
}

.social-banner::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 16/5;
  background: linear-gradient(rgba(17,24,39,.45), rgba(17,24,39,.45)),
              url('team.jpg') center/cover no-repeat;
}

.social-banner .center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.social-banner h2 {
  font-size: clamp(20px, 3.2vw, 28px);
  margin-bottom: 12px;
}

.socials {
  display: flex;
  gap: 10px;
}

.sbtn {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  background: #ffffff;
  color: #111827;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 700;
  opacity: .92;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
  transition: transform .15s ease, background .2s ease, color .2s ease;
}

.sbtn:hover {
  transform: translateY(-1px);
  background: #F3F4F6;
}

/* Wedge footer */
.cu-footer {
  background: #fff;
  padding: 40px 0 0;
}

.wedge {
  position: relative;
  background: #1F2937;
  height: 120px;
  clip-path: polygon(0 60%, 50% 0, 100% 60%, 100% 100%, 0 100%);
  color: #F9FAFB;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #D1D5DB;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
}

.brand {
  margin-top: 42px;
  text-align: center;
}

.brand .name {
  font-weight: 700;
  margin-bottom: 6px;
}

.brand .sm a {
  color: #E5E7EB;
  text-decoration: none;
  margin: 0 6px;
  font-size: 14px;
}

.brand .sm a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 980px) {
  .contact-top .grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    order: 2;
  }
  .intro {
    order: 1;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none !important;
  }
}
