/* ============================================================
   RESINFY — Contact Page Styles
   contact.css
   ============================================================ */

/* ── Page wrapper ──────────────────────────────────────────── */
.cp-main {
  min-height: 100vh;
  background: var(--bg, #f4ede0);
}

/* ================================================================
   HERO BANNER
   ================================================================ */
.cp-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 60px 90px;
  background: var(--bg, #f4ede0);
  text-align: center;
}

.cp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat 10s ease-in-out infinite;
}
.cp-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(160,120,64,0.1), transparent 65%);
  top: -20%; left: -10%;
}
.cp-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.1), transparent 65%);
  bottom: -10%; right: 5%;
  animation-delay: -4s;
}

.cp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.cp-hero-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text, #1e150a);
  margin: 12px 0 20px;
}
.cp-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent, #a07840);
}
.cp-hero-sub {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted, #7a6650);
  line-height: 1.8;
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto;
}

.cp-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.cp-hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted, #7a6650);
}
.cp-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent, #a07840), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ================================================================
   QUICK CONTACT STRIP
   ================================================================ */
.cp-quick-strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--brown, #2c1f0f);
  border-top: 1px solid rgba(160,120,64,0.15);
  border-bottom: 1px solid rgba(160,120,64,0.15);
}

.cp-quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 40px;
  text-decoration: none;
  transition: background 0.3s;
  flex: 1;
  justify-content: center;
}
.cp-quick-item:hover {
  background: rgba(160,120,64,0.08);
}

.cp-quick-divider {
  width: 1px;
  background: rgba(201,169,110,0.15);
  align-self: stretch;
}

.cp-quick-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  opacity: 0.85;
}
.cp-quick-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cp-quick-label {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.55);
  font-weight: 400;
}
.cp-quick-val {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--accent-2, #c9a96e);
  letter-spacing: 0.02em;
}

/* ================================================================
   MAIN SECTION — FORM + INFO
   ================================================================ */
.cp-section {
  padding: 100px 60px;
  max-width: 1320px;
  margin: 0 auto;
}

.cp-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: start;
}

/* ── Form Column ─────────────────────────────────────────── */
.cp-form-col { }

