/* ==========================================================================
   SHREE RAM AGRO - COMPACT COVER PAGE & EXECUTIVE STYLESHEET
   ========================================================================== */

:root {
  --logo-yellow: #FFCE00;
  --logo-yellow-dark: #E6B800;
  --logo-yellow-light: #FFF7D1;
  
  --logo-green: #25A238;
  --logo-green-dark: #1E8435;
  --logo-green-deep: #0D2F15;
  
  --logo-black: #181C19;
  --logo-slate: #4A5568;
  
  --bg-page: #FAF7EE;
  --bg-card: #FFFFFF;
  --bg-cream: #FFFDF0;
  
  --border-card: #EFE6CD;
  --border-gold: #FFCE00;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 36px rgba(0,0,0,0.12);
  --shadow-yellow: 0 4px 14px rgba(255, 206, 0, 0.4);
  --shadow-green: 0 4px 14px rgba(30, 132, 53, 0.35);
  
  --font-main: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-brand: 'Montserrat', 'Syne', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--logo-black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.hidden {
  display: none !important;
}

/* --------------------------------------------------------------------------
   1. Announcement Bar
   -------------------------------------------------------------------------- */
.top-announcement {
  background: var(--logo-green-deep);
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 7px 0;
  border-bottom: 3px solid var(--logo-yellow);
}

.announcement-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.top-contacts {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-contacts a {
  color: var(--logo-yellow);
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.top-contacts a:hover {
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .top-announcement {
    font-size: 0.78rem;
    padding: 6px 0;
  }
  .announcement-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    text-align: center;
  }
  .top-contacts {
    gap: 8px;
  }
  .top-contacts a {
    font-size: 0.78rem;
  }
}

/* --------------------------------------------------------------------------
   2. Navbar
   -------------------------------------------------------------------------- */
.navbar {
  background: #FFFFFF;
  border-bottom: 3px solid var(--logo-yellow);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}

.brand-title {
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 4vw, 2.05rem);
  font-weight: 900;
  color: var(--logo-green-dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-title span {
  color: var(--logo-black);
}

.brand-subtitle {
  font-size: 0.76rem;
  color: var(--logo-slate);
  font-weight: 700;
  letter-spacing: 0.2px;
}

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

.segmented-control {
  display: inline-flex;
  background: #F2F4F7;
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid #E2E8F0;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
}

.seg-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--logo-slate);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
}

.seg-btn:hover {
  color: var(--logo-black);
}

.seg-btn.active {
  background: linear-gradient(135deg, #25A238 0%, #1E8435 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(30, 132, 53, 0.35);
}

@media (max-width: 600px) {
  .container {
    padding: 0 10px;
  }
  .navbar {
    padding: 8px 0;
  }
  .brand-logo {
    height: 42px;
  }
  .brand-title {
    font-size: 1.25rem;
  }
  .brand-subtitle {
    display: none;
  }
  .nav-wrap {
    justify-content: space-between;
  }
  .seg-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
}

/* --------------------------------------------------------------------------
   3. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(135deg, #144921 0%, #0A2E14 100%);
  color: #FFFFFF;
  padding: 36px 0 46px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 850px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--logo-yellow);
  color: var(--logo-black);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 12px;
  box-shadow: var(--shadow-yellow);
}

.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--logo-yellow);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.hero-title span {
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  color: #E2F0E5;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-address-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 206, 0, 0.4);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-address-box p {
  color: #F0FDF4;
  margin-bottom: 6px;
}

.hero-phones {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 800;
  color: var(--logo-yellow);
  font-size: 0.95rem;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.btn-primary-wa {
  flex: 1;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.btn-primary-wa:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

.btn-secondary-call {
  flex: 1;
  background: var(--logo-yellow);
  color: var(--logo-black);
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: var(--shadow-yellow);
  transition: var(--transition);
}

.btn-secondary-call:hover {
  background: #FFFFFF;
  color: var(--logo-green-dark);
  transform: translateY(-2px);
}

.hero-graphic-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-sprout-aura {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-sprout-aura::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 206, 0, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-sprout-clean {
  max-height: 260px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
  position: relative;
  z-index: 2;
}

@media (max-width: 850px) {
  .hero-sprout-clean {
    max-height: 160px;
  }
}

/* --------------------------------------------------------------------------
   4. Search Section
   -------------------------------------------------------------------------- */
.filter-section {
  margin-top: -20px;
  position: relative;
  z-index: 20;
}

.controls-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-card);
}

