/* ==========================================================================
   SUPERRAM - COMPACT COVER PAGE & EXECUTIVE STYLESHEET
   ========================================================================== */

:root {
  --logo-yellow: #F59E0B;
  --logo-yellow-dark: #D97706;
  --logo-yellow-light: #FEF3C7;
  
  --logo-green: #059669;
  --logo-green-dark: #047857;
  --logo-green-deep: #064E3B;
  
  --logo-black: #0F172A;
  --logo-slate: #475569;
  
  --bg-page: #F0FDF4;
  --bg-card: #FFFFFF;
  --bg-cream: #FEF3C7;
  
  --border-card: #D1FAE5;
  --border-gold: #F59E0B;
  
  --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(5, 150, 105, 0.08);
  --shadow-lg: 0 16px 36px rgba(5, 150, 105, 0.15);
  --shadow-yellow: 0 6px 20px rgba(245, 158, 11, 0.35);
  --shadow-green: 0 6px 20px rgba(5, 150, 105, 0.3);
  
  --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: center;
  align-items: center;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
}

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

.brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

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

.brand-subtitle {
  font-family: var(--font-brand);
  font-size: clamp(0.76rem, 1.8vw, 0.9rem);
  color: var(--logo-black);
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-top: 3px;
}



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

.btn-print-pdf {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: var(--transition);
}

.btn-print-pdf:hover {
  background: var(--logo-green-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30, 132, 53, 0.45);
}

@media (max-width: 600px) {
  .container {
    padding: 0 10px;
  }
  .navbar {
    padding: 8px 0;
  }
  .brand-logo {
    height: 42px;
  }
  .brand-title {
    font-size: 1.25rem;
  }
  .brand-subtitle {
    font-size: 0.7rem;
  }
  .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(135deg, #059669 0%, #047857 100%);
  color: #FFFFFF;
  padding: 12px 18px;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #F59E0B;
}

.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: 95px;
  height: 120px;
  object-fit: contain;
  background: #FFFFFF;
  border: 2px solid var(--logo-yellow);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  transition: var(--transition);
}

.v-card:hover .v-crop-photo {
  transform: scale(1.04);
  border-color: var(--logo-green-dark);
  box-shadow: 0 6px 16px rgba(30, 132, 53, 0.2);
}

.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: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.btn-act.call:hover {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.45);
}

/* --------------------------------------------------------------------------
   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 (Clean, Uncluttered Executive Front Cover) */
.pdf-sheet.page-1 {
  text-align: center;
  background: radial-gradient(circle at 50% 35%, #FFFFFF 0%, #FFFDF0 60%, #FDECB6 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  min-height: auto;
}

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

.pdf-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.12));
}

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

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

.pdf-company-sub {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--logo-black);
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.pdf-legacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  margin: 4px 0 2px;
  letter-spacing: 0.2px;
}

.pdf-legacy-badge i {
  color: #FFFFFF;
  font-size: 1rem;
}

.pdf-tagline-box {
  margin-top: 6px;
}

.pdf-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--logo-green-deep);
  background: rgba(245, 158, 11, 0.16);
  border: 1.5px solid var(--logo-yellow);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.15);
}

}

.dual-bags-wrap {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(12px, 3vw, 32px);
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.p9-bags-wrap {
  margin: 14px 0;
  width: 100%;
}

.bag-item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 48%;
  flex: 0 1 auto;
}

.bag-img-frame {
  width: clamp(120px, 38vw, 160px);
  height: clamp(140px, 42vw, 180px);
  background: #FFFFFF;
  border: 3px solid var(--logo-yellow);
  border-radius: var(--radius-md);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
  transition: var(--transition);
  max-width: 100%;
}

.bag-item-box:hover .bag-img-frame {
  transform: translateY(-5px);
  border-color: var(--logo-green);
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.22);
}

.cover-bag-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.bag-weight-pill {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #FFFFFF;
  font-family: var(--font-brand);
  font-size: clamp(0.72rem, 2.4vw, 0.85rem);
  font-weight: 800;
  padding: 4px clamp(8px, 2vw, 14px);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--logo-yellow);
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  white-space: nowrap;
}

.cover-footer-box {
  width: 100%;
  max-width: 720px;
  background: #FFFFFF;
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px auto 0;
  align-self: center;
  text-align: center;
}

.cover-address-grid p {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--logo-black);
  line-height: 1.45;
}

.cover-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--logo-green-dark);
  flex-wrap: wrap;
  margin-top: 4px;
}

.cover-contact-row a {
  color: var(--logo-green-dark);
}

.cover-contact-row .divider {
  color: #CBD5E1;
}

.cover-email-row {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--logo-slate);
}

.cover-email-row a {
  color: var(--logo-green-dark);
}

.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;
}

