/* ============================================================
   CONTACT PAGE — ct- პრეფიქსი
   დაამატე maga.css-ის ბოლოს
   ============================================================ */

/* ── HERO STRIP ── */

.form-group input,
.form-group textarea,
.form-group select{
width:100%;
padding:12px 14px;
border:1.5px solid #e8eaed;
border-radius:10px;
font-size:14px;
transition:all .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
border-color:#ff7a00;
box-shadow:0 0 0 3px rgba(255,122,0,0.1);
outline:none;
}
.ct-hero {
  background: linear-gradient(135deg, #0a0e1a, #111827);
  padding: 28px var(--pad, 16px) 24px;
  position: relative;
  overflow: hidden;
}

.ct-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,122,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ct-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ct-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.45);
}

.ct-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--t, 0.2s);
}

.ct-breadcrumb a:hover { color: #ff7a00; }
.ct-breadcrumb span:last-child { color: rgba(255,255,255,0.75); }

.ct-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.ct-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── PRIMARY CTA STRIP ── */
.ct-cta-strip {
  background: #f7f8fa;
  border-bottom: 1px solid #e8eaed;
  padding: 16px var(--pad, 16px);
}

.ct-cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ct-cta-wa,
.ct-cta-msg {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.ct-cta-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

.ct-cta-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.ct-cta-msg {
  background: #0084ff;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,132,255,0.25);
}

.ct-cta-msg:hover {
  background: #0070db;
  transform: translateY(-2px);
}

.ct-cta-wa svg,
.ct-cta-msg svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: #fff;
}

.ct-cta-wa-title,
.ct-cta-msg-title {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 2px;
}

.ct-cta-wa-num,
.ct-cta-msg-num {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.ct-cta-wa-arrow {
  margin-left: auto;
  font-size: 20px;
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── MAIN GRID ── */
.ct-grid {
  max-width: 1140px;
  margin: 24px auto;
  padding: 0 var(--pad, 16px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ── INFO SIDE ── */
.ct-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.ct-card {
  background: #fff;
  border: 1.5px solid #e8eaed;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.2s;
}

.ct-card:hover {
  border-color: #ff7a00;
  box-shadow: 0 4px 16px rgba(255,122,0,0.1);
  transform: translateY(-2px);
}

.ct-card-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ct-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.ct-card-value {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0f1117;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s;
}

a.ct-card-value:hover { color: #ff7a00; }

.ct-card-note {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.4;
}

.ct-infobox {
  background: #fff;
  border: 1.5px solid #e8eaed;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.ct-socials-title {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0f1117;
  margin-bottom: 10px;
}

/* override social-link for contact page */
.ct-socials .social-link {
  border-color: #e8eaed;
}

.ct-socials .social-link:hover {
  border-color: #ff7a00;
  background: #fff8f3;
  color: #ff7a00;
}

.ct-socials .social-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ── FORM SIDE ── */
.ct-form-wrap {
  background: #fff;
  border: 1.5px solid #e8eaed;
  border-radius: 16px;
  overflow: hidden;
}

.ct-form-header {
  background: linear-gradient(135deg, #0a0e1a, #162236);
  padding: 20px 22px;
}

.ct-form-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.ct-form-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.ct-form-wrap form {
  padding: 20px 22px;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .ct-cta-inner { grid-template-columns: 1fr; }
  .ct-cards { grid-template-columns: 1fr; }
}

@media (min-width: 768px) {
  .ct-cta-wa-num,
  .ct-cta-msg-num { font-size: 17px; }
}

@media (min-width: 1024px) {
  .ct-grid { grid-template-columns: 1fr 1.4fr; gap: 32px; }
  .ct-hero { padding: 40px 24px 32px; }
  .ct-cta-strip { padding: 20px 24px; }
}
