/* ============================================================
   Blue Tiger Property Management — Stylesheet
   Aesthetic: Refined dark navy + warm gold, editorial
   ============================================================ */

:root {
  --navy:    #0d1b2a;
  --navy2:   #162336;
  --navy3:   #1e3350;
  --gold:    #c9a84c;
  --gold-lt: #e8c97a;
  --cream:   #f5f0e8;
  --white:   #ffffff;
  --text:    #2c2c2c;
  --text-lt: #5a5a5a;
  --border:  #e0d9cc;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --max-w: 1160px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.02em; }

p { margin-bottom: 1rem; }

/* ── NAV ──────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}
.logo-tiger {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  transform: rotate(-30deg);
  display: inline-block;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.25;
}
.logo-text small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: block;
}
nav { display: flex; gap: 2rem; }
nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover { color: var(--gold); }

/* ── HERO ─────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 7rem 2rem 6rem;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(30,51,80,0.6) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    rgba(255,255,255,0.015) 39px,
    rgba(255,255,255,0.015) 40px
  );
}
.hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* ── PAGE HERO (inner pages) ─────────── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 2rem 3.5rem;
}
.page-hero .container { max-width: var(--max-w); margin: 0 auto; }
.page-hero .eyebrow { display: block; margin-bottom: 0.75rem; }
.page-hero h1 { margin-bottom: 0.5rem; }

/* ── BUTTON ───────────────────────────── */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border-radius: var(--radius);
}
.btn:hover { background: var(--gold-lt); transform: translateY(-1px); text-decoration: none; }

/* ── SECTIONS ─────────────────────────── */
.section { padding: 5rem 2rem; }
.section-dark { background: var(--navy2); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-dark .label { color: var(--gold); }
.section-dark p { color: rgba(255,255,255,0.8); }

.container { max-width: var(--max-w); margin: 0 auto; }
.label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.label.light { color: var(--gold-lt); }

/* ── TWO COL ──────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.col-text p { color: var(--text-lt); }
.col-text p:first-of-type { color: var(--text); }

/* ── ACCENT BOX ───────────────────────── */
.accent-box {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat .num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

/* ── SERVICES ─────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(201,168,76,0.4); }
.service-icon { color: var(--gold); font-size: 0.75rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.service-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ── SMS NOTICE ───────────────────────── */
.section-sms {
  background: var(--cream);
  padding: 3rem 2rem;
}
.sms-inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.sms-icon { font-size: 2.5rem; flex-shrink: 0; }
.sms-inner h3 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 0.5rem; }
.sms-inner p { font-size: 0.88rem; color: var(--text-lt); margin-bottom: 0.5rem; }

/* ── CONTACT ──────────────────────────── */
.contact-details { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.15rem; }
.c-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-lt); }
.c-val { font-weight: 500; }
.c-val a { color: var(--text); }
.c-val a:hover { color: var(--gold); }

/* ── FORM ─────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-lt);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }

/* SMS consent checkbox */
.sms-consent { background: #f9f6f0; border: 1px solid var(--border); padding: 1rem; border-radius: var(--radius); }
.checkbox-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.75rem;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.8rem !important;
  color: var(--text-lt) !important;
  font-weight: 400 !important;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); width: 15px; height: 15px; }
.checkbox-label a { color: var(--gold); }

/* ── POLICY BODY ──────────────────────── */
.policy-body { max-width: 780px; }
.policy-body h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.policy-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.policy-body ul { margin: 0.5rem 0 1rem 1.5rem; }
.policy-body ul li { margin-bottom: 0.4rem; font-size: 0.95rem; color: var(--text-lt); }

.policy-highlight {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  margin: 1rem 0 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.policy-highlight h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.policy-highlight h3:first-child { margin-top: 0; }
.policy-highlight p,
.policy-highlight ul { font-size: 0.92rem; }
.policy-highlight ul { color: var(--text); }

/* ── FOOTER ───────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem;
  font-size: 0.85rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer a { color: var(--gold); }
.footer strong { color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-copy { font-size: 0.75rem; opacity: 0.5; align-self: end; text-align: right; }

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-copy { text-align: left; }
  nav { gap: 1rem; }
  nav a { font-size: 0.75rem; }
  .sms-inner { flex-direction: column; gap: 1rem; }
}
