/* ============================================================
   SIDI CORP HOME LLC — WEBSITE STYLESHEET
   Healthcare Real Estate & Assisted Living Expansion El Paso
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2440;
  --primary-light: #2a5080;
  --accent: #c8973a;
  --accent-dark: #a87a2a;
  --accent-light: #e8b84a;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-gray: #eef0f4;
  --mid-gray: #8a9ab0;
  --dark-gray: #3a4a5c;
  --text: #1e2d3d;
  --text-light: #5a6a7a;
  --success: #2e7d32;
  --border: #dde3ec;
  --shadow: 0 4px 24px rgba(26, 58, 92, 0.10);
  --shadow-lg: 0 8px 40px rgba(26, 58, 92, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.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(200, 151, 58, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 36, 64, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(15, 36, 64, 0.99);
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  color: var(--accent);
  font-size: 1.2rem;
}
.logo-text {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links li a.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 8px 18px;
}
.nav-links li a.nav-cta:hover {
  background: var(--accent-dark);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, #1e4a7a 70%, #2a5a8a 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200, 151, 58, 0.08) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 100px 24px 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(200, 151, 58, 0.2);
  border: 1px solid rgba(200, 151, 58, 0.4);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub1 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--accent-light);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.hero-sub2 {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-bottom: 48px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.8); }
.section-tag {
  display: inline-block;
  background: rgba(200, 151, 58, 0.12);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(200, 151, 58, 0.25);
}
.section-tag-light {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ===== PILLARS SECTION ===== */
.pillars {
  padding: 100px 0;
  background: var(--off-white);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.pillar-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== PROPERTY SHOWCASE ===== */
.property-showcase {
  padding: 100px 0;
  background: var(--white);
}
.video-wrapper {
  max-width: 900px;
  margin: 0 auto 48px;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary);
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: calc(var(--radius-lg) - 3px);
}
.video-caption {
  text-align: center;
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.9rem;
}
.video-caption strong {
  color: var(--primary);
}
.property-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 48px;
}
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--off-white);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.highlight-icon {
  width: 32px;
  height: 32px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.highlight-item strong {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}
.highlight-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin: 0;
}
.showcase-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 100px 0;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 280px;
  aspect-ratio: unset;
}
.gallery-item.gallery-large {
  grid-column: auto;
  height: 280px;
  aspect-ratio: unset;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,36,64,0.85));
  color: var(--white);
  padding: 20px 16px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.25;
}
.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.75;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin: 36px 0;
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.cert-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.about-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.about-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-light);
}
.about-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.65;
}
.about-list {
  margin-bottom: 28px;
}
.about-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-list li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}
.next-step {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.next-step strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.next-step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin: 0;
}
.contact-details {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.contact-details p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.contact-details a {
  color: var(--accent-light);
}
.contact-details a:hover {
  color: var(--white);
}

/* ===== OPERATOR FORM ===== */
.operator-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.operator-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-light);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.5;
}
.form-center {
  max-width: 800px;
  margin: 0 auto;
}
.operator-form-full { width: 100%; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1e4a7a 100%);
  padding: 120px 24px 80px;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200, 151, 58, 0.1) 0%, transparent 60%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.page-hero-tag {
  display: inline-block;
  background: rgba(200, 151, 58, 0.2);
  border: 1px solid rgba(200, 151, 58, 0.4);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.page-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ===== OFFER SECTION ===== */
.offer-section {
  padding: 100px 0;
  background: var(--off-white);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.offer-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.offer-card.featured {
  border-color: var(--primary);
  border-width: 2px;
}
.offer-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.offer-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.offer-card > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.offer-list {
  list-style: none;
}
.offer-list li {
  padding: 7px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-list li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.lease-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.lease-opt {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
}
.lease-opt strong {
  display: block;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.lease-opt p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
}

/* ===== OPERATOR PACK SECTION ===== */
.pack-section {
  padding: 100px 0;
  background: var(--white);
}
.pack-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.pack-content .section-tag { margin-bottom: 16px; }
.pack-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 20px;
}
.pack-content > p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.pack-includes h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pack-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}
.pack-check {
  width: 32px;
  height: 32px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.pack-item strong {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}
.pack-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.55;
}
.pack-cta-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: sticky;
  top: 90px;
}
.pack-cta-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.pack-cta-card > p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.pack-cta-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.pack-cta-features span {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pack-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  line-height: 1.5;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 80px 0;
  background: var(--off-white);
}

/* ===== RESOURCES PAGE ===== */
.resources-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.resource-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0;
}
.resource-header {
  margin-bottom: 36px;
}
.resource-tag {
  display: inline-block;
  background: rgba(200, 151, 58, 0.12);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(200, 151, 58, 0.25);
}
.resource-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 12px;
}
.resource-meta {
  color: var(--mid-gray);
  font-size: 0.85rem;
}
.resource-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 14px;
}
.resource-body p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.resource-list {
  list-style: none;
  margin: 0 0 20px;
}
.resource-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--light-gray);
  line-height: 1.6;
}
.resource-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.resource-table-wrap {
  overflow-x: auto;
  margin: 20px 0 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.resource-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.resource-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.resource-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--text-light);
  vertical-align: top;
  line-height: 1.5;
}
.resource-table tr:last-child td { border-bottom: none; }
.resource-table tr:nth-child(even) td { background: var(--off-white); }
.resource-note {
  background: rgba(200, 151, 58, 0.08);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 24px 0;
}
.resource-note strong { color: var(--primary); }
.resource-cta {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  border: 1px solid var(--border);
  margin-top: 36px;
}
.resource-cta p {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1rem;
}
.resource-divider {
  border: none;
  border-top: 2px solid var(--light-gray);
  max-width: 860px;
  margin: 0 auto;
}

/* ===== CHECKLIST ===== */
.checklist-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 28px;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: var(--transition);
  border: 1px solid transparent;
}
.checklist-item:hover {
  border-color: var(--accent);
  background: rgba(200, 151, 58, 0.05);
}
.checklist-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text {
  font-size: 0.8rem;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
}
.footer-cert {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.45) !important;
}
.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-nav ul li {
  margin-bottom: 10px;
}
.footer-nav ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-nav ul li a:hover {
  color: var(--accent-light);
}
.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.65);
}
.footer-contact a {
  color: var(--accent-light);
}
.footer-contact a:hover { color: var(--white); }
.footer-hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-hours p { margin-bottom: 4px; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--accent-light); }
.footer-seo-text {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.2) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-col .about-card { max-width: 600px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pack-grid { grid-template-columns: 1fr; gap: 40px; }
  .pack-cta-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 12px 16px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.gallery-large { grid-column: 1 / -1; }
  .property-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .showcase-cta { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .operator-form { padding: 24px 20px; }
  .resource-article { padding: 40px 0; }
}

/* ===== FORM SUCCESS STATE ===== */
.form-success-msg {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--success);
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
}
.form-success-msg.show { display: block; }
