/* ═══════════════════════════════════════════════════════
   CONTACT.CSS — Smart Designs Studio
   Additive styles for the improved Contact page only.
   Does NOT override style.css, homepage.css, services.css or about.css
   ═══════════════════════════════════════════════════════ */

/* ── SHARED GHOST BUTTON ── */
.cnt-btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--gold-pale);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1.5px solid rgba(240,208,128,0.45);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
}
.cnt-btn-ghost:hover {
  background: rgba(184,134,11,0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.cnt-btn-ghost-lg { padding: 1.1rem 2.8rem; font-size: 0.78rem; }

/* ══════════════════════════════════
   1. HERO
══════════════════════════════════ */
.cnt-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding: 9rem 2rem 5rem;
  text-align: center;
}
.cnt-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 70% at 50% 40%, rgba(36,28,8,0.95) 0%, #0A0A08 65%);
}
.cnt-hero-deco {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.cnt-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.cnt-hero-label {
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.05s ease both;
}
.cnt-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.cnt-hero-title em { font-style: italic; font-weight: 600; color: var(--gold-bright); }
.cnt-hero-sub {
  font-size: 1rem;
  color: #999;
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 1.8rem;
  animation: fadeUp 0.8s 0.15s ease both;
}
.cnt-hero-services {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.cnt-hero-services span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,134,11,0.3);
  background: rgba(10,10,8,0.5);
  padding: 0.3rem 0.9rem;
  font-family: var(--font-body);
}
.cnt-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.25s ease both;
}

/* Promise strip */
.cnt-hero-promise {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.cnt-promise-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.cnt-promise-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ══════════════════════════════════
   2. WHATSAPP STRIP
══════════════════════════════════ */
.cnt-wa-strip {
  background: #1A1200;
  border-top: 1px solid rgba(184,134,11,0.2);
  border-bottom: 1px solid rgba(184,134,11,0.2);
  padding: 1.8rem 2rem;
}
.cnt-wa-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cnt-wa-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 260px;
}
.cnt-wa-icon {
  width: 44px;
  height: 44px;
  color: #25D366;
  flex-shrink: 0;
}
.cnt-wa-left h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.cnt-wa-left p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.cnt-wa-btn {
  display: inline-block;
  background: #25D366;
  color: #0A0A08;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.cnt-wa-btn:hover { background: #20BD5A; transform: translateY(-2px); }

/* ══════════════════════════════════
   3. FORM + INFO SECTION
══════════════════════════════════ */
.cnt-form-section { background: var(--white); }

.cnt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

/* Info column */
.cnt-info-col { position: sticky; top: 6rem; }
.cnt-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--ink);
  margin: 0.8rem 0;
  line-height: 1.2;
}
.cnt-info-title em { font-style: italic; color: var(--gold-bright); font-weight: 600; }
.cnt-info-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* Contact cards */
.cnt-contact-cards { display: flex; flex-direction: column; gap: 2px; margin-bottom: 1.5rem; }
.cnt-contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--cream);
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
}
.cnt-contact-card:hover { border-color: var(--gold); background: #F0EAD8; }
.cnt-card-wa { border-left-color: rgba(37,211,102,0.4); }
.cnt-card-wa:hover { border-left-color: #25D366; background: #F0FAED; }
.cnt-card-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.cnt-card-icon svg { width: 22px; height: 22px; }
.cnt-card-wa .cnt-card-icon { color: #25D366; }
.cnt-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}
.cnt-card-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
}
.cnt-card-value {
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cnt-card-note {
  font-size: 0.7rem;
  color: var(--muted);
}
.cnt-card-arrow {
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.cnt-contact-card:hover .cnt-card-arrow { opacity: 1; transform: translateX(3px); }

/* Address card */
.cnt-address-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.5rem;
  background: var(--cream);
  margin-bottom: 1.5rem;
}
.cnt-address-card svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 0.1rem; }
.cnt-address-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 0.3rem;
}

/* Info quote */
.cnt-info-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--cream);
}
.cnt-info-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.7;
}

/* Form column */
.cnt-form-header { margin-bottom: 2rem; }
.cnt-form-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
  margin: 0.5rem 0;
}
.cnt-form-header h3 em { font-style: italic; color: var(--gold-bright); }
.cnt-form-header p { font-size: 0.85rem; color: var(--muted); line-height: 1.85; }