.search-bar {
  position: relative;
  width: 100%;
}

.search-bar i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--logo-slate);
  font-size: 1.1rem;
}

.search-bar input {
  width: 100%;
  padding: 13px 40px 13px 48px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--logo-yellow);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--logo-black);
  outline: none;
  transition: var(--transition);
  background: var(--bg-cream);
}

.search-bar input:focus {
  border-color: var(--logo-green);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(37, 162, 56, 0.15);
}

.clear-search-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--logo-slate);
  font-size: 1.1rem;
  display: none;
}

.clear-search-btn.visible {
  display: block;
}

/* --------------------------------------------------------------------------
   5. Variety Cards Grid
   -------------------------------------------------------------------------- */
.grid-section {
  padding: 30px 0;
}

.section-header {
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  font-weight: 900;
  color: var(--logo-black);
}

.section-subtitle {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--logo-slate);
  margin-top: 4px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.v-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.v-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--logo-yellow);
}

.v-card-header {
  background: linear-gradient(90deg, #FFCE00 0%, #FFD633 100%);
  color: var(--logo-black);
  padding: 12px 18px;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #E6B800;
}

.v-card-title {
  font-family: var(--font-brand);
  font-size: clamp(1.1rem, 2.8vw, 1.3rem);
  font-weight: 900;
  line-height: 1.2;
}

.v-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.v-card-hero-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-cream);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
}

.v-crop-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--logo-yellow);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-shrink: 0;
  transition: var(--transition);
}

.v-card:hover .v-crop-photo {
  transform: scale(1.04);
}

.v-yield-badge-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v-yield-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--logo-slate);
  letter-spacing: 0.5px;
}

.v-yield-main-val {
  font-family: var(--font-brand);
  font-size: clamp(1.6rem, 3.8vw, 2.2rem);
  font-weight: 900;
  color: var(--logo-green-dark);
  line-height: 1;
}

.v-yield-main-val small {
  font-size: 0.88rem;
  font-weight: 800;
}

.v-yield-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--logo-black);
  margin-top: 2px;
}

.v-dev-badge {
  display: inline-block;
  background: #181C19;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
  margin-top: 4px;
}

.v-specs-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v-spec-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  padding-bottom: 6px;
  border-bottom: 1px dashed #E2E8F0;
}

.v-spec-line:last-child {
  border-bottom: none;
}

.v-spec-name {
  font-weight: 800;
  color: var(--logo-black);
  flex-shrink: 0;
  white-space: nowrap;
}

.v-spec-val-text {
  font-weight: 700;
  color: var(--logo-slate);
  text-align: right;
  word-break: break-word;
}

@media (max-width: 480px) {
  .v-card-body {
    padding: 14px;
  }
  .v-crop-photo {
    width: 88px;
    height: 88px;
  }
  .v-spec-line {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px;
  }
  .v-spec-name {
    font-size: 0.88rem;
  }
  .v-spec-val-text {
    font-size: 0.88rem;
  }
}

.v-trait-card {
  background: #F4FAF5;
  border: 1px solid #C6EAD0;
  border-left: 4px solid var(--logo-green);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: #164020;
}

.v-trait-card strong {
  color: var(--logo-green-deep);
  display: block;
  margin-bottom: 3px;
  font-weight: 800;
  font-size: 0.9rem;
}

.v-trait-card p {
  line-height: 1.35;
  font-weight: 600;
}

.v-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.btn-act {
  flex: 1;
  padding: 11px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  text-align: center;
}

