/*
Theme Name: QuietSale
Theme URI: https://example.com/quietsale
Author: QuietSale
Author URI: https://example.com
Description: Professional public website theme for a confidential Delhi property demand-test marketplace.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: quietsale
*/

:root {
  --ink: #18212f;
  --muted: #647083;
  --line: #d9e0e8;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --blue: #1769e0;
  --blue-dark: #0f3f91;
  --teal: #087b75;
  --gold: #f8df9a;
  --shadow: 0 18px 58px rgba(24, 33, 47, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f8fb;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 224, 232, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  color: #102035;
  background: linear-gradient(135deg, #bde5df, var(--gold));
  font-weight: 900;
}

.brand-name {
  display: grid;
  gap: 2px;
}

.brand-name strong {
  font-size: 22px;
}

.brand-name span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  color: #334155;
  font-weight: 800;
  text-decoration: none;
}

.button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(23, 105, 224, 0.18);
}

.hero {
  padding: 46px 0 24px;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: center;
  min-height: 540px;
  overflow: hidden;
  border-radius: 22px;
  padding: 46px;
  color: #f8fbff;
  background:
    linear-gradient(110deg, rgba(10, 21, 35, 0.94), rgba(13, 45, 68, 0.88)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
  box-shadow: 0 26px 90px rgba(20, 32, 51, 0.18);
}

.eyebrow,
.chip {
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chip {
  display: inline-flex;
  width: fit-content;
  min-height: 31px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: #102035;
  background: #bde5df;
}

.hero h1 {
  max-width: 780px;
  margin: 14px 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  color: #d9e7f4;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button.secondary {
  color: #102035;
  background: var(--gold);
  box-shadow: none;
}

.vault {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(20px);
}

.vault-row {
  padding: 16px;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.vault-row small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip,
.feature-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.trust-strip {
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0 54px;
}

.trust-card,
.feature-card,
.step-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trust-card strong,
.feature-card strong,
.step-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.trust-card span,
.feature-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 54px 0;
}

.editable-page > * {
  width: min(1180px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.editable-page .alignfull {
  width: 100%;
  max-width: none;
}

.editable-page .alignwide {
  width: min(1320px, calc(100% - 36px));
}

.editable-page .wpcf7,
.editable-page .quietsale-form {
  margin-top: 22px;
}

.wpcf7-form {
  display: grid;
  gap: 14px;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.wpcf7-submit {
  display: inline-flex;
  width: fit-content !important;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--teal)) !important;
  cursor: pointer;
  font-weight: 900;
}

.section h2 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.section-lede {
  max-width: 740px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #e7f0ff;
  font-weight: 900;
}

.cta-band {
  margin: 42px 0 0;
  padding: 34px;
  border-radius: 18px;
  color: #fff;
  background: #142033;
}

.quietsale-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.quietsale-form label {
  display: grid;
  gap: 7px;
  color: #e9f2fb;
  font-size: 13px;
  font-weight: 900;
}

.quietsale-form label.full {
  grid-column: 1 / -1;
}

.quietsale-form input,
.quietsale-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.quietsale-form textarea {
  resize: vertical;
}

.quietsale-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.site-footer {
  padding: 36px 0;
  color: #b8c8d9;
  background: #142033;
}

.site-footer .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 920px) {
  .hero-card,
  .trust-strip,
  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero-card {
    min-height: auto;
    padding: 28px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .site-footer .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .quietsale-form {
    grid-template-columns: 1fr;
  }
}