.cp-col-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--text, #1e150a);
  margin: 10px 0 12px;
  line-height: 1.2;
}
.cp-col-title em { font-style: italic; font-weight: 400; color: var(--accent, #a07840); }
.cp-col-sub {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted, #7a6650);
  line-height: 1.8;
  margin-bottom: 36px;
}

.cp-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.cp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cp-field-full { grid-column: 1 / -1; }

.cp-field label {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted, #7a6650);
}

.cp-field input,
.cp-field select,
.cp-field textarea {
  padding: 12px 16px;
  background: var(--bg-card, #faf6ef);
  border: 1px solid rgba(44,31,15,0.1);
  border-radius: 2px;
  color: var(--text, #1e150a);
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  resize: none;
}
.cp-field input::placeholder,
.cp-field textarea::placeholder { color: var(--text-light, #b5a08a); }
.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
  border-color: var(--accent, #a07840);
  background: #fff;
}
.cp-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6650' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.cp-field select option { background: var(--bg-card, #faf6ef); }

/* Budget pills */
.cp-budget-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.cp-budget-pill {
  padding: 7px 18px;
  border: 1px solid rgba(44,31,15,0.1);
  border-radius: 2px;
  background: transparent;
  color: var(--text-muted, #7a6650);
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.78rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.25s;
}
.cp-budget-pill:hover,
.cp-budget-pill.active {
  background: var(--brown, #2c1f0f);
  border-color: var(--brown, #2c1f0f);
  color: var(--accent-2, #c9a96e);
}

/* Upload zone */
.cp-upload-zone {
  position: relative;
  border: 1px dashed rgba(160,120,64,0.3);
  border-radius: 4px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  background: var(--bg-card, #faf6ef);
}
.cp-upload-zone:hover {
  border-color: var(--accent, #a07840);
  background: rgba(160,120,64,0.03);
}
.cp-upload-zone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
}
.cp-upload-icon { font-size: 1.5rem; flex-shrink: 0; opacity: 0.5; }
.cp-upload-text {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.82rem;
  color: var(--text-muted, #7a6650);
  line-height: 1.5;
}
.cp-upload-text small { font-size: 0.72rem; opacity: 0.65; }
.cp-upload-name {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--accent, #a07840);
  font-style: italic;
  flex-shrink: 0;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Error & Success */
.cp-form-error {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.78rem;
  color: #9b3a3a;
}
.cp-form-error.hidden { display: none; }

.cp-form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(74,124,89,0.07);
  border: 1px solid rgba(74,124,89,0.18);
  border-radius: 4px;
  padding: 16px 18px;
}
.cp-form-success.hidden { display: none; }
.cp-success-icon {
  font-size: 1.2rem;
  color: #4a7c59;
  flex-shrink: 0;
  margin-top: 2px;
}
.cp-form-success strong {
  display: block;
  font-size: 0.9rem;
  color: #3a6b47;
  margin-bottom: 3px;
  font-weight: 500;
}
.cp-form-success p {
  font-size: 0.8rem;
  color: #4a7c59;
  font-style: italic;
  margin: 0;
}

.cp-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}

/* ── Info Column ─────────────────────────────────────────── */
.cp-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.cp-info-card {
  background: var(--bg-card, #faf6ef);
  border: 1px solid rgba(44,31,15,0.08);
  border-radius: 4px;
  padding: 28px 26px;
}

.cp-info-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text, #1e150a);
  margin: 8px 0 22px;
}

.cp-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cp-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cp-info-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}
.cp-info-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cp-info-item strong {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted, #7a6650);
  font-weight: 400;
  display: block;
}
.cp-info-item span {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.88rem;
  color: var(--text, #1e150a);
  font-weight: 300;
  line-height: 1.5;
}

/* Map */
.cp-map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(44,31,15,0.08);
  box-shadow: 0 4px 20px rgba(44,31,15,0.06);
}
.cp-map-wrap iframe { display: block; }

/* Social Grid */
.cp-social-card {
  background: var(--bg-card, #faf6ef);
  border: 1px solid rgba(44,31,15,0.08);
  border-radius: 4px;
  padding: 22px 24px;
}
.cp-social-title {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted, #7a6650);
  margin-bottom: 14px;
  font-weight: 400;
}
.cp-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cp-social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  border: 1px solid rgba(44,31,15,0.08);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  background: var(--bg, #f4ede0);
}
.cp-social-btn:hover {
  border-color: var(--accent, #a07840);
  background: rgba(160,120,64,0.04);
  transform: translateY(-2px);
}
.cp-social-wa:hover {
  border-color: #4a7c59;
  background: rgba(74,124,89,0.05);
}
.cp-soc-icon { font-size: 1.2rem; }
.cp-social-btn span:nth-child(2) {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text, #1e150a);
}
.cp-soc-handle {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.68rem;
  color: var(--text-muted, #7a6650);
  font-style: italic;
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.cp-faq-section {
  background: var(--bg-2, #ede4d3);
  border-top: 1px solid rgba(44,31,15,0.07);
  border-bottom: 1px solid rgba(44,31,15,0.07);
  padding: 100px 60px;
}

.cp-faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cp-faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.cp-faq-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--text, #1e150a);
  margin: 10px 0 12px;
  line-height: 1.2;
}
.cp-faq-title em { font-style: italic; font-weight: 400; color: var(--accent, #a07840); }
.cp-faq-sub {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted, #7a6650);
}

.cp-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(44,31,15,0.08);
}

.cp-faq-item {
  border-bottom: 1px solid rgba(44,31,15,0.08);
  overflow: hidden;
}

.cp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text, #1e150a);
  cursor: pointer;
  transition: color 0.2s;
}
.cp-faq-q:hover { color: var(--accent, #a07840); }

.cp-faq-arrow {
  font-size: 1.1rem;
  color: var(--accent, #a07840);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
  display: inline-block;
  line-height: 1;
}
.cp-faq-item.open .cp-faq-arrow {
  transform: rotate(180deg);
}

.cp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25,0.8,0.25,1), padding 0.3s;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted, #7a6650);
  line-height: 1.85;
  padding: 0 4px;
}
.cp-faq-item.open .cp-faq-a {
  max-height: 200px;
  padding: 0 4px 22px;
}

/* ================================================================
   WHATSAPP CTA BANNER
   ================================================================ */
.cp-wa-banner {
  background: var(--brown, #2c1f0f);
  padding: 80px 60px;
}
.cp-wa-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cp-wa-text { flex: 1; min-width: 240px; }
.cp-wa-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--bg, #f4ede0);
  margin-bottom: 12px;
}
.cp-wa-sub {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(244,237,224,0.55);
  line-height: 1.8;
}
.cp-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: #4a7c59;
  border: 1px solid rgba(74,124,89,0.4);
  border-radius: 2px;
  color: #fff;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.cp-wa-btn:hover {
  background: #3a6b47;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,124,89,0.3);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .cp-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cp-info-col { position: static; }
  .cp-social-grid { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 768px) {
  .cp-hero { padding: 120px 22px 70px; min-height: 44vh; }
  .cp-quick-strip { flex-direction: column; }
  .cp-quick-item { padding: 18px 24px; justify-content: flex-start; }
  .cp-quick-divider { width: 100%; height: 1px; }
  .cp-section { padding: 70px 22px; }
  .cp-form-row { grid-template-columns: 1fr; }
  .cp-faq-section { padding: 70px 22px; }
  .cp-wa-banner { padding: 60px 22px; }
  .cp-wa-inner { flex-direction: column; text-align: center; }
  .cp-wa-btn { width: 100%; justify-content: center; }
  .cp-social-grid { grid-template-columns: 1fr 1fr; }
  .cp-budget-pills { gap: 7px; }
  .cp-budget-pill { font-size: 0.72rem; padding: 6px 13px; }
}

@media (max-width: 480px) {
  .cp-hero-title { font-size: 2.2rem; }
  .cp-social-grid { grid-template-columns: 1fr 1fr; }
}
