/*
Theme Name: Realty Prestige
Theme URI: https://example.com
Author: Prestige Development
Author URI: https://example.com
Description: A modern, luxury real estate WordPress theme with bold typography and beige aesthetics. Fully customizable through WordPress dashboard.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: realty-prestige
Tags: real-estate, custom-colors, custom-menu, featured-images, theme-options, translation-ready
*/

/* ============================================================
   REALTY PRESTIGE - MODERN LUXURY REAL ESTATE THEME
   Color Palette: Beige / Gold / Deep Charcoal
   ============================================================ */

:root {
  --beige-lightest: #faf6f0;
  --beige-light: #f5ede0;
  --beige: #e8d5bb;
  --beige-dark: #c9a97a;
  --gold: #b8882a;
  --gold-light: #d4a94e;
  --charcoal: #1a1714;
  --charcoal-mid: #2e2a25;
  --charcoal-light: #4a4540;
  --warm-white: #fdfaf6;
  --text-muted: #7a6e64;
  --border: #e0cdb0;
  --shadow: rgba(26, 23, 20, 0.12);
  --shadow-heavy: rgba(26, 23, 20, 0.25);
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', 'Segoe UI', sans-serif;
  --font-mono: 'Courier New', monospace;
  
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--beige-lightest);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-pad {
  padding: 100px 0;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-heavy);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--warm-white);
  color: var(--charcoal);
  border-color: var(--warm-white);
}

.btn--white:hover {
  background: transparent;
  color: var(--warm-white);
  border-color: var(--warm-white);
}

.btn--lg { padding: 1.2rem 3rem; font-size: 1rem; }
.btn--sm { padding: 0.7rem 1.5rem; font-size: 0.8rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(26, 23, 20, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px var(--shadow-heavy);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  max-width: 1440px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--warm-white);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
  margin-top: 1px;
}

#primary-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

#primary-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
}

#primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

#primary-nav a:hover,
#primary-nav a.active {
  color: var(--warm-white);
}

#primary-nav a:hover::after,
#primary-nav a.active::after {
  width: 100%;
}

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--warm-white);
  transition: var(--transition);
  display: block;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 23, 20, 0.88) 0%,
    rgba(26, 23, 20, 0.6) 50%,
    rgba(184, 136, 42, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184, 136, 42, 0.2);
  border: 1px solid rgba(184, 136, 42, 0.4);
  color: var(--gold-light);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--warm-white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  gap: 0;
}

.hero-stat {
  background: rgba(253, 250, 246, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 2rem;
  text-align: center;
}

.hero-stat:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.hero-stat:last-child { border-radius: 0 var(--radius) var(--radius) 0; }

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
  display: block;
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee-bar {
  background: var(--charcoal);
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 2px solid var(--gold);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--beige);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.marquee-item::after {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   OVERVIEW / PROJECT INTRO
   ============================================================ */
.overview {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.overview::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 136, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.overview-text .section-label { margin-bottom: 1rem; }

.overview-text h2 {
  margin-bottom: 1.5rem;
}

.overview-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.overview-visual {
  position: relative;
}

.overview-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px var(--shadow-heavy);
}

.overview-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.overview-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--warm-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 20px 40px rgba(184, 136, 42, 0.4);
}

.overview-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.overview-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============================================================
   LAND SHARE SECTION
   ============================================================ */
.land-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.land-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L60 0' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.land-section .section-label { color: var(--gold-light); }
.land-section h2 { color: var(--warm-white); }

.land-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.land-intro p {
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.land-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.land-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.land-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.land-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184, 136, 42, 0.3);
  transform: translateY(-6px);
}

.land-card:hover::before { transform: scaleX(1); }

