/* ===== CONTACT PAGE ===== */

.nav-active { color: var(--cyan) !important; }

/* Hero */
.contact-hero {
  position: relative;
  padding: 160px 24px 90px;
  text-align: center;
  overflow: hidden;
}
.contact-hero .glow-1 {
  width: 600px; height: 500px;
  background: rgba(0,212,212,0.07);
  top: -160px; left: 50%;
  transform: translateX(-50%);
}
.contact-hero .glow-2 {
  width: 280px; height: 280px;
  background: rgba(0,180,255,0.04);
  bottom: 0; right: 12%;
}
.contact-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 8px 0 20px;
}
.contact-hero p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Section */
.contact-section {
  padding: 20px 0 100px;
}

/* Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* ===== LEFT COL ===== */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Contact cards */
.ct-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.ct-card:not(.ct-card-static):hover {
  border-color: var(--border-cyan);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.ct-card-static { cursor: default; }
.ct-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cyan-glow);
  border: 1px solid var(--border-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.ct-card-icon svg { width: 20px; height: 20px; }
.ct-card-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.ct-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.ct-card-value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}
.ct-card-arrow {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: var(--transition);
}
.ct-card:hover .ct-card-arrow { color: var(--cyan); }

/* Quote process */
.ct-quote-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.ct-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ct-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.ct-step:last-child { border-bottom: none; }
.ct-step-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(0,212,212,0.15);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 2px;
  min-width: 36px;
}
.ct-step strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.ct-step p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== RIGHT COL: Form ===== */
.ct-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: sticky;
  top: 100px;
}
.ct-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.ct-form-card > p {
  font-size: 0.9rem;
  margin-bottom: 28px;
}

/* Form fields */
.ct-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.ct-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.ct-optional {
  color: var(--text-muted);
  font-weight: 400;
}
.ct-form input,
.ct-form select,
.ct-form textarea {
  background: #080b16;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
  border-color: var(--border-cyan);
  background: #0a0d18;
}
.ct-form input::placeholder,
.ct-form textarea::placeholder { color: rgba(255,255,255,0.2); }
.ct-form select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238891a8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.ct-form textarea { resize: vertical; min-height: 120px; }
.ct-form .btn-full { margin-top: 4px; }

/* Success state */
.ct-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 20px;
  gap: 14px;
}
.ct-form-success.visible { display: flex; }
.ct-form-success svg {
  width: 52px;
  height: 52px;
  color: var(--cyan);
  stroke-width: 2.5;
}
.ct-form-success h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.ct-form-success p { font-size: 0.95rem; }

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ct-form-card { position: static; }
}
@media (max-width: 600px) {
  .contact-hero { padding: 130px 24px 70px; }
  .ct-form-card { padding: 28px 22px; }
  .ct-form .form-row { grid-template-columns: 1fr; }
}