.pdf-email a, .p9-email-text a {
  color: var(--logo-slate);
  text-decoration: underline;
  transition: var(--transition);
}

.pdf-email a:hover, .p9-email-text a:hover {
  color: var(--logo-green-dark);
}

/* --------------------------------------------------------------------------
   8. PROCESS PAGE (PACKAGE OF PRACTICES)
   -------------------------------------------------------------------------- */
.pdf-sheet.page-process {
  background: #FFFDF4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
}

.pdf-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--logo-yellow);
}

.process-page-title {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--logo-green-dark);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.process-page-subtitle {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--logo-black);
  margin-top: 3px;
}

.process-page-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.08));
}

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

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

@media (max-width: 550px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--logo-yellow);
  box-shadow: var(--shadow-md);
}

.process-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--logo-yellow-light);
  padding-bottom: 8px;
}

.process-num {
  background: linear-gradient(135deg, #FFCE00 0%, #E6B800 100%);
  color: var(--logo-black);
  font-weight: 900;
  font-size: 0.85rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(230, 184, 0, 0.4);
}

.process-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.process-titles {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.p-title-en {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--logo-black);
}

.p-title-hi {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--logo-green-dark);
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.process-list li {
  font-size: 0.78rem;
  color: #2D3748;
  line-height: 1.35;
  position: relative;
  padding-left: 14px;
}

.process-list li strong {
  color: var(--logo-black);
  font-weight: 800;
}

.process-list li::before {
  content: '•';
  color: var(--logo-green-dark);
  font-weight: 900;
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Page 9 Summary */
.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-legacy-line {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--logo-green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: -4px 0 4px;
}

.p9-legacy-line i {
  color: var(--logo-yellow-dark);
  font-size: 1.15rem;
}

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

.p9-brand-pill {
  background: #FFFFFF;
  border: 3px solid var(--logo-yellow);
  padding: 8px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.p9-brand-main {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--logo-green-dark);
  text-transform: uppercase;
  line-height: 1.1;
}

.p9-brand-sub {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--logo-slate);
  text-transform: none;
}

.p9-address-card {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--logo-black);
  background: #FFFFFF;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  max-width: 92%;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
}

.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;
}

/* --------------------------------------------------------------------------
   9. ADVANCED SCROLL ANIMATION SUITE & INTERACTION SYSTEM
   -------------------------------------------------------------------------- */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #FFCE00 0%, #25A238 50%, #FFCE00 100%);
  z-index: 9999;
  box-shadow: 0 0 10px rgba(37, 162, 56, 0.6);
  transition: width 0.1s ease-out;
}

@keyframes fadeInUpSheet {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatBag {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  50% {
    transform: translateY(-8px) rotate(0.8deg);
    box-shadow: 0 16px 32px rgba(30, 132, 53, 0.22);
  }
}

@keyframes titleShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 6px rgba(230, 184, 0, 0.4);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 4px 14px rgba(230, 184, 0, 0.75);
  }
}

@keyframes badgeShine {
  0% { opacity: 0.6; }
  50% { opacity: 1; filter: drop-shadow(0 0 8px #FFCE00); }
  100% { opacity: 0.6; }
}

/* Apply Base Animations */
.pdf-sheet {
  animation: fadeInUpSheet 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform, opacity;
}

.pdf-sprout-clean {
  animation: floatBag 4s ease-in-out infinite;
  will-change: transform;
}

.pdf-green-title {
  background: linear-gradient(90deg, #1E8435 0%, #25A238 35%, #92EAA2 50%, #25A238 65%, #1E8435 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: titleShimmer 4.5s linear infinite;
}

.process-num {
  animation: pulseGlow 3s ease-in-out infinite;
}

.v-yield-main-val {
  animation: badgeShine 3.5s ease-in-out infinite;
}

/* Hover Micro-Interactions */
.v-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}

.v-card:hover .v-crop-photo {
  transform: translateY(-5px) scale(1.05) rotate(-1.5deg);
  border-color: var(--logo-green-dark);
  box-shadow: 0 8px 20px rgba(30, 132, 53, 0.25);
}

.p9-wa-btn, .p9-call-btn, .btn-act {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.p9-wa-btn:hover, .p9-call-btn:hover, .btn-act:hover {
  transform: translateY(-3px) scale(1.03);
}

/* Rich Scroll Reveal Variations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.reveal-left {
  transform: translateX(-40px);
}

.scroll-reveal.reveal-right {
  transform: translateX(40px);
}

.scroll-reveal.reveal-zoom {
  transform: scale(0.85);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger Delays for Sequential Elements */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Print Styles - Reset all animations for instant clean printing */
@media print {
  #scroll-progress-bar { display: none !important; }
  body { background: #FFFFFF; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .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; transform: none !important; opacity: 1 !important; }
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
  animation: pulseGlow 2s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}