.land-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(184, 136, 42, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.land-card h4 {
  color: var(--warm-white);
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.land-card .value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1.1;
}

.land-card .unit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

.land-location {
  background: rgba(184, 136, 42, 0.1);
  border: 1px solid rgba(184, 136, 42, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.location-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.location-info h4 {
  color: var(--warm-white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.location-info p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ============================================================
   FLAT DETAILS SECTION
   ============================================================ */
.flat-details {
  background: var(--beige-lightest);
  position: relative;
}

.flat-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.flat-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.feature-pill {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: var(--transition);
}

.feature-pill:hover {
  border-color: var(--gold);
  background: var(--beige-light);
  transform: translateX(4px);
}

.feature-pill span.icon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  background: var(--beige-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flat-pricing-card {
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: sticky;
  top: 120px;
  overflow: hidden;
}

.flat-pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 136, 42, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-header h3 {
  color: var(--warm-white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1;
}

.price-per {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  align-self: flex-end;
  padding-bottom: 4px;
}

.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.pricing-row .amount {
  font-weight: 700;
  color: var(--warm-white);
  font-size: 0.95rem;
}

.pricing-row.highlight .amount {
  color: var(--gold-light);
  font-size: 1.1rem;
}

.pricing-total {
  background: rgba(184, 136, 42, 0.15);
  border: 1px solid rgba(184, 136, 42, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.pricing-total .label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.pricing-total .total-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* ============================================================
   PAYMENT PLAN
   ============================================================ */
.payment-section {
  background: var(--beige-light);
}

.payment-timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
}

.payment-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--beige-dark));
  transform: translateX(-50%);
}

.timeline-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.timeline-step:nth-child(even) .step-content { order: 3; text-align: left; }
.timeline-step:nth-child(even) .step-empty { order: 1; }

.step-content {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 24px var(--shadow);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--warm-white);
  z-index: 2;
  position: relative;
  box-shadow: 0 0 0 6px var(--beige-light), 0 0 0 8px var(--gold);
}

.step-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-content .step-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 1rem;
  display: block;
}

/* ============================================================
   WHY US / USP
   ============================================================ */
.why-us {
  background: var(--warm-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.why-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--beige-lightest);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px var(--shadow);
  border-color: var(--gold);
}

.why-card-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(184, 136, 42, 0.08);
  position: absolute;
  top: 0;
  right: 1rem;
  line-height: 1;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.why-card h4 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(184, 136, 42, 0.1) 0%, transparent 60%);
}

.cta-section h2 { color: var(--warm-white); margin-bottom: 1.5rem; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section {
  background: var(--beige-lightest);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.8; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--beige);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail strong { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-detail span { font-size: 1rem; color: var(--charcoal); font-weight: 600; }

.contact-form-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 20px 60px var(--shadow);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--beige-lightest);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--warm-white);
  box-shadow: 0 0 0 4px rgba(184, 136, 42, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo-text { font-size: 1.6rem; }

.footer-desc {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin-top: 1.2rem;
  line-height: 1.8;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul li { margin-bottom: 0.8rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--warm-white);
  padding-left: 6px;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-2, .flat-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .land-cards, .grid-3 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { position: static; margin-top: 3rem; }
  .hero-content { padding-bottom: 4rem; }
}

@media (max-width: 768px) {
  .container, .container--wide { padding: 0 1.2rem; }
  .section-pad { padding: 64px 0; }
  .nav-inner { padding: 1.2rem 1.5rem; }
  #primary-nav { display: none; }
  .hamburger { display: flex; }
  .land-cards, .grid-3, .why-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .payment-timeline::before { left: 30px; }
  .timeline-step { grid-template-columns: 60px 1fr; }
  .timeline-step:nth-child(even) .step-content { order: 2; }
  .timeline-step:nth-child(even) .step-empty { display: none; }
  .step-empty { display: none; }
  .flat-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0.5rem; }
  .hero-stat { border-radius: var(--radius) !important; }
}

/* ============================================================
   ADMIN BAR ADJUSTMENT
   ============================================================ */
.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

/* ============================================================
   CUSTOMIZER SELECTORS (for live preview)
   ============================================================ */
.site-title { color: var(--warm-white); }
.site-description { color: rgba(255,255,255,0.6); }
