/* Contact = About hero ke EXACT size & style */
.contact-hero-1 {
  position: relative;
  background: url('SPAC-Contact-Us-Top-Banner.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  height: 40vh;
  z-index: 0;
   display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center for the block */
  flex-direction: column;  /* h1 & p stacked */
}

/* Overlay (same strength as about) */
.contact-hero-1::before {
  content: "";
  position: absolute;
  inset: 0;
 
  z-index: -1;       /* keeps text above overlay (same as about) */
}

/* Text above overlay (same) */
.contact-hero-1 * {
  position: relative;
  z-index: 1;
}

/* Headings & paragraph – identical scale & animation */
.contact-hero-1 h1{
  font-size:3rem;
  margin-bottom:1rem;
  animation:fadeInUp 1s ease;
  color: #ffffff;
}
.contact-hero-1 p{
  font-size:1.2rem;
  max-width:700px;
  margin:0 auto;
  animation:fadeInUp 1s ease .2s both;
  color: #ffffff;
}

/* Animation (reuse) */
@keyframes fadeInUp{
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive breakpoints – EXACT same as about */
@media (max-width: 768px){
  .contact-hero-1{ padding: 56px 0; }
  .contact-hero-1 h1{ font-size: 2.2rem; }
  .contact-hero-1 p { font-size: 1.05rem; }
}
@media (max-width: 480px){
  .contact-hero-1{ padding: 48px 0; }
  .contact-hero-1 h1{ font-size: 1.9rem; }
  .contact-hero-1 p { font-size: 1rem; }
}
/* common scetion */
/* --- Slightly smaller than medium (compact & responsive) --- */
/* container a bit narrow, centered */
.contact-section-common .section-header{
  text-align: center;
}
.contact-section-common{
  max-width: 1100px;      /* adjust if you want wider/narrower */
  margin: 0 auto;
  padding: 30px 16px;
  background: #f9fafb;    /* optional, matches screenshot vibe */
}

/* 4 equal cards in a single row */
.contact-section-common .cards-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* card look (uses your existing classes) */
.contact-section-common .contact-card{
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.contact-section-common .contact-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* icon, title, text */
.contact-section-common .card-icon{ font-size: 38px; margin-bottom: 14px; }
.contact-section-common .card-title{ font-size: 1.1rem; font-weight: 700; color:#2d3748; margin-bottom: 10px; }
.contact-section-common .card-content{ color:#6b7280; line-height:1.6; font-size:.95rem; margin:0; }

/* responsive: 2 per row on tablet, 1 on mobile */
@media (max-width: 1024px){
  .contact-section-common .cards-row{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .contact-section-common .cards-row{ grid-template-columns: 1fr; }
  .contact-section-common .contact-card{ min-height: 200px; }
}



/* section2 */
/* ========== FurnP — Free Design Consultation (CSS) ========== */
:root {
  --furnp-bg: #0f1115;             /* page background (dark-neutral) */
  --furnp-card: #161a22;           /* card surface */
  --furnp-text: #e9edf3;           /* primary text */
  --furnp-muted: #a6b0c3;          /* secondary text */
  --furnp-accent: #7c5cff;         /* brand accent */
  --furnp-accent-2: #22d3ee;       /* secondary accent for subtle glow */
  --furnp-border: #283041;         /* soft border */
  --furnp-success: #10b981;        /* success green */
  --furnp-radius: 18px;
  --furnp-radius-sm: 12px;
  --furnp-shadow: 0 10px 30px rgba(0,0,0,0.35);
  --furnp-shadow-soft: 0 6px 18px rgba(0,0,0,0.25);
  --furnp-focus: 0 0 0 3px rgba(124,92,255,0.35), 0 0 25px rgba(34,211,238,0.15) inset;
}

/* Reduce motion for sensitive users */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- Section Wrapper ---------- */
.furnp-consult {
  max-width: 980px;
  margin: clamp(32px, 6vw, 64px) auto;
  padding: clamp(20px, 3.5vw, 36px);
  background: linear-gradient(180deg, rgba(124,92,255,0.08), rgba(34,211,238,0.06)) padding-box,
              linear-gradient(130deg, rgba(124,92,255,0.45), rgba(34,211,238,0.35)) border-box;
  border: 1px solid transparent;
  border-radius: var(--furnp-radius);
  box-shadow: var(--furnp-shadow);
  position: relative;
  overflow: clip;
  color: var(--furnp-text);
}

/* Decorative glow */
.furnp-consult::after {
  content: "";
  position: absolute;
  inset: -25% -35% auto auto;
  width: 420px; height: 420px;
  background: radial-gradient(closest-side, rgba(124,92,255,0.12), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  transform: translate3d(0,0,0);
}

/* ---------- Headings & Subtext ---------- */
.furnp-consult-heading {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.15;
  margin: 0 0 10px 0;
  letter-spacing: 0.2px;
  font-weight: 700;
}

.furnp-consult-subtext {
  margin: 0 0 22px 0;
  color: black;
  font-size: clamp(0.96rem, 1.6vw, 1.05rem);
}

/* ---------- Form Card ---------- */
.furnp-consult-form {
  background: var(--furnp-card);
  border: 1px solid var(--furnp-border);
  border-radius: var(--furnp-radius);
  padding: clamp(18px, 3.2vw, 28px);
  display: grid;
  gap: 20px;
  box-shadow: var(--furnp-shadow-soft);
}

/* ---------- Mode (radio pills) ---------- */
.furnp-mode {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.furnp-mode label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #121621;
  border: 1px solid var(--furnp-border);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  user-select: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.furnp-mode label:hover {
  transform: translateY(-1px);
  border-color: rgba(124,92,255,0.6);
}

.furnp-mode input[type="radio"] {
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--furnp-muted);
  display: inline-block;
  position: relative;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.furnp-mode input[type="radio"]:checked {
  border-color: var(--furnp-accent);
  box-shadow: 0 0 0 3px rgba(124,92,255,0.25);
}

.furnp-mode input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--furnp-accent), var(--furnp-accent-2));
}

/* ---------- Date & Time Grid ---------- */
.furnp-datetime {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.furnp-datetime > div {
  display: grid;
  gap: 8px;
}

/* ---------- Labels ---------- */
.furnp-consult-form label {
  font-size: 0.95rem;
  color: var(--furnp-muted);
}

/* ---------- Inputs / Selects ---------- */
.furnp-consult-form input[type="date"],
.furnp-consult-form select {
  width: 100%;
  background: #0f1420;
  color: var(--furnp-text);
  border: 1px solid var(--furnp-border);
  border-radius: var(--furnp-radius-sm);
  padding: 12px 14px;
  font-size: 0.98rem;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease, transform .08s ease;
}

.furnp-consult-form input[type="date"]:hover,
.furnp-consult-form select:hover {
  border-color: rgba(124,92,255,0.5);
}

.furnp-consult-form input[type="date"]:focus,
.furnp-consult-form select:focus {
  border-color: var(--furnp-accent);
  box-shadow: var(--furnp-focus);
}

/* Remove default arrow style inconsistency */
.furnp-consult-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--furnp-text) 50%),
    linear-gradient(135deg, var(--furnp-text) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 18px) calc(1em + 2px),
    calc(100% - 13px) calc(1em + 2px),
    calc(100% - 2.4rem) 50%;
  background-size: 6px 6px, 6px 6px, 1px 60%;
  background-repeat: no-repeat;
}

/* ---------- Preference ---------- */
.furnp-pref {
  display: grid;
  gap: 8px;
}

/* ---------- Submit Button ---------- */
.furnp-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 40px; /* center horizontally with top space */
}

.furnp-btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;   /* kam padding = narrow width */
  font-weight: 600;
  font-size: 0.95rem;   /* slightly smaller text */
  letter-spacing: 0.3px;
  color: #fff;
  background: black;
  box-shadow: 0 8px 16px rgba(124,92,255,0.25), inset 0 -2px 6px rgba(0,0,0,0.25);
  transition: transform .16s ease, box-shadow .2s ease, filter .2s ease;
}

.furnp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(124,92,255,0.28);
  filter: brightness(1.03);
}

