/* Munnuru Kapu Foundation - Light Theme */

:root {
  --black: #1a1a1a;
  --red: #e00000;
  --red-dark: #b80000;
  --green: #008000;
  --green-light: #e8f5e9;
  --lime: #b8c800;
  --gold: #c99700;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f4f7f4;
  --footer-bg: #0a0a0a;
  --footer-border: #1f1f1f;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: #dde5dd;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --section-py: 6rem;
  --section-py-mobile: 4rem;
  --container-px: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.text-accent {
  color: var(--red) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.container {
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* ---- Navigation ---- */
#mainNav {
  background: transparent;
  padding: 0.85rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.3s ease;
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--green);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text) !important;
  text-decoration: none;
}

.navbar-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  max-width: 160px;
}

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.25s;
  opacity: 0.85;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red) !important;
  opacity: 1;
}

.btn-nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.45rem 1.25rem !important;
  font-weight: 700 !important;
  margin-left: 0.5rem;
  opacity: 1 !important;
}

.btn-nav-cta:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
}

.navbar-toggler {
  border-color: var(--green);
  padding: 0.4rem 0.65rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(224, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- Hero ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../assets/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--bg-alt);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.55) 32%,
    rgba(255, 255, 255, 0.2) 58%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 140px;
  height: auto;
  margin-bottom: 1.5rem;
}

.hero-eyebrow {
  margin-bottom: 1rem;
  color: var(--green) !important;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.85);
}

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

/* ---- Site Sections ---- */
.site-section {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.site-section-alt {
  background: var(--bg-alt);
}

.site-section-cta {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--bg-alt) 100%);
  border-top: 3px solid var(--red);
}

.section-header {
  max-width: 680px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-heading {
  color: var(--text);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.content-block {
  padding: 0.5rem 0;
}

.content-title {
  color: var(--green);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

/* ---- Lists ---- */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text);
}

.custom-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1.3;
}

.compact-list li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 0.9rem;
}

/* ---- Images ---- */
.img-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}

.img-frame img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* ---- Facilities ---- */
.facilities-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.facility-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.facility-item:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}

.facility-item i {
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.facility-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.facility-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Donation Cards ---- */
.donation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.donation-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
}

.donation-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffef5 0%, var(--white) 100%);
}

.donation-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.donation-tier {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.donation-amount {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--red);
  white-space: nowrap;
}

.donation-card-img {
  margin-top: auto;
  padding-top: 1.25rem;
  border-radius: 10px;
  overflow: hidden;
}

.donation-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.legacy-benefits {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legacy-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legacy-item i {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Donor Books ---- */
.donor-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
}

.donor-books-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--red);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
}