/* Form itself */
.cnt-form { display: flex; flex-direction: column; gap: 1.4rem; }
.cnt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.cnt-field { display: flex; flex-direction: column; gap: 0.4rem; }
.cnt-field label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.cnt-field input,
.cnt-field textarea {
  background: var(--cream);
  border: 1.5px solid rgba(184,134,11,0.2);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  width: 100%;
}
.cnt-field input:focus,
.cnt-field textarea:focus {
  border-color: var(--gold);
  background: #FDFAF3;
  box-shadow: 0 0 0 3px rgba(184,134,11,0.08);
}
.cnt-field input::placeholder,
.cnt-field textarea::placeholder { color: #B0A898; font-size: 0.85rem; }
.cnt-field textarea { resize: vertical; min-height: 120px; }

/* Select wrapper */
.cnt-select-wrap { position: relative; }
.cnt-select-wrap select {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid rgba(184,134,11,0.2);
  padding: 0.9rem 2.5rem 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.cnt-select-wrap select:focus {
  border-color: var(--gold);
  background: #FDFAF3;
  box-shadow: 0 0 0 3px rgba(184,134,11,0.08);
}
.cnt-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  pointer-events: none;
}

/* Submit button */
.cnt-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.cnt-submit-btn svg { width: 18px; height: 18px; }
.cnt-submit-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,134,11,0.25);
}
.cnt-form-note {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}
.cnt-form-note a { color: var(--gold); }

/* Success state */
.cnt-form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cream);
  border: 1px solid rgba(184,134,11,0.2);
}
.cnt-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}
.cnt-success-icon svg { width: 100%; height: 100%; }
.cnt-form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.cnt-form-success p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
}
.cnt-form-success a { color: var(--gold); }

/* ══════════════════════════════════
   5. WHY CONTACT US
══════════════════════════════════ */
.cnt-why-section { background: var(--ink); }
.cnt-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.cnt-why-card {
  background: #161410;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.35s, background 0.35s, transform 0.3s;
}
.cnt-why-card:hover { border-color: var(--gold); background: #1C1914; transform: translateY(-4px); }
.cnt-why-icon {
  width: 52px; height: 52px;
  background: rgba(184,134,11,0.07);
  border: 1px solid rgba(184,134,11,0.18);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s;
}
.cnt-why-card:hover .cnt-why-icon { background: rgba(184,134,11,0.15); }
.cnt-why-icon svg { width: 30px; height: 30px; }
.cnt-why-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--cream); line-height: 1.2; }
.cnt-why-card p { font-size: 0.85rem; color: #888; line-height: 1.9; }

/* ══════════════════════════════════
   6. PROCESS STEPS
══════════════════════════════════ */
.cnt-process-section { background: var(--cream); }
.cnt-process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.cnt-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  flex: 1;
  min-width: 160px;
  position: relative;
}
.cnt-proc-circle {
  width: 76px; height: 76px;
  background: var(--white);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: background 0.35s, border-color 0.35s, transform 0.3s;
}
.cnt-proc-step:hover .cnt-proc-circle { background: var(--ink); border-color: var(--gold); transform: scale(1.08); }
.cnt-proc-circle svg { width: 42px; height: 42px; }
.cnt-proc-connector {
  position: absolute;
  top: 38px;
  left: calc(50% + 38px);
  width: calc(100% - 76px);
  height: 1px;
  background: linear-gradient(to right, rgba(184,134,11,0.3), rgba(184,134,11,0.1));
  z-index: 1;
}
.cnt-proc-step:last-child .cnt-proc-connector { display: none; }
.cnt-proc-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184,134,11,0.12);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.cnt-proc-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.cnt-proc-step p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 160px;
  margin: 0 auto 0.8rem;
}
.cnt-proc-time {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,134,11,0.08);
  border: 1px solid rgba(184,134,11,0.2);
  padding: 0.25rem 0.7rem;
}

