/* ==========================================================================
   Sri Lanka Travel Tours — Contact Us
   ========================================================================== */

/* ---- Title — clean, no banner/photo ---- */
.ct-title {
  padding-block: 56px 24px;
}

.ct-title h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0;
  color: var(--slt-text-primary);
}

/* ---- Buttons ---- */
.ct-btn {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: var(--slt-radius-sm);
  white-space: nowrap;
  text-align: center;
}

.ct-btn--primary {
  background-color: var(--slt-action);
  color: var(--slt-white);
  border: none;
}

.ct-btn--primary:hover {
  background-color: var(--slt-action-hover);
}

/* ---- Generic section ---- */
.ct-section {
  padding-block: 72px;
}

/* ---- Contact form ---- */
.ct-form-wrap {
  max-width: 720px;
}

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

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

.ct-field {
  display: block;
}

.ct-field__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slt-text-primary);
  margin-bottom: 8px;
}

.ct-field__label em {
  font-style: normal;
  color: var(--slt-urgent);
}

.ct-field__input,
.ct-field__textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--slt-text-primary);
  background-color: var(--slt-surface);
  border: none;
  border-bottom: 1px solid var(--slt-border-strong);
  padding: 8px 2px;
}

.ct-field__textarea {
  resize: vertical;
}

.ct-field__input:focus,
.ct-field__textarea:focus {
  outline: none;
  border-color: var(--slt-action);
}

.ct-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ct-captcha {
  transition: outline-color 0.15s ease;
  outline: 2px solid transparent;
  outline-offset: 4px;
  border-radius: var(--slt-radius-sm);
  width: fit-content;
}

.ct-captcha.is-invalid {
  outline-color: var(--slt-red-400);
}

.ct-form__submit {
  cursor: pointer;
  border: none;
}

.ct-form__submit:disabled {
  opacity: 0.7;
}

.ct-form__status {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

.ct-form__status--error {
  color: var(--slt-red-400);
}

.ct-form__status--success {
  color: var(--slt-success);
}

/* ---- Contact information & map — full width, breaks out of the
   centered .slt-container on both sides ---- */
.ct-info > .slt-container {
  max-width: none;
}

.ct-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.ct-info__details h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 28px;
  color: var(--slt-text-primary);
}

.ct-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ct-info__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--slt-white);
}

.ct-info__icon svg {
  width: 24px;
  height: 24px;
}

.ct-info__list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slt-text-primary);
  margin-bottom: 4px;
}

.ct-info__list p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--slt-text-secondary);
  margin: 0;
}

.ct-info__list a {
  color: var(--slt-link);
  font-weight: 600;
}

.ct-info__list a:hover {
  text-decoration: underline;
}

.ct-info__map {
  min-height: 360px;
  border-radius: var(--slt-radius-sm);
  overflow: hidden;
}

.ct-info__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (max-width: 991.98px) {
  .ct-title h1 {
    font-size: 44px;
  }

  .ct-info__grid {
    gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .ct-field-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ct-info__grid {
    grid-template-columns: 1fr;
  }

  .ct-info__map {
    min-height: 280px;
  }
}

@media (max-width: 575.98px) {
  .ct-title h1 {
    font-size: 32px;
  }

  .ct-section {
    padding-block: 48px;
  }

  .ct-info__details h2 {
    font-size: 28px;
  }
}