.books-title {
  color: var(--text);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.books-subtitle {
  color: var(--green);
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}

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

.book-item {
  padding: 1.25rem 0.5rem;
  border-radius: 10px;
  text-align: center;
}

.book-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.book-tier {
  display: block;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.book-amount {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
}

.book-platinum { background: #fce4ec; color: var(--red); }
.book-platinum .book-icon { color: var(--red); }
.book-diamond { background: #e8f5e9; color: var(--green); }
.book-diamond .book-icon { color: var(--green); }
.book-golden { background: #fffde7; color: #b8860b; }
.book-golden .book-icon { color: var(--gold); }
.book-silver { background: #f5f5f5; color: #555; }
.book-silver .book-icon { color: #888; }

.books-tagline {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.875rem;
  font-style: italic;
  text-align: center;
  margin: 0;
}

/* ---- Financial Summary ---- */
.slots-list li strong {
  color: var(--red);
}

.slots-summary {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.stat-row strong {
  color: var(--red);
  font-weight: 700;
}

.stat-row-total {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 1.1rem;
}

.stat-row-total span {
  color: var(--text);
  font-weight: 800;
}

.stat-row-total strong {
  color: var(--red);
  font-size: 1.25rem;
}

.cost-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.cost-text strong {
  color: var(--green);
}

.summary-table-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
}

.summary-table {
  color: var(--text);
  font-size: 0.875rem;
}

.summary-table thead th {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  border: none;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
}

.summary-table tbody td {
  padding: 0.75rem 1rem;
  border-color: var(--border);
  vertical-align: middle;
}

.summary-totals {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.summary-stat {
  flex: 1;
  min-width: 120px;
  background: var(--white);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.summary-stat-main {
  background: var(--red);
  border-color: var(--red);
}

.summary-stat-main .sc-label {
  color: rgba(255, 255, 255, 0.85);
}

.summary-stat-main .sc-value {
  color: var(--white);
}

.sc-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.sc-value {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

/* ---- Vision ---- */
.vision-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
}

.vision-highlight {
  color: var(--red);
  font-weight: 700;
}

/* ---- Buttons ---- */
.btn-yellow {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  transition: all 0.25s;
  font-size: 0.9rem;
}

.btn-yellow:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 0, 0, 0.25);
}

.btn-outline-light {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-width: 2px;
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ---- Footer ---- */
.footer-section {
  background: var(--footer-bg);
  border-top: 4px solid var(--red);
}

.footer-logo {
  width: 90px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand {
  color: var(--red);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-heading {
  color: var(--lime);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s;
}

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

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 0, 0, 0.2);
  color: var(--white);
}

.footer-hr {
  border-color: var(--footer-border);
  margin: 0;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  padding-top: 1.5rem;
}

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

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

/* ---- Responsive ---- */
@media (min-width: 1200px) {
  :root {
    --container-px: 2rem;
  }
}

@media (max-width: 991px) {
  :root {
    --section-py: 4.5rem;
  }

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

  .donation-card {
    padding: 1.5rem;
  }

  .brand-text {
    font-size: 0.85rem;
    max-width: 140px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-py: var(--section-py-mobile);
    --container-px: 1.25rem;
  }

  .navbar-logo {
    height: 44px;
  }

  .brand-text {
    display: none;
  }

  .hero-logo {
    width: 110px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .btn-nav-cta {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    display: inline-block;
  }

  .summary-totals {
    flex-direction: column;
  }

  .summary-stat {
    min-width: 100%;
  }

  .floor-plan-card {
    flex: 0 0 min(300px, 82vw);
    width: min(300px, 82vw);
  }
}

@media (max-width: 575px) {
  .donation-card-header {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .founder-amount {
    font-size: 1.75rem;
  }
}

/* ---- Membership ---- */
.founder-club-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--green-light) 100%);
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.founder-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.founder-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.founder-desc strong {
  color: var(--green);
}

.founder-eligible {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.founder-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  margin: 0;
}

.membership-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid #ccc;
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.membership-silver { border-top-color: #90a4ae; }
.membership-golden { border-top-color: var(--gold); }
.membership-diamond { border-top-color: var(--green); }
.membership-platinum { border-top-color: var(--red); }

.featured-membership {
  background: linear-gradient(180deg, #fff8f8 0%, var(--white) 100%);
}

.membership-card-top {
  text-align: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.membership-card-top i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.membership-silver .membership-card-top i { color: #90a4ae; }
.membership-golden .membership-card-top i { color: var(--gold); }
.membership-diamond .membership-card-top i { color: var(--green); }
.membership-platinum .membership-card-top i { color: var(--red); }

.membership-card-top h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.membership-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--red);
}

.membership-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.membership-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.membership-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
}

.membership-cta {
  display: block;
  text-align: center;
  padding: 0.65rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  background: var(--green);
  transition: background 0.25s;
}

.membership-cta:hover {
  background: #006600;
  color: var(--white);
}

.membership-platinum .membership-cta {
  background: var(--red);
}

.membership-platinum .membership-cta:hover {
  background: var(--red-dark);
}

.perk-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  height: 100%;
  box-shadow: var(--shadow);
}

.perk-item i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.perk-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.perk-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---- Floor Plans ---- */
.floor-plan-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-alt);
  padding-bottom: 0.75rem;
  margin: 0 calc(var(--container-px) * -1);
}

.floor-plan-scroll-wrap::-webkit-scrollbar {
  height: 8px;
}

.floor-plan-scroll-wrap::-webkit-scrollbar-track {
  background: var(--bg-alt);
  border-radius: 4px;
}

.floor-plan-scroll-wrap::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.floor-plan-scroll {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem var(--container-px) 1rem;
  width: max-content;
}

.floor-plan-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  flex: 0 0 320px;
  width: 320px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.floor-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.floor-plan-preview {
  position: relative;
  height: 220px;
  background: #f0f0f0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.floor-plan-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.floor-plan-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.floor-plan-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.floor-plan-meta i {
  font-size: 1.25rem;
  color: var(--gold);
}

.floor-plan-meta h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.floor-plan-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.floor-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.55rem 1.25rem;
  background: var(--gold);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}

.floor-plan-btn i {
  color: var(--red);
  font-size: 1rem;
}

.floor-plan-btn:hover {
  background: #e6b800;
  color: var(--text);
  transform: translateY(-1px);
}

/* ---- Print / PDF ---- */
@media print {
  *,
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }

  html,
  body {
    background: var(--bg) !important;
    font-size: 11pt;
  }

  #mainNav,
  .scroll-indicator,
  .hero-actions,
  .btn-nav-cta,
  .membership-cta,
  #contactForm,
  .navbar-toggler {
    display: none !important;
  }

  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-section {
    min-height: auto !important;
    padding: 2rem 0 !important;
    page-break-after: always;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.55) 32%,
      rgba(255, 255, 255, 0.2) 58%,
      rgba(255, 255, 255, 0.05) 100%
    ) !important;
  }

  .site-section,
  .site-section-alt,
  .site-section-cta {
    padding: 2rem 0 !important;
    page-break-inside: avoid;
  }

  .site-section {
    background: var(--bg) !important;
  }

  .site-section-alt {
    background: var(--bg-alt) !important;
  }

  .site-section-cta {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--bg-alt) 100%) !important;
    border-top: 3px solid var(--red) !important;
  }

  .footer-section {
    background: var(--footer-bg) !important;
    border-top: 4px solid var(--red) !important;
    page-break-inside: avoid;
  }

  .footer-text,
  .footer-links a,
  .footer-copy {
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .footer-heading {
    color: var(--lime) !important;
  }

  .footer-brand {
    color: var(--red) !important;
  }

  .donation-card,
  .facility-item,
  .membership-card,
  .donor-books-card,
  .summary-table-card,
  .founder-club-card,
  .perk-item,
  .img-frame {
    box-shadow: none !important;
    border: 1px solid var(--border) !important;
    page-break-inside: avoid;
  }

  .donation-card.featured,
  .featured-membership {
    background: #fffef5 !important;
    border-color: var(--gold) !important;
  }

  .founder-club-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--green-light) 100%) !important;
    border: 2px solid var(--green) !important;
  }

  .founder-badge {
    background: var(--red) !important;
    color: var(--white) !important;
  }

  .summary-table thead th {
    background: var(--green) !important;
    color: var(--white) !important;
  }

  .summary-stat-main {
    background: var(--red) !important;
    border-color: var(--red) !important;
  }

  .summary-stat-main .sc-value {
    color: var(--white) !important;
  }

  .btn-yellow {
    background: var(--red) !important;
    color: var(--white) !important;
  }

  .book-platinum { background: #fce4ec !important; }
  .book-diamond { background: #e8f5e9 !important; }
  .book-golden { background: #fffde7 !important; }
  .book-silver { background: #f5f5f5 !important; }

  .row {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  [class*="col-"] {
    flex-shrink: 0;
  }

  a[href]::after {
    content: none !important;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
}
