/* Start custom CSS for html, class: .elementor-element-7cbcb7a *//* ============================================================
   CORDIAL PAVILION HEIGHTS — CONTACT PAGE CSS
   Paste into: styles plugin → css/contact.css
   Prefix: cpv-con- (scoped, no conflicts)
   ============================================================ */

/* ── HERO ── */
.cpv-con-hero {
  background: #0F1923;
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.cpv-con-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(196,147,63,0.07), transparent 60%);
  pointer-events: none;
}
.cpv-con-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cpv-con-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #C4933F;
}
.cpv-con-eyebrow-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C4933F;
  flex-shrink: 0;
}
.cpv-con-h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 0 0 16px 0;
}
.cpv-con-h1-gold {
  color: #C4933F;
  display: block;
  font-weight: 400;
  font-size: 0.78em;
  margin-top: 6px;
}
.cpv-con-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  margin: 0 0 36px 0;
  max-width: 560px;
}

/* Quick contact row */
.cpv-con-quick {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cpv-con-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 14px 18px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  flex: 1;
  min-width: 180px;
}
.cpv-con-quick-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.cpv-con-quick-icon {
  width: 36px;
  height: 36px;
  background: rgba(196,18,48,0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C41230;
  flex-shrink: 0;
}
.cpv-con-quick-icon svg { width: 16px; height: 16px; }
.cpv-con-quick-wa .cpv-con-quick-icon {
  background: rgba(37,211,102,0.12);
  color: #25D366;
}
.cpv-con-quick-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}
.cpv-con-quick-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
}

/* ── MAIN SECTION ── */
.cpv-con-main {
  background: #F5F0E8;
  padding: 64px 24px;
}
.cpv-con-main-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* ── FORM WRAP ── */
.cpv-con-form-wrap {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,25,35,0.07);
}
.cpv-con-form-header {
  background: #0F1923;
  padding: 24px 28px 20px;
  border-bottom: 3px solid #C4933F;
}
.cpv-con-form-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.cpv-con-form-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
}
.cpv-con-form-body {
  padding: 28px;
}

/* Form fields */
.cpv-con-field {
  margin-bottom: 18px;
}
.cpv-con-field label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15,25,35,0.42);
  margin-bottom: 6px;
}
.cpv-con-req { color: #C41230; }
.cpv-con-field input,
.cpv-con-field select,
.cpv-con-field textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #0F1923;
  background: #F5F0E8;
  border: 1px solid rgba(15,25,35,0.1);
  border-radius: 3px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}
.cpv-con-field input:focus,
.cpv-con-field select:focus,
.cpv-con-field textarea:focus {
  border-color: #C41230;
  background: #ffffff;
}
.cpv-con-field input::placeholder,
.cpv-con-field textarea::placeholder {
  color: rgba(15,25,35,0.28);
}
.cpv-con-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cpv-con-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: #C41230;
  border: none;
  border-radius: 3px;
  padding: 15px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
}
.cpv-con-submit:hover {
  background: #a50f28;
  transform: translateY(-1px);
}
.cpv-con-submit svg { width: 14px; height: 14px; }
.cpv-con-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.cpv-con-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(15,25,35,0.4);
}
.cpv-con-trust-item svg {
  width: 11px;
  height: 11px;
  color: #C4933F;
  flex-shrink: 0;
}

/* CF7 styles — applied when CF7 shortcode is active */
.cpv-con-form-wrap .wpcf7-form p { margin: 0 0 18px 0; }
.cpv-con-form-wrap .wpcf7-form label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15,25,35,0.42);
  margin-bottom: 6px;
}
.cpv-con-form-wrap .wpcf7-form input:not([type="submit"]):not([type="hidden"]),
.cpv-con-form-wrap .wpcf7-form select,
.cpv-con-form-wrap .wpcf7-form textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #0F1923;
  background: #F5F0E8;
  border: 1px solid rgba(15,25,35,0.1);
  border-radius: 3px;
  padding: 11px 14px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
