/* ── contact.css — Contact Us Page ──────────────────── */

/* ─── Page Hero Banner ────────────────────────────── */
.ct-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/contact/Holiday Home Hero - Contact 1.png') center center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.ct-hero:hover .ct-hero-bg {
  transform: scale(1);
}

.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.40) 0%,
      rgba(0, 0, 0, 0.40) 50%);
}

.ct-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px 60px;
  color: #ffffff;
}

.ct-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Breadcrumb inside hero */
.ct-hero-breadcrumb {
  margin-top: 10px;
}

.ct-hero-breadcrumb .breadcrumb {
  justify-content: center;
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
}

.ct-hero-breadcrumb .breadcrumb-item {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.ct-hero-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.ct-hero-breadcrumb .breadcrumb-item a:hover {
  color: #E5B84B;
}

.ct-hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: '/';
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.5);
}

.ct-hero-breadcrumb .breadcrumb-item.active {
  color: #E5B84B;
  font-weight: 600;
}

/* Page */
.ct-page {
  padding: 64px 0 90px;
  background: #f5f7f6;
}

.ct-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}

/* ── Info Sidebar ── */
.ct-info {
  background: #004540;
  border-radius: 14px;
  padding: 36px 28px;
  color: #ffffff;
  position: sticky;
  top: 96px;
}

.ct-info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #E5B84B;
  margin-bottom: 12px;
}

.ct-info-intro {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 28px;
}

.ct-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ct-info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.ct-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(229, 184, 75, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E5B84B;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ct-info-list strong {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 2px;
}

.ct-info-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.ct-info-list a:hover {
  color: #E5B84B;
}

/* ── Form Wrap ── */
.ct-form-wrap {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px 40px 44px;
  box-shadow: 0 2px 14px rgba(0, 69, 64, 0.07);
}

.ct-form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #004540;
  margin-bottom: 28px;
}

/* Alerts */
.ct-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.93rem;
}

.ct-alert-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.ct-alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.ct-alert i {
  margin-top: 2px;
  flex-shrink: 0;
}

.ct-alert ul {
  margin: 0;
  padding-left: 18px;
}

/* Form fields */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2c3e50;
}

.req {
  color: #dc3545;
}

.ct-field input,
.ct-field textarea {
  border: 1.5px solid #d1dbd9;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.93rem;
  font-family: inherit;
  color: #1a2e2b;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.ct-field input:focus,
.ct-field textarea:focus {
  border-color: #004540;
  box-shadow: 0 0 0 3px rgba(0, 69, 64, 0.1);
  background: #ffffff;
}

.ct-field textarea {
  resize: vertical;
  min-height: 130px;
}

/* Submit button */
.ct-btn-submit {
  align-self: flex-start;
  background: #004540;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.ct-btn-submit:hover {
  background: #002e2a;
  transform: translateY(-1px);
}

.ct-btn-submit:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
  .ct-container {
    grid-template-columns: 1fr;
  }

  .ct-info {
    position: static;
  }

  .ct-info-card,
  .ct-form-wrap {
    text-align: center;
  }

  .ct-contact-list li {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .ct-form-wrap {
    padding: 28px 18px 32px;
  }

  .ct-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ct-submit-btn {
    width: 100%;
  }
}