.btn-act.wa {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-act.wa:hover {
  background: #1DA851;
}

.btn-act.call {
  background: var(--logo-yellow);
  color: var(--logo-black);
  box-shadow: var(--shadow-yellow);
}

.btn-act.call:hover {
  background: var(--logo-yellow-dark);
}

/* --------------------------------------------------------------------------
   6. Location Banner Section
   -------------------------------------------------------------------------- */
.location-banner-section {
  padding: 15px 0 40px;
}

.location-banner-card {
  background: var(--bg-card);
  border: 2px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.loc-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.loc-banner-left i {
  font-size: 2rem;
  color: var(--logo-green-dark);
}

.loc-banner-left h3 {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--logo-black);
}

.loc-banner-left p {
  font-size: 0.9rem;
  color: var(--logo-slate);
  font-weight: 600;
}

.loc-banner-right {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-banner-call {
  background: var(--bg-page);
  border: 1px solid var(--border-gold);
  color: var(--logo-black);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-banner-call:hover {
  background: var(--logo-green-dark);
  color: #FFFFFF;
  border-color: var(--logo-green-dark);
}

/* --------------------------------------------------------------------------
   7. CLASSIC PDF BROCHURE VIEW MODE (COMPACT PAGE 1 COVER)
   -------------------------------------------------------------------------- */
.pdf-mode-view {
  padding: 24px 0;
}

.pdf-sheet {
  background: var(--bg-page);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px 20px;
  margin-bottom: 24px;
  min-height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Page 1 Cover (Reduced Vertical Empty Space) */
.pdf-sheet.page-1 {
  text-align: center;
  background: radial-gradient(circle at 50% 35%, #FFFDF2 0%, #FDF3CE 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: 24px 20px 28px;
}

.pdf-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}

.pdf-logo {
  height: 85px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.pdf-hero {
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdf-green-title {
  font-family: var(--font-brand);
  font-size: clamp(3rem, 7vw, 4.4rem);
  font-weight: 900;
  color: var(--logo-green-dark);
  line-height: 1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.pdf-black-title {
  font-family: var(--font-brand);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: #000000;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.pdf-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--logo-black);
  max-width: 580px;
}

.p1-sprout-wrap {
  margin-top: 10px;
}

.pdf-sprout-clean {
  height: 175px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
}

.pdf-contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.pdf-loc {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--logo-black);
}

.pdf-pill-btn {
  display: inline-block;
  background: #000000;
  color: #FFFFFF;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 0.88rem;
}

.pdf-phones-row {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--logo-green-dark);
}

.pdf-phones-row a {
  color: var(--logo-green-dark);
}

.pdf-email {
  font-size: 0.95rem;
  color: var(--logo-slate);
  font-weight: 700;
}

/* Page 9 */
.pdf-sheet.page-9 {
  text-align: center;
  background: radial-gradient(circle at 50% 40%, #FFFDF0 0%, #FAF5DD 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pdf-note-banner {
  background: var(--logo-yellow);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--logo-black);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pdf-note-banner i {
  font-size: 1.3rem;
  color: var(--logo-green-deep);
  flex-shrink: 0;
}

.p9-elegant-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.p9-brand-logo {
  height: 85px;
  width: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.12));
}

.p9-thank-text {
  font-family: 'Caveat', cursive;
  font-size: 4.4rem;
  color: var(--logo-green-dark);
  line-height: 1;
  margin-top: -10px;
}

.p9-tagline {
  font-size: 1.05rem;
  color: var(--logo-slate);
  font-weight: 700;
}

.p9-brand-pill {
  background: #FFFFFF;
  border: 3px solid var(--logo-yellow);
  color: var(--logo-green-dark);
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 900;
  padding: 8px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.p9-address-card {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--logo-black);
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-gold);
}

.p9-action-bar {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.p9-wa-btn {
  background: #25D366;
  color: #FFFFFF;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.p9-call-btn {
  background: var(--logo-yellow);
  color: var(--logo-black);
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-yellow);
}

.p9-phone-list {
  display: flex;
  gap: 16px;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--logo-green-dark);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.p9-email-text {
  font-size: 1rem;
  color: var(--logo-slate);
  font-weight: 700;
}

/* Footer */
.footer {
  background: var(--logo-green-deep);
  color: #A0AEC0;
  padding: 26px 0;
  border-top: 4px solid var(--logo-yellow);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 48px;
}

.footer-brand h3 {
  font-family: var(--font-brand);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 900;
}

.copyright {
  font-size: 0.82rem;
  color: #A0AEC0;
}

/* Print Styles */
@media print {
  body { background: #FFFFFF; }
  .top-announcement, .navbar, .hero-section, .filter-section, .footer, .pdf-mode-controls {
    display: none !important;
  }
  #web-catalog-view { display: none !important; }
  #pdf-brochure-view { display: block !important; }
  .pdf-sheet { page-break-after: always; box-shadow: none; border: none; }
}
