/* ============================================
   SMARDEIN — Contact Page Styles
   contact.css
   ============================================ */
/* Brand colours */
:root {
  --charcoal-black: #121212;
  --charcoal: #2B2B2B;
  --slate-grey: #4A4A4A;
  --gold: #C9A227;
  --gold-hover: #D4AF37;
  --gold-muted: #D9C08A;
  --ivory: #F7F5F0;
  --grey-soft: #D9D9D9;
  --gold-light: #F4D160;
  --bronze: #B8860B;
  --white: #FFFFFF;
}



body.page-contact {
  background: var(--charcoal-black);
  color: var(--ivory);
}

.ct-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.ct-glow {
  display: none;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ── LEFT TEXT ─────────────────────────────── */
.ct-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.ct-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.ct-text>p {
  color: var(--grey-soft);
  font-size: 1.01rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.ct-trust {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 44px;
}

.ct-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ivory);
}

.ct-trust-icon {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── SERVICES PILLS ─────────────────────────── */
.ct-services {
  margin-bottom: 44px;
}

.ct-services-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-soft);
  margin-bottom: 14px;
}

.ct-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ct-service-pill {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ivory);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}

.ct-service-pill:hover {
  background: rgba(201, 162, 39, 0.25);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── DIRECT CONTACT ─────────────────────────── */
.ct-direct-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-soft);
  margin-bottom: 10px;
}

.ct-direct-email {
  display: block;
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--gold-light);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.ct-direct-email:hover {
  color: var(--white);
}

.ct-direct-note {
  font-size: 0.82rem;
  color: rgba(217, 192, 138, 0.5);
}

/* ── FORM ─────────────────────────────────── */
.ct-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(217, 192, 138, 0.18);
  border-radius: 24px;
  padding: 52px 48px;
  backdrop-filter: blur(16px);
}

.ct-form-group {
  margin-bottom: 22px;
}

.ct-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-soft);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.ct-form-req {
  color: var(--color-error);
}

.ct-form-input,
.ct-form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(217, 192, 138, 0.22);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  appearance: none;
}

.ct-form-input::placeholder,
.ct-form-textarea::placeholder {
  color: rgba(217, 192, 138, 0.38);
}

.ct-form-input:focus,
.ct-form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

/* Dropdown arrow */
select.ct-form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a4aee8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

select.ct-form-input option {
  background: var(--charcoal);
  color: var(--ivory);
}

.ct-form-textarea {
  min-height: 130px;
  resize: vertical;
}

.ct-form-status {
  min-height: 20px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  border-radius: 6px;
}

.ct-form-status.success {
  color: var(--color-success);
  background: rgba(107, 227, 150, 0.08);
  padding: 10px 14px;
  border: 1px solid rgba(107, 227, 150, 0.2);
}

.ct-form-status.error {
  color: var(--color-error);
  background: rgba(255, 138, 138, 0.08);
  padding: 10px 14px;
  border: 1px solid rgba(255, 138, 138, 0.2);
}

.ct-form-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.02rem;
  justify-content: center;
}

.ct-form-note {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(217, 192, 138, 0.45);
  margin-top: 14px;
  margin-bottom: 0;
}

/* ── REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .ct-main {
    padding: 140px 0 80px;
  }
}

@media (max-width: 600px) {
  .ct-form-wrap {
    padding: 32px 24px;
  }

  .ct-text h1 {
    font-size: 2rem;
  }

  .ct-services-grid {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ── Extracted from inline styles in contact.html ── */
.ct2-1 { border-radius:4px;padding:2px; }
.ct2-2 { margin-top:16px; }