.cpv-con-form-wrap .wpcf7-form input:focus,
.cpv-con-form-wrap .wpcf7-form select:focus,
.cpv-con-form-wrap .wpcf7-form textarea:focus {
  border-color: #C41230;
  background: #ffffff;
}
.cpv-con-form-wrap .wpcf7-form input[type="submit"] {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: #C41230;
  border: none;
  border-radius: 3px;
  padding: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.cpv-con-form-wrap .wpcf7-form input[type="submit"]:hover {
  background: #a50f28;
}
.cpv-con-form-wrap .wpcf7-not-valid-tip {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #C41230;
  margin-top: 4px;
  display: block;
}
.cpv-con-form-wrap .wpcf7-response-output {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 3px;
  margin-top: 16px;
  border: none !important;
}
.cpv-con-form-wrap .wpcf7-mail-sent-ok {
  background: rgba(0,180,80,0.1);
  color: #006630;
}
.cpv-con-form-wrap .wpcf7-mail-sent-ng,
.cpv-con-form-wrap .wpcf7-spam-blocked {
  background: rgba(196,18,48,0.08);
  color: #a50f28;
}

/* ── INFO PANEL ── */
.cpv-con-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cpv-con-info-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(15,25,35,0.07);
  transition: box-shadow 0.2s;
}
.cpv-con-info-card:hover {
  box-shadow: 0 4px 20px rgba(15,25,35,0.08);
}
.cpv-con-info-card-gold {
  border-left: 3px solid #C4933F;
}
.cpv-con-info-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(196,18,48,0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C41230;
  flex-shrink: 0;
}
.cpv-con-info-card-icon svg { width: 17px; height: 17px; }
.cpv-con-info-card-icon-gold {
  background: rgba(196,147,63,0.1);
  color: #C4933F;
}
.cpv-con-info-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0F1923;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.cpv-con-info-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(15,25,35,0.6);
  line-height: 1.65;
  margin-bottom: 10px;
}
.cpv-con-info-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C41230;
  text-decoration: none;
  transition: gap 0.2s;
}
.cpv-con-info-link:hover { gap: 8px; }
.cpv-con-info-link svg { width: 12px; height: 12px; }

/* Office hours */
.cpv-con-info-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}
.cpv-con-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(15,25,35,0.65);
}
.cpv-con-hours-row span:first-child { font-weight: 400; }
.cpv-con-hours-row span:last-child { font-weight: 300; color: rgba(15,25,35,0.45); }
.cpv-con-hours-closed span { color: rgba(15,25,35,0.35) !important; }

/* RERA box */
.cpv-con-rera {
  background: #0F1923;
  border-radius: 4px;
  padding: 18px 20px;
  text-align: center;
}
.cpv-con-rera-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 6px;
}
.cpv-con-rera-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #C4933F;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.cpv-con-rera-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.2s;
}
.cpv-con-rera-link:hover { color: rgba(255,255,255,0.6); }

/* ── MAP ── */
.cpv-con-map-wrap {
  height: 400px;
  background: #162030;
  overflow: hidden;
}
.cpv-con-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.cpv-con-map-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0.18;
}
.cpv-con-map-ph svg {
  width: 48px;
  height: 48px;
  color: #C4933F;
}
.cpv-con-map-ph p {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .cpv-con-main-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cpv-con-quick {
    flex-direction: column;
  }
  .cpv-con-quick-item {
    min-width: unset;
  }
}
@media (max-width: 640px) {
  .cpv-con-hero {
    padding: 48px 16px 44px;
  }
  .cpv-con-main {
    padding: 40px 16px;
  }
  .cpv-con-form-body {
    padding: 20px 16px;
  }
  .cpv-con-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cpv-con-map-wrap {
    height: 300px;
  }
}/* End custom CSS */