/* ImpromptuIndian — Contact page */
:root {
  --ct-red: #A52422;
  --ct-maroon: #7F3937;
  --ct-grey: #7A7D7D;
  --ct-surface: #F7F6F4;
  --ct-border: rgba(122, 125, 125, 0.18);
}

.ct-hero {
  position: relative;
  padding: 4.5rem 1.5rem 3.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--ct-surface) 55%, rgba(165, 36, 34, 0.06) 100%);
  overflow: hidden;
}

.ct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(165, 36, 34, 0.12), transparent 45%);
  pointer-events: none;
}

.ct-hero-inner {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.ct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ct-red);
  margin-bottom: 1rem;
}

.ct-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #111;
  margin-bottom: 1rem;
}

.ct-title span {
  color: var(--ct-red);
}

.ct-lead {
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ct-grey);
}

.ct-main {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.ct-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .ct-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
    align-items: start;
  }
}

.ct-panel {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.ct-info {
  padding: 1.75rem;
}

.ct-info h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ct-info > p {
  color: var(--ct-grey);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ct-cards {
  display: grid;
  gap: 0.85rem;
}

.ct-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  background: var(--ct-surface);
  border: 1px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ct-card:hover {
  border-color: rgba(165, 36, 34, 0.2);
  transform: translateY(-1px);
}

.ct-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: rgba(165, 36, 34, 0.1);
  color: var(--ct-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ct-grey);
  margin-bottom: 0.2rem;
}

.ct-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  line-height: 1.45;
}

.ct-card-value a {
  color: inherit;
  text-decoration: none;
}

.ct-card-value a:hover {
  color: var(--ct-red);
}

.ct-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.ct-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(165, 36, 34, 0.08);
  color: var(--ct-maroon);
}

.ct-form-wrap {
  padding: 1.75rem;
}

.ct-form-wrap h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.ct-form-sub {
  color: var(--ct-grey);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.ct-form {
  display: grid;
  gap: 1rem;
}

.ct-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ct-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.ct-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.35rem;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  border: 1px solid var(--ct-border);
  border-radius: 0.65rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  color: #111;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: rgba(165, 36, 34, 0.45);
  box-shadow: 0 0 0 3px rgba(165, 36, 34, 0.12);
}

.ct-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.ct-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 0.65rem;
  background: var(--ct-red);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ct-submit:hover:not(:disabled) {
  background: var(--ct-maroon);
}

.ct-submit:active:not(:disabled) {
  transform: scale(0.99);
}

.ct-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.ct-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  min-height: 1.25rem;
}

.ct-status.is-error {
  color: #b91c1c;
}

.ct-status.is-success {
  color: #166534;
}

.ct-faq {
  margin-top: 2.5rem;
  padding: 1.75rem;
}

.ct-faq h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ct-faq-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .ct-faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ct-faq-item {
  padding: 1rem;
  border-radius: 0.85rem;
  background: var(--ct-surface);
}

.ct-faq-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.ct-faq-item p {
  font-size: 0.85rem;
  color: var(--ct-grey);
  line-height: 1.5;
}
