/* ════════════════════════════════════
   CONTACT PAGE — contact.css
   ════════════════════════════════════ */

/* ── HERO ── */
.ct-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: ct-hero-zoom 14s ease-in-out infinite alternate;
}

@keyframes ct-hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 12, 16, 0.55) 0%,
    rgba(12, 12, 16, 0.70) 60%,
    rgba(12, 12, 16, 0.95) 100%
  );
}

.ct-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 700px;
}

.ct-hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 1rem 0 1.4rem;
}

.ct-hero-sub {
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

.ct-hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

/* ── QUICK INFO STRIP ── */
.ct-strip {
  background: #fff;
  padding: 3rem 0;
  padding-top: calc(74px + 3rem);
}

.ct-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ct-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 180px;
}

.ct-strip-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(124, 114, 255, 0.1);
  border: 1px solid rgba(124, 114, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-strip-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7c72ff;
  margin-bottom: 0.3rem;
}

.ct-strip-value {
  font-size: 0.76rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.ct-strip-divider {
  width: 1px;
  height: 52px;
  background: #e5e7eb;
  flex-shrink: 0;
  align-self: center;
}

/* ── MAIN FORM + MAP ── */
.ct-main {
  background: linear-gradient(135deg, #f5f3ff, #eef2ff);
  padding: 6rem 0 7rem;
}

.ct-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.ct-form-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #0F172A;
  margin: 0.6rem 0 0.8rem;
}

.ct-form-title span {
  color: #7c72ff;
}

.ct-form-sub {
  font-size: 0.78rem;
  font-weight: 300;
  color: #64748B;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ct-submit {
  background: linear-gradient(135deg, #7c72ff, #6c63ff);
  letter-spacing: 0.12em;
}

.ct-submit:hover {
  background: linear-gradient(135deg, #6c63ff, #5b52ee);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(108, 99, 255, 0.45);
}

/* Info column */
.ct-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Map */
.ct-map-wrap {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Why cards grid */
.ct-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ct-why-card {
  background: #fff;
  border: 1px solid rgba(124, 114, 255, 0.12);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}

.ct-why-card:hover {
  background: #f5f3ff;
  border-color: rgba(124, 114, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124, 114, 255, 0.1);
}

.ct-why-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(124, 114, 255, 0.12);
  border: 1px solid rgba(124, 114, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-why-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.3rem;
}

.ct-why-text {
  font-size: 0.66rem;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
}


/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .ct-main-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
  .ct-strip-inner {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
  .ct-strip-divider {
    display: none;
  }
  .ct-strip-item {
    min-width: 45%;
  }
}

@media (max-width: 767.98px) {
  .ct-hero-title {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }
  .ct-form-row,
  .ct-why-grid {
    grid-template-columns: 1fr;
  }
  .ct-map-wrap {
    height: 240px;
  }
  .ct-strip-item {
    min-width: 100%;
  }
}