/* ══════════════════════════════════
   7. FAQ
══════════════════════════════════ */
.cnt-faq-section { background: var(--ink); }
.cnt-faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cnt-faq-item { background: #161410; border-left: 3px solid transparent; transition: border-color 0.3s; }
.cnt-faq-item.open { border-color: var(--gold); }
.cnt-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s;
}
.cnt-faq-q:hover { color: var(--gold); }
.cnt-faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-family: var(--font-body);
  line-height: 1;
}
.cnt-faq-item.open .cnt-faq-icon { transform: rotate(45deg); }
.cnt-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.cnt-faq-item.open .cnt-faq-a { max-height: 600px; }
.cnt-faq-body { padding: 0 2rem 1.5rem; font-size: 0.88rem; color: #888; line-height: 1.9; }

/* ══════════════════════════════════
   8. FINAL CTA
══════════════════════════════════ */
.cnt-final-cta {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  background: var(--dark, #111110);
  overflow: hidden;
}
.cnt-final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(184,134,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cnt-final-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cnt-final-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.cnt-final-cta-inner h2 em { font-style: italic; color: var(--gold-bright); font-weight: 600; }
.cnt-final-cta-inner p { font-size: 0.95rem; color: #999; line-height: 1.9; margin-bottom: 2.5rem; }
.cnt-final-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cnt-final-note { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; margin-top: 1.5rem; }

/* ══════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .cnt-hero { padding: 8rem 1.5rem 4rem; min-height: auto; }
  .cnt-form-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cnt-info-col { position: static; }
  .cnt-why-grid { grid-template-columns: repeat(2, 1fr); }
  .cnt-process-steps { gap: 2rem; }
  .cnt-proc-connector { display: none; }
  .cnt-wa-inner { flex-direction: column; align-items: flex-start; }
  .cnt-wa-btn { width: 100%; text-align: center; }
}

@media (max-width: 600px) {
  .cnt-hero-title { font-size: 2.4rem; }
  .cnt-hero-cta { flex-direction: column; align-items: center; }
  .cnt-hero-promise { gap: 1rem; flex-direction: column; }
  .cnt-form-row { grid-template-columns: 1fr; gap: 1.2rem; }
  .cnt-why-grid { grid-template-columns: 1fr; }
  .cnt-final-btns { flex-direction: column; align-items: center; }
  .cnt-faq-q { padding: 1.2rem 1.2rem; font-size: 0.92rem; }
  .cnt-faq-body { padding: 0 1.2rem 1.2rem; }
  .cnt-proc-step { min-width: 140px; padding: 0 1rem; }
  .cnt-final-cta { padding: 4rem 1.5rem; }
  .cnt-hero-services span { font-size: 0.55rem; padding: 0.25rem 0.6rem; }
}

/* ══════════════════════════════════
   WHATSAPP FLOAT — position fix
   Ensures button stays bottom-right
   on this page (matches homepage)
══════════════════════════════════ */

@media(max-width:600px){
  
}

/* ══════════════════════════════════
   WHATSAPP FLOAT — full correct fix
   Matches homepage style exactly
══════════════════════════════════ */
.wa-float {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  left: auto !important;
  width: 58px !important;
  height: 58px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.3) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  overflow: visible !important;
  text-decoration: none !important;
}
.wa-float svg {
  width: 30px !important;
  height: 30px !important;
  fill: white !important;
  flex-shrink: 0 !important;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 4px 16px rgba(0,0,0,0.3) !important;
}
.wa-tooltip {
  position: absolute !important;
  right: 68px !important;
  left: auto !important;
  background: #1A1710 !important;
  color: #F8F4EC !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em !important;
  padding: 0.4rem 0.8rem !important;
  white-space: nowrap !important;
  border: 1px solid rgba(184,134,11,0.2) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.wa-float:hover .wa-tooltip { opacity: 1 !important; }
.wa-float::before {
  content: '' !important;
  position: absolute !important;
  inset: -4px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(37,211,102,0.4) !important;
  animation: waPulse 2.5s infinite !important;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media(max-width:600px){
  .wa-float { bottom: 1.2rem !important; right: 1.2rem !important; width: 52px !important; height: 52px !important; }
  .wa-tooltip { display: none !important; }
}

/* ══════════════════════════════════════
   FIX: Section titles visible on dark backgrounds
   ══════════════════════════════════════ */
.cnt-why-section .section-title,
.cnt-why-section .section-sub,
.cnt-why-section .section-label,
.cnt-faq-section .section-title,
.cnt-faq-section .section-sub,
.cnt-faq-section .section-label,
.hero .section-title,
.hero .section-sub,
.hero .section-label {
  color: var(--cream, #F8F4EC);
}

/* Catch-all: any section-title directly inside a dark section */
section[style*="background"] .section-title,
section[style*="background"] .section-sub,
section[style*="background"] .section-label {
  color: var(--cream, #F8F4EC);
}
