/* ─── CONTACT PAGE ───────────────────────────── */

/* Header */
.ct-header {
  background: #000000;
  padding: 70px 48px 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ct-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ct-header h1 {
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 16px;
}

.ct-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.7;
}

/* Layout principal */
.contact-main {
  background: #000000;
  padding: 60px 48px 90px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* ─── COLONNE GAUCHE ──────────────────────────── */

/* Services chips */
.ct-services-block {
  margin-bottom: 40px;
}

.ct-services-block h3,
.ct-info-block h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ct-services-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
  font-style: italic;
}

.ct-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ct-service-chip {
  background: #000000;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  color: rgba(255,255,255,0.7);
  font-family: Arial, sans-serif;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  transition: all 0.2s;
}

.ct-service-chip:hover {
  border-color: rgba(255,255,255,0.3);
  color: #FFFFFF;
  background: #000000;
}

.ct-service-chip.selected {
  border-color: #FFFFFF;
  background: #FFFFFF;
  color: #000000;
  font-weight: 700;
}

.chip-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Infos de contact */
.ct-info-block h3 { margin-bottom: 16px; }

.ct-info-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

a.ct-info-item:hover { background: #000000; }

.ct-info-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
}

.ct-info-icon:not(.ct-social-icon) svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ct-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.ct-info-value {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ─── COLONNE DROITE — Formulaire ─────────────── */

.ct-form-card {
  background: #000000;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 40px;
}

.ct-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.ct-form-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-field label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

.req { color: rgba(255,255,255,0.4); }
.opt { color: rgba(255,255,255,0.25); font-weight: 400; }

.ct-field input,
.ct-field select,
.ct-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 13px 16px;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.ct-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.ct-field select option {
  background: #000000;
  color: #FFFFFF;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

.ct-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* Bouton submit */
.ct-submit {
  background: #FFFFFF;
  color: #000000;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.ct-submit:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}

.ct-submit:active { transform: translateY(0); }

.ct-send-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Logo rezo sosyal — SVG fill (pa stroke) */
.ct-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

/* Message de confirmation */
.ct-confirm {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 14px;
}

.ct-confirm.visible { display: flex; }

.ct-confirm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.ct-confirm-icon svg {
  width: 52px;
  height: 52px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ct-confirm h4 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

.ct-confirm p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
  line-height: 1.7;
}

.ct-confirm-back {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: rgba(255,255,255,0.6);
  font-family: Arial, sans-serif;
  font-size: 13px;
  padding: 10px 24px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s;
}

.ct-confirm-back:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .ct-header   { padding: 50px 20px 36px; }
  .contact-main { padding: 40px 20px 70px; }
  .contact-inner { grid-template-columns: 1fr; }
  .ct-form-card  { padding: 28px 22px; }
  .ct-row-2 { grid-template-columns: 1fr; }
  .ct-services-grid { grid-template-columns: 1fr; }
}
