/* ============================================
   OPUS Communities - Optimized Stylesheet
   Colors: Primary #14395c, Accent #c4805c
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #14395c;
  --primary-light: #1d4f7a;
  --primary-dark: #0e2a43;
  --accent: #c4805c;
  --accent-light: #d4956f;
  --accent-dark: #a86b4a;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --text: #2d3436;
  --text-light: #636e72;
  --shadow: 0 4px 20px rgba(20, 57, 92, 0.08);
  --shadow-lg: 0 10px 40px rgba(20, 57, 92, 0.12);
  --shadow-hover: 0 8px 30px rgba(20, 57, 92, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--primary);
  line-height: 1.3;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.3px;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 128, 92, 0.35);
}

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

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 57, 92, 0.35);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 57, 92, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 50px;
  width: auto;
}

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

.nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(196, 128, 92, 0.08);
}

.nav-btn {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
  margin-left: 8px;
}

.nav-btn:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') bottom / cover no-repeat;
  opacity: 0.5;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--accent-light);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Stats */
.stats {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--light-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--light-gray);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  display: inline;
}

.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-top: 4px;
}

/* Approach */
.approach {
  background: var(--off-white);
}

.approach-text {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.approach-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(20, 57, 92, 0.05);
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.approach-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 128, 92, 0.1);
  border-radius: 50%;
  padding: 16px;
}

.approach-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.approach-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.approach-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Properties Preview */
.properties-preview {
  background: var(--white);
}

.properties-map {
  text-align: center;
  margin-bottom: 50px;
}

.map-image {
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  position: relative;
}

.property-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.property-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.property-info {
  padding: 28px 24px;
}

.property-info h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.property-location {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.property-type {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.property-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.property-link:hover {
  color: var(--accent);
  gap: 8px;
}

/* Why OPUS / Golden Rules */
.why-opus {
  background: var(--primary);
  color: var(--white);
}

.why-opus .section-title {
  color: var(--white);
}

.why-opus .section-divider {
  background: var(--accent);
}

.golden-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.rule-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.rule-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.rule-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.rule-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.rule-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  text-align: center;
  color: var(--white);
}

.cta h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
}

.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Page-Specific Styles
   ============================================ */

/* Page Header (inner pages) */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Page */
.mission-section {
  padding: 80px 0;
  text-align: center;
}

.mission-text {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--text);
}

.mission-text:last-of-type {
  font-size: 1.1rem;
  color: var(--text-light);
}

.why-how-what {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.whw-card {
  background: var(--off-white);
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.whw-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.whw-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.whw-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

/* Properties Page */
.properties-full {
  padding: 60px 0 80px;
}

.property-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.property-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: var(--transition);
}

.property-full-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.property-full-info {
  padding: 32px;
}

.property-full-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.property-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.property-meta span {
  font-size: 0.875rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-meta .location {
  color: var(--accent);
  font-weight: 500;
}

.property-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.property-actions .btn {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

/* Residents Page */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.benefit-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 128, 92, 0.1);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

.portals-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portals-table th {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portals-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9375rem;
}

.portals-table tr:last-child td {
  border-bottom: none;
}

.portals-table tr:hover {
  background: var(--off-white);
}

.portal-btn {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
  transition: var(--transition);
}

.portal-btn:hover {
  background: var(--accent-dark);
  color: var(--white);
}

/* Vendors Page */
.vendor-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.vendor-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.location-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--primary);
}

.location-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.requirements-list {
  list-style: none;
  padding: 0;
}

.requirements-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9375rem;
  color: var(--text);
}

.requirements-list li:last-child {
  border-bottom: none;
}

.requirements-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* Careers Page */
.careers-intro {
  text-align: center;
  padding: 60px 0;
}

.careers-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-light);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.job-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.job-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.job-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.job-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.job-tag {
  padding: 4px 12px;
  background: rgba(20, 57, 92, 0.06);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 20px;
}

.benefits-section {
  background: var(--primary);
  padding: 60px 0;
  color: var(--white);
  text-align: center;
}

.benefits-section .section-title {
  color: var(--white);
}

.benefits-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.benefits-item {
  text-align: center;
}

.benefits-item-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.benefits-item-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-light);
}

.benefits-item h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--accent);
  margin-top: 2px;
}

.contact-detail h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.9375rem;
  color: var(--text-light);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 128, 92, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Privacy Policy */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.policy-content h3 {
  font-size: 1.2rem;
  margin: 30px 0 12px;
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 8px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .approach-grid,
  .golden-rules,
  .why-how-what {
    grid-template-columns: 1fr;
  }

  .properties-grid {
    grid-template-columns: 1fr;
  }

  .property-full-grid,
  .benefits-grid,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .vendor-info,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .benefits-items {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-header {
    padding: 120px 0 40px;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .benefits-items {
    grid-template-columns: 1fr;
  }

  .vendor-locations {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .header, .hamburger, .hero-scroll, .cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  body {
    font-size: 12pt;
  }
}