.furnp-btn:active {
  transform: translateY(0);
}


/* [hidden] should be respected across browsers */
[hidden] { display: none !important; }

/* ---------- Small helpers for invalid fields ---------- */
.furnp-consult-form :is(input, select):user-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .furnp-consult { padding: 18px; }
  .furnp-datetime { grid-template-columns: 1fr; }
  .furnp-btn { width: 100%; justify-self: stretch; text-align: center; }
}

@media (max-width: 520px) {
  .furnp-mode { gap: 10px; }
  .furnp-mode label { padding: 9px 12px; }
  .furnp-consult { border-radius: 14px; }
}

/* ---------- Optional: Light mode support ---------- */
@media (prefers-color-scheme: light) {
  :root {
    --furnp-bg: #f6f8fc;
    --furnp-card: #ffffff;
    --furnp-text: #0f1220;
    --furnp-muted: #5b667a;
    --furnp-border: #e6e8ee;
  }
  .furnp-consult { background: linear-gradient(180deg, rgba(124,92,255,0.06), rgba(34,211,238,0.06)) padding-box,
                             linear-gradient(130deg, rgba(124,92,255,0.25), rgba(34,211,238,0.22)) border-box; }
  .furnp-consult-form { box-shadow: 0 8px 26px rgba(15,18,32,0.08); }
  .furnp-consult-form input[type="date"],
  .furnp-consult-form select { background: #f7f9ff; }
}



/* ========== Contact · Info Cards — PNG/JPG Icons ========== */
 .fc-contact{ padding: 48px 16px; background: linear-gradient(180deg,#fafafa, #f3f6fb); }
  .fc-contact__container{ max-width: 1000px; margin: 0 auto; }
  .fc-contact__header h2{ font-size: clamp(24px, 2.4vw, 34px); margin: 0 0 8px; }
  .fc-contact__header p{ color: var(--fc-muted); margin: 0 0 24px; }

  .fc-form{
    background: var(--fc-card);
    border: 1px solid var(--fc-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(2,6,23,.06);
  }

  .fc-grid{
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  @media (max-width: 720px){
    .fc-grid{ grid-template-columns: 1fr; }
  }

 .fc-field{ display: flex; flex-direction: column; gap: 8px; }
.fc-field label{ font-weight: 600; }
.fc-field input[type="text"],
.fc-field input[type="tel"],
.fc-field input[type="email"],
.fc-field input[type="date"],
.fc-field input[type="time"],
.fc-field select,
.fc-field textarea{ appearance: none; border: 1px solid var(--fc-border); border-radius: 12px; padding: 12px 14px; outline: none; font: inherit; background: #fff; transition: box-shadow .2s ease, border-color .2s ease; }

.fc-input-row{ display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.fc-input-row input[type="tel"]{ flex: 1; min-width: 200px; }
.fc-check{ display: flex; align-items: center; gap: 6px; white-space: nowrap; }

@media(max-width: 640px){
  .fc-input-row{ flex-direction: column; align-items: stretch; gap: 10px; }
  .fc-input-row input[type="tel"]{ min-width: 100%; }
  .fc-check{ align-self: flex-start; }


  
}
  .fc-field textarea{ resize: vertical; }
  .fc-field input:focus,
  .fc-field select:focus,
  .fc-field textarea:focus{ box-shadow: var(--fc-focus); border-color: #cbd5e1; }

  .fc-input-row{ display: flex; gap: 10px; align-items: center; }
  .fc-check{ display: inline-flex; align-items: center; gap: 8px; user-select: none; cursor: pointer; }
  .fc-check input{ width: 18px; height: 18px; }

  .fc-consent{ margin: 10px 0 0; }

  .fc-dropzone{
    border: 1.5px dashed #cbd5e1;
    padding: 16px;
    border-radius: 12px;
    background: #fafcff;
  }
  .fc-dropzone__hint{ margin: 0 0 6px; color: var(--fc-muted); }
  .fc-previews{ display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; margin-top: 10px; }
  @media (max-width: 720px){
    .fc-previews{ grid-template-columns: repeat(3,1fr); }
  }
  .fc-thumb{
    position: relative; border: 1px solid var(--fc-border); border-radius: 10px; overflow: hidden; background: #fff;
  }
  .fc-thumb img, .fc-thumb .fc-file{
    width: 100%; height: 74px; object-fit: cover; display: block;
  }
  .fc-remove{
    position: absolute; top: 4px; right: 4px;
    background: #111827; color: #fff; border: none; border-radius: 8px;
    font-size: 11px; padding: 4px 6px; cursor: pointer;
    opacity: .9;
  }

  .fc-actions{ display: flex; gap: 12px; align-items: center; margin-top: 14px; }
  .fc-btn{
    background:black; color: #ffff;
    border: 1.5px solid #444;  border-radius: 12px; padding: 12px 16px; cursor: pointer; font-weight: 600;
    transition: transform .1s ease, opacity .2s ease;
  }
  .fc-btn:hover{ opacity: .95; }
  .fc-btn:active{ transform: translateY(1px); }
  .fc-btn--link{ background-color: blue; color: #ffffff; padding: 2.5px; border-radius: 8px; }
  .fc-btn[disabled]{ opacity: .6; cursor: not-allowed; }

  .fc-note{ color: var(--fc-muted); font-size: 14px; }

  .fc-error{ color: #b91c1c; min-height: 16px; }
  .fc-help{ color: var(--fc-muted); display:block; margin-top:-4px; }

  .fc-honeypot{ position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

  .fc-toast{
    position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
    background: #111827; color: #fff; padding: 10px 14px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2,6,23,.25); opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .fc-toast.is-visible{ opacity: 1; pointer-events: auto; transform: translate(-50%, -4px); }
  /* ✅ Mobile fix: checkbox left + text wraps to the right */
@media (max-width: 640px){
  .fc-check{
    display: flex;
    align-items: center;     /* vertically center checkbox with first line */
    gap: 8px;
    flex-wrap: nowrap;       /* keep input + span on the same row */
    width: 100%;
  }
  .fc-check input{
    flex: 0 0 auto;          /* don't stretch the box */
    margin: 0;               /* remove top offset */
  }
  .fc-check span{
    display: block;
    flex: 1 1 auto;          /* let text take remaining width */
    white-space: normal;     /* allow wrapping of the text */
    line-height: 1.4;
    font-size: 10px;
  }
}


/* ===================== Styles: Contact · Map Tabs ===================== */
:root{
  --ink:#111827; --muted:#6b7280; --line:#e5e7eb; --bg:#ffffff;
  --walnut:#8b5e34; --walnut-2:#c49864; --ring:rgba(196,152,100,.35);
}
.contact-map-tabs{ background:#fff; padding:42px 0 56px; color:var(--ink); font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif }
.cmt-container{ width:min(1180px,92%); margin-inline:auto }
.cmt-head{ text-align:center; margin-bottom:18px }
.cmt-head h2{ margin:0 0 6px; font-size:clamp(26px,3.2vw,36px); font-weight:900; letter-spacing:.2px }
.cmt-head p{ margin:0; color:var(--muted) }

.cmt-media{ display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:stretch }
.cmt-photo{ height:100% }
.cmt-photo img{ width:100%; height:100%; object-fit:cover; display:block; border-radius:12px }
.cmt-mapwrap{ position:relative; width:100%; height:100%; min-height:350px; border-radius:12px; overflow:hidden }
.cmt-map{ position:absolute; top:0; left:0; width:100%; height:100%; border:0 }

@media(max-width:768px){
  .cmt-media{ grid-template-columns:1fr; gap:20px }
  .cmt-mapwrap{ min-height:350px }
}
/* Tabs */
.cmt-tabs{ display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-bottom:14px }
.cmt-tab{
  appearance:none; border:1px solid var(--line); background:#fff; color:#374151; cursor:pointer;
  padding:8px 14px; border-radius:999px; font-weight:900; font-size:14px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.cmt-tab:hover{ transform:translateY(-1px) }
.cmt-tab.is-active{
  border-color:var(--walnut-2);
  box-shadow:0 6px 16px rgba(139,94,52,.18), 0 0 0 4px var(--ring);
}

/* Layout */
.cmt-panels{ margin-top:8px }
.cmt-panel{
  display:grid; grid-template-columns:1.05fr .95fr; gap:16px; align-items:stretch;
  border:1px solid var(--line); border-radius:18px; padding:16px; background:#fff;
  box-shadow:0 12px 28px rgba(0,0,0,.06);
}
.cmt-panel:not(.is-active){ display:none }
@media (max-width:950px){ .cmt-panel{ grid-template-columns:1fr } }

/* Info */
.cmt-info h3{ margin:6px 0 8px; font-size:18px; font-weight:900 }
.cmt-list{ list-style:none; margin:0 0 10px; padding:0; display:grid; gap:6px; color:#374151; font-size:14px }
.cmt-list a{ color:var(--walnut); font-weight:800; text-decoration:none }
.cmt-list a:hover{ text-decoration:underline }
.cmt-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:8px }
.cmt-btn{
  display:inline-flex; align-items:center; gap:8px; padding:10px 14px; border-radius:12px; font-weight:900; text-decoration:none; border:1px solid var(--line);
  transition:transform .12s ease, box-shadow .15s ease
}
.cmt-btn--primary{ background:linear-gradient(90deg,var(--walnut),var(--walnut-2)); color:#fff; border-color:transparent; box-shadow:0 10px 22px rgba(139,94,52,.25) }
.cmt-btn--ghost{ background:#fff; color:var(--ink) }
.cmt-btn:hover{ transform:translateY(-2px) }

//* Map */
.cmt-mapwrap{ 
  position:relative; 
  border-radius:14px; 
  overflow:hidden; 
  border:1px solid var(--line); 
  background:#f5f6f7;
}
.cmt-map{ 
  display:block; 
  width:100%; 
  height:420px; 
  border:0 
}
@media (max-width:500px){ 
  .cmt-map{ height:360px } 
}

/* Image + Map side-by-side */
.cmt-media{
  display:grid;
  grid-template-columns: 1fr 1fr;   /* 50-50 split */
  gap:20px;  /* Gap between image and map */
  align-items:stretch;
  padding: 20px;  /* All sides equal gap */
}
@media (max-width:900px){
  .cmt-media{ 
    grid-template-columns:1fr;
    padding: 15px;  /* Smaller padding on tablet */
  }
}
@media (max-width:500px){
  .cmt-media{ 
    padding: 10px;  /* Even smaller padding on mobile */
  }
}

/* Photo */
.cmt-photo{
  margin:0; 
  padding:0;
  border:1px solid var(--line);
  border-radius:14px; 
  overflow:hidden;
  background:#f5f6f7;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.cmt-photo img{
  display:block; 
  width:100%; 
  height:100%; 
  object-fit:cover; 
  aspect-ratio: 4/3; 
  padding:20px;
}

/* Map (reuse your existing styles) */
.cmt-mapwrap{ 
  position:relative; 
  border-radius:14px; 
  overflow:hidden; 
  border:1px solid var(--line); 
  background:#f5f6f7 
}
.cmt-map{ 
  display:block; 
  width:100%; 
  height:100%; 
  min-height:360px; 
  border:0 
}
@media (max-width:500px){ 
  .cmt-map{ min-height:320px } 
